Updating an Account Using a Siebel Account Business Service

You can modify the record by using the Update method of Siebel CRM Business Service by sending a HTTP POST request to the resource's URI.

The following request calls the Update method of Siebel Account Business Service to update the Main Phone Number field value.

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

  • 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":"1-6",
              "Name":"REST Test Business Service32",
              "Main Phone Number": "2018742315"
            }
          }
        }
      }
    }