Skip to main content
DELETE
https://api.theary.ai
/
background-check
/
v1
/
orders
/
{id}
Delete Order
curl --request DELETE \
  --url https://api.theary.ai/background-check/v1/orders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "orderId": "<string>",
  "status": "<string>",
  "deletedAt": "<string>",
  "affectedSearches": 123
}

Delete Background Check Order

Cancels or soft-deletes a verification order and all associated searches.

Request

id
string
required
Unique identifier of the verification order to delete (UUID format)

Response

Returns a confirmation of the order deletion operation.
orderId
string
Unique identifier of the deleted verification order
status
string
Deletion status: “deleted” or “cancelled”
deletedAt
string
Timestamp when the order was deleted
affectedSearches
number
Number of searches that were cancelled/deleted along with the order

Example Request

curl -X DELETE "https://api.theary.ai/background-check/v1/orders/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json"