Delete Multiple Siebel CRM Business Components with Identifier in the URL and in the Request Body
You can delete multiple Business Component records by sending a single HTTP DELETE request to the resource's URI. The maximum number of records you can delete is 100. If the URL and request body provides the record ID, then Siebel REST ignores the ID in the URL and uses the ID provided in the request body. In this case, Siebel REST only deletes the records with IDs specified in the request body.
The following request deletes multiple Account records on the Siebel
CRM Server by passing the IDs specified in the URL and in the request
body.
Note: In this example, the ID provided in the URL is ignored,
and the records for which IDs are provided in the request body are
deleted.
:URL: https://ServerName:port/siebel/v1.0/data/Account/Account/88-1V80SZ
HTTP Method: DELETE
Content-Type: application/json
Authorization: Basic
Request body:
[ { "Id": "88-1V80T2" }, { "Id": "88-1V80L3" } ]
Response body with status code: 200 OK: None