Deleting Multiple Attachments from a Child Record

The following request deletes three attachments from the child record Quote. Each attachment is identified by its ID:

  • URI: http://ServerName:port/siebel/v1.0/data/Account/Account/1-5GZO/Quote/

  • HTTP Method: DELETE

  • Accept: application/json

  • Content-Type: application/json

  • Authorization: Basic

  • Request body:
    [
      {
        "Id": "88-1X0T5H",
        "Quote Attachment": [
          {
            "Id": "88-1X63EF"
          },
          {
            "Id": "88-1X63EE"
          },
          {
            "Id": "88-1X63ED"
          }
        ]
      }
    ]
  • Response body:
    [
        {
            "Id": "1-5GZO",
            "operation": "skipnode",
            "Quote": [
                {
                    "Id": "88-1X0T5H"
                }
            ]
        }
    ]