Siebel REST API Guide > Using the Siebel REST API > Using Siebel REST API to Access Siebel Business Objects JSON Examples >

Upserting a Siebel CRM Child Business Object


You can upsert a Siebel CRM child business object by sending an HTTP PUT request to the resource's URI.

The following details are for a request to update the fields of an Opportunity of a given Account child business object on the Siebel CRM Server:

  • 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"
}

Siebel REST API Guide Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Legal Notices.