Create Verification
Endpoint
[POST] https://usenotifier.com/api/verifyExample Request
$response = Http::withToken('YOUR_API_KEY')
->post('https://usenotifier.com/api/verify', [
"to" => "+447700900389"
]);$client = new Client();
$headers = [
'Accept' => 'application/json',
'Authorization' => 'Bearer YOUR_API_KEY',
'Content-Type' => 'application/x-www-form-urlencoded'
];
$options = [
'form_params' => [
'to' => '+447700900389'
]];
$request = new Request('POST', 'https://usenotifier.com/api/verify', $headers);
$res = $client->sendAsync($request, $options)->wait();
echo $res->getBody();curl --location --request POST 'https://usenotifier.com/api/verify'
--header 'Accept: application/json'
--header 'Authorization: Bearer YOUR_API_KEY'
--header 'Content-Type: application/x-www-form-urlencoded'
--data-urlencode 'to=+447700900389'Example Response
Last updated