ISG: How To Call Service Request Processing > Create Service Request
I'm trying to call Service Request Processing (CS_SERVICEREQUEST_PUB) > Create Service Request (CREATE_SERVICEREQUEST) on EBS ISG from Postman using Basic Auth.
I started by making the call to CS_SERVICEREQUEST_PUB.create_servicerequest from PL/SQL so that I was sure the values I would pass would work.
This was successful, the call being:
CS_SERVICEREQUEST_PUB.create_servicerequest (
p_api_version                   => 4.0
,                                            p_init_msg_list                 => FND_API.g_true
,                                            p_commit                        => FND_API.g_true
,                                            p_user_id                       => 0
,                                            p_service_request_rec           => l_service_request_rec
,                                            p_notes                         => l_notes_tab
,                                            p_contacts                      => l_contacts_tab
,                                            p_auto_assign                   => 'Y'