Using a Siebel CRM Business Service to Update an Account
You can use a Siebel CRM Business Service resource to update an Account record by sending a HTTP POST request to the Repository Resource's URI.
The following request updates the Main Phone field for an existing Account record using the update method of the Siebel Account Business Service:
URI: http://ServerName:port/siebel/v1.0/service/Siebel Account/Update
HTTP Method: POST
Content-Type: application/xml
Authorization: Basic
Request body:
<?xml version="1.0" encoding="UTF-8" ?> <body> <SiebelMessage> <MessageId></MessageId> <MessageType>Integration Object</MessageType> <IntObjectName>Account Interface</IntObjectName> <IntObjectFormat>Siebel Hierarchical</IntObjectFormat> <ListOfAccount_spcInterface> <Account><Account_spcId>1-34Z</Account_spcId> <Main_spcPhone_spcNumber>2018742315</Main_spcPhone_spcNumber> </Account> </ListOfAccount_spcInterface> </SiebelMessage> </body>