Upserting a Siebel CRM Business Component

You can insert or update a Siebel CRM Business Component by sending a HTTP PUT request to the resource's URI.

The following request updates the Description field of an existing Account Business Component record:

  • URL: http://ServerName:port/siebel/v1.0/data/Account/Account/88-431RF

  • HTTP Method: PUT

  • Content-Type: application/json

  • Authorization: Basic

  • Request body:
    { 
      "Name": "AccountExample", 
      "Primary Organization": 
      "Millennium Institutional Finance Services IF ENU", 
      "Location": "HQ-Distribution", 
      "Description": "AccountDataUpdate", 
      "Primary Organization Id": "1-1DG" 
    }