Attempt Verification

Endpoint

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

Example Request

$response = Http::withToken('YOUR_API_KEY')
               ->post('https://usenotifier.com/api/verify/{uuid}', [
                  "code" => "ABC1"
                ]);

Read the Authentication docs to get your API KEY

code: required

The code that the user has entered for verification. This will be the code that they were sent via SMS.

Example Response

You will get back the UUID of the verification and the current status. At this point it will be PASSED or FAILED

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

Last updated

Was this helpful?