Inserting Multiple Siebel CRM Child Business Components

You can insert multiple Siebel CRM child Business Components by sending a HTTP PUT request to the resource's URI.

The following request inserts multiple Contacts under an existing Account record:

  • URL: http://ServerName:port/siebel/v1.0/data/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"
      }
      ]
    }