Using a Siebel CRM Business Service to Delete an Account
You can use a Siebel CRM Business Service to delete an Account record by sending a HTTP POST request to the resource's URI.
The following request deletes an Account record on the Siebel CRM Server using the delete method of Siebel Account Business Service:
URI: http://ServerName:port/siebel/v1.0/service/Siebel Account/Delete
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> </Account> </ListOfAccount_spcInterface> </SiebelMessage> </body>