Authorization Tokens
Revoke Authorization Token
Revoke an unverified Authorization Token. Once revoked, the code can no longer be verified. Tokens that have already been verified or expired cannot be revoked and will return status 412 Precondition Failed.
post/v1/authorization_tokens/{id}/revoke
Path parameters
idstring required
The unique id of the Authorization Token
Response
The token was revoked
Example response
{
"id": "auth_token_01jpjenf5q6cawy43yxfcrxhct",
"donor_account_id": "donor_account_01jpjenf5q6cawy43yxfcrxhct",
"status": "pending",
"code": "DAFP-7K3X-9M4Q",
"created_at": "2026-04-01T12:00:00Z",
"expires_at": "2026-05-01T12:00:00Z",
"verified_at": "2026-04-02T18:30:00Z",
"revoked_at": "2026-04-02T18:30:00Z"
}