Skip to main content
DELETE
/
verifications
/
{id}
Delete a verification
curl --request DELETE \
  --url https://api.check.et/api/v1/verifications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Verification removed"
}

Bulk delete

To delete multiple records at once:
curl -X DELETE https://api.check.et/api/v1/verifications/bulk \
  -H "Authorization: Bearer chk_xxx" \
  -H "Content-Type: application/json" \
  -d '{"ids": [9812, 9813, 9814]}'
Response: { "message": "Verifications removed", "deleted": 3 }
Requires Manager or Admin role on the branch.

Authorizations

Authorization
string
header
required

API key from your dashboard - starts with chk_. Requires a business account.

Path Parameters

id
integer
required
Example:

9812

Response

Deleted

message
string
Example:

"Verification removed"