This 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:
1.
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.
2.
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
Query Params
apikey
string
optional
Your WAuth.in account API Key
Example:
your_api_key
sessionId
string
optional
Unique verification session id
Example:
79a63a2d18b06c65-SIN
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET 'https://wauth.in/api/verify?apikey=your_api_key&sessionId=79a63a2d18b06c65-SIN'