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

Inserting a Siebel CRM Child Business Object


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

  • URL: http://ServerName:port/siebel/v1.0/data/Account/Account/88-431RF/Contact
  • HTTP Method: PUT
  • Content-Type: application/json
  • Authorization: Basic
  • Request body:

{
    "Employee Number":"1231",
    "Employer Name":"BXM",
    "Bill To First Name":"MAYANew",
    "Bill To Last Name": "ABRAHAMNew",
    "Primary Organization Id":"0-R9NH",
    "Account Integration Id":"",
    "Job Title":"",
    "Person UId":"0CR-1MF5Z611",
    "Primary Organization":"Default Organization",
    "Personal Contact":"N"
}

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