Deleting Multiple Siebel CRM Business Components

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.

The following request deletes existing Accounts on the Siebel CRM Server using the ID field as the identifier:

  • URL: https://ServerName:port/siebel/v1.0/data/Account/Account

  • HTTP Method: DELETE

  • Content-Type: application/json

  • Authorization: Basic

  • Request Body: 200 OK:

    [
        {
            "Id": "88-1V80SZ"
        },
        {
            "Id": "88-1V80T2"
        }
    ]
    
  • Response body with status code: 200 OK: None