Checking Verification Status

Endpoint

[GET] https://usenotifier.com/api/verify/{uuid}

Example Request

$response = Http::withToken('YOUR_API_KEY')
               ->get('https://usenotifier.com/api/verify/{uuid}');

Read the Authentication docs to get your API KEY

Example Response

You will get back the UUID of the verification and the current status. At this point it will be PASSED or FAILED if an attempt has been made. If no attempts have been made you will see a status of PENDING. After 10 mins of no successful attempts, the verification will expire, and you will need to create a new one.

{
    "data": [
        {
            "uuid": "5f0beecd-ff5f-42d1-bfcd-19c563d67f97",
            "status": "FAILED"
        }
    ]
}

Status

There are 4 possible statuses:

  • PENDING: No attempts to verify have been made

  • PASSED: Verification has been successful

  • FAILED: Verification has failed

  • EXPIRED: The Verification has expired. This happens when a successful verification is not made after 10 minutes. You will need to create a new Verification

Last updated

Was this helpful?