curl --request DELETE \
--url https://api.dots.dev/api/v2/accounts-payable/approval-policies/{approval_policy_id} \
--header 'Authorization: Basic <encoded-value>'
{
"deleted": true,
"id": "<string>",
"object": "<string>"
}
Delete an approval policy by its ID
curl --request DELETE \
--url https://api.dots.dev/api/v2/accounts-payable/approval-policies/{approval_policy_id} \
--header 'Authorization: Basic <encoded-value>'
{
"deleted": true,
"id": "<string>",
"object": "<string>"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The ID of the Approval Policy
OK
The response is of type object
.
Was this page helpful?