Skip to main content
List identity verification sessions you created for a specific email address. Results are sorted by creation time (newest first), limited to 20 records.
curl -G "https://sandbox.dhmad.tn/api/v1/identity-verifications" \
  --data-urlencode "email=seller@example.com" \
  -H "Authorization: Bearer sk_sandbox_your_api_key_here"
{
  "verifications": [
    {
      "id": "6655abc1234567890abcdef12",
      "email": "seller@example.com",
      "external_user_id": "seller_42",
      "kyc_status": "approved",
      "didit_session_status": "completed",
      "needs_admin_review": false,
      "claim_status": "linked",
      "linked_user_id": "6655user1234567890abcdef",
      "linked_at": "2026-06-10T09:00:00.000Z",
      "created_at": "2026-06-06T12:00:00.000Z",
      "updated_at": "2026-06-10T09:00:00.000Z",
      "expires_at": "2026-09-04T12:00:00.000Z",
      "verification_email_sent": true,
      "verification_email_sent_at": "2026-06-06T12:00:00.000Z"
    }
  ]
}

Query Parameters

email
string
required
Email address to look up. Lowercased on input.

Response Fields

Error Responses

Missing email:
{
  "error": "Bad Request",
  "message": "email query parameter is required"
}