Check a verification code
Verify the code the user typed. Wrong, expired, and exhausted codes
answer 200 with valid: false and the settled status. Only an
unknown id is a 404. A correct code consumes the verification
(single-use, status: approved) and fires the verification.approved
webhook; the 5th wrong attempt settles it as max_attempts_reached
and fires verification.failed.
Authorization
bearerAuth API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.
In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
{ "id": "string", "status": "pending", "channel": "sms", "to": "string", "expiresAt": "2019-08-24T14:15:22Z", "attempts": 0, "maxAttempts": 0, "sendCount": 0, "lastSentAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z", "resend": true, "valid": true}Get a verification
Current state of a verification. `status` is effective (a pending code past its expiry reads as `expired`). Verification records are deleted 24 hours after creation, after which this returns 404.
List keys
Returns all API keys for the authenticated user. Keys are returned with a preview only, not the full key value.