Deleting Multiple Attachments on a Single Record

The following request deletes two attachments, specified by their corresponding IDs, attached to one account:

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

  • HTTP Method: DELETE

  • Accept: application/json

  • Content-Type: application/json

  • Authorization: Basic

  • Request body:
    [
        {
             "Id": "88-1X5MBB",
             "Account Attachment": [
                {
                    "Id": "88-1X5MBF"
                },
                {
                    "Id": "88-1X5MBG"
                }
                ]
        }
    ]
  • Response body: None.