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

Upserting a Siebel CRM Business Object


You can upsert a Siebel CRM 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 existing Account business object on the Siebel CRM Server:

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

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