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}');$client = new Client();
$headers = [
'Authorization' => 'Bearer YOUR-API-KEY'
];
$request = new Request('GET', 'https://usenotifier.com/api/verify/{uuid}', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();curl --location --request POST 'https://usenotifier.com/api/verify/{uuid}'
--header 'Accept: application/json'
--header 'Authorization: Bearer YOUR_API_KEY'var client = new RestClient("https://usenotifier.com/api/verify/{uuid}");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer YOUR-API-KEY");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);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?