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"
]);$client = new Client();
$headers = [
'Accept' => 'application/json',
'Authorization' => 'Bearer YOUR_API_KEY',
'Content-Type' => 'application/x-www-form-urlencoded'
];
$options = [
'form_params' => [
'code' => 'ABC1'
]];
$request = new Request('POST', 'https://usenotifier.com/api/verify/{uuid}', $headers);
$res = $client->sendAsync($request, $options)->wait();
echo $res->getBody();curl --location --request POST 'https://usenotifier.com/api/verify/{uuid}'
--header 'Accept: application/json'
--header 'Authorization: Bearer YOUR_API_KEY'
--header 'Content-Type: application/x-www-form-urlencoded'
--data-urlencode 'code=ABC1'Example Response
{
"data": [
{
"uuid": "5f0beecd-ff5f-42d1-bfcd-19c563d67f97",
"status": "PASSED"
}
]
}Last updated