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
{
"data": [
{
"uuid": "5f0beecd-ff5f-42d1-bfcd-19c563d67f97",
"status": "FAILED"
}
]
}Status
Last updated