Upserting an Account Using a Siebel Account Business Service

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

The following details are for a request to call the InsertOrUpdate method of Siebel Account Business service to insert an account with its details given in the request.

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

  • 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":"34567",
              "Name":"Rest",
              "Main Phone Number": "20187423154"
            }
          }
        }
      }
    }