Check Verification Status
GET
https://wauth.in/api/verifyThis endpoint checks whether the user verification was successful against a specific session id.
Endpoint is particularly useful if you are implementing the verification on a web interface ( using QR display approach )
::: tip
Using the VERIFY endpoint is optional. You may also make use of the following two approaches:
WAuth sends a webhook request to the callback URL configured against your API Account. We pass Verification session ID, user's name, user's WhatsApp number, and custom callback parameters on the webhook URL for you to locally update the verification status and redirect the user accordingly.
WAuth also supports redirection URL, using which the user can be redirected to your app screen/web URL (on mobile phones). We can also append session ID, user's name, user's WhatsApp number, and custom callback parameters on the redirection URL. You may use a custom callback parameter as a secret token to enable login for the user.
:::
Request
Your WAuth.in account API Key
Unique verification session id
Request samples
Responses
{
"status": "Verified",
"waName": "John Doe",
"waNumber": "914444444444",
"callback1": "token1234",
"callback2": "",
"callback3": "",
"creditsCharged": "0000000000.1"
}