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

Inserting Multiple Siebel CRM Child Business Objects


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

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

{
  "Contact":[
  {
    "Primary Organization Id":"1-1DG",
    "Primary Organization":"Default Organization",
    "First Name":"Ken",
    "Last Name": "Bass",
    "Id":"12345"
  },
  {
    "Primary Organization Id":"1-1DG",
    "Primary Organization":"Default Organization",
    "First Name":"test",
    "Last Name": "test1",
    "Id":"123456"
}
]
}

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