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

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 child business object on the Siebel CRM Server:

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

{
    "Bill To First Name":"Siebel",
    "Bill To Last Name": "Customer",
    "Person UId":"0CR-1MF5Z6d11",
    "Primary Organization":"Default Organization",
    "Personal Contact":"N"
}

The following are the details for the response to a successful request:

  • HTTP Code: 200
  • Content-Type:
  • Response body:

{
  "items": {
    "Link": {
      "rel": "self",
      "href": "http://ServerName:port/siebel-rest/v1.0/data/Account/Account/88-4XVPD",
      "name": "Account"
    },
    "Id": "88-4XVPD"
    }
}

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