Upserting a Siebel CRM Child Business Component

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

The following request inserts a new Opportunity record associated to an Account with the ID 88-431RF:

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

  • HTTP Method: PUT

  • Content-Type: application/json

  • Authorization: Basic

  • Request body:
    {
      "Id":"123456",
      "Name":"NewOpp",
      "Currency Code": "AUD",
      "Primary Organization":"Default Organization"
    }