Inserting an Account Using the Siebel Account Business Service

You can create a record in Siebel CRM database by using the Insert method of Siebel CRM Business Service by sending a HTTP POST request to the resource's URI.

The following requests calls the Insert method of Siebel Account Business service to insert a new Account record with its details given in the request.

  • URI: https://ServerName:port/siebel/v1.0/service/Siebel Account/Insert

  • HTTP Method: POST

  • Content-Type: application/json

  • Authorization: Basic

  • Request body:
    {
      "body":
      {
        "SiebelMessage":
        {
          "MessageId":"",
          "MessageType":"Integration Object",
          "IntObjectName":"Account Interface",
          "IntObjectFormat":"Siebel Hierarchical",
          "ListOfAccount Interface":
          {
            "Account":
            {
              "Account Id":"2345",
              "Name":"REST Test Business Service"
            }
          }
       }
    }
    }