Footer Section
Explore

Multiple records can be deleted at once by passing an array of record ids in the body of the request.
Request body should be an array of objects containing a key with the name 'Id' and the string value for the id of the record to delete.
Name of the object you want to take an action on.
The account value from the header is taken as default account if passed as query parameter.
Content type of the request body.
The name of the storefront used for the request.
curl --request POST \--url https://documentation.conga.com/object/delete \--header 'Accept: application/json' \--header 'Authorization: Basic 123' \--header 'Content-Type: application/json' \--header 'x-account: ' \--header 'x-storefront: ' \--data '[{"Id": "a1I3I0000004CoPUAU"},{"Id": "a1I3I0000004CoQUAU"}]'
1{2"title": "success",3"status": 200,4"data": [5{6"id": "a1I3I0000004CoPUAU",7"success": true,8"errors": []9},10{11"id": "a1I3I0000004CoQUAU",12"success": true,13"errors": []14}15]16}