Accessing a Siebel Business Service with Arguments in the Request Body
You can access a Siebel CRM Business Service by sending a HTTP POST request to the resource's URI.
The following request calls the CreateAccount Method of the Account Business Service with the Business Service arguments included in the request body. This request creates an account called REST Test Business Service3 on the Siebel CRM Server:
URI: http://ServerName:port/siebel/v1.0/service/Account/CreateAccount
HTTP Method: POST
Content-Type: application/json
Authorization: Basic
- Request body:
{ "body": { "Account IO": { "IntObjectName":"Account IO", "IntObjectFormat":"Siebel Hierarchical", "ListOfAccount IO": { "Account": { "Name":"REST Test Business Service3" } } } } }