Upserting a Siebel CRM Parent Business Component

You can insert or update a Siebel CRM parent Business Component resource by sending a HTTP PUT request to the Repository Resource's URI.

The following request updates the value of the Description field of an existing Account record:

  • URI: http://ServerName:port/siebel/v1.0/data/Account/Account

  • HTTP Method: PUT

  • Content-Type: application/xml

  • Authorization: Basic

  • Request body:

<?xml version="1.0" encoding="UTF-8" ?>
  <request>
    <Name>AccountData</Name>
    <Primary_spcOrganization>Millennium Institutional Finance Services IF ENU</
     Primary_spcOrganization>
    <Location>HQ-Distribution</Location>
    <Description>AccountDataUpdate</Description>
    <Primary_spcOrganization_spcId>1-1DG</Primary_spcOrganization_spcId>
  </request>