Skip to main content
POST
/
v1
/
mandates
/
{intentMandate}
/
revoke
curl -X POST https://api.sandbox.delegare.dev/v1/mandates/dtok_abc123xyz789/revoke \
  -H "X-Delegare-Merchant-Id: your_merchant_id" \
  -H "X-Delegare-Api-Key: your_api_key"
{
  "success": true,
  "status": "revoked"
}

Documentation Index

Fetch the complete documentation index at: https://docs.delegare.dev/llms.txt

Use this file to discover all available pages before exploring further.

Revoking a delegate immediately invalidates its token. Any future charge attempts using this token will fail with a 403 Forbidden response.

Headers

X-Delegare-Merchant-Id
string
required
Your merchant identifier.
X-Delegare-Api-Key
string
required
Your merchant API key.

Path Parameters

intentMandate
string
required
The intentMandate to revoke.

Response

success
boolean
Will be true if the delegate was successfully revoked.
status
string
The new status of the delegate, which will be "revoked".
curl -X POST https://api.sandbox.delegare.dev/v1/mandates/dtok_abc123xyz789/revoke \
  -H "X-Delegare-Merchant-Id: your_merchant_id" \
  -H "X-Delegare-Api-Key: your_api_key"
{
  "success": true,
  "status": "revoked"
}