v52

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Verify

Verify verification code by ID

post/verifications/{verification_id}/actions/verify

Path parameters

verification_idstring uuid required
Example:12ade33a-21c0-473b-b055-b3c836e1c292

The identifier of the verification to retrieve.

Request body

codestring

This is the code the user submits for verification.

status'accepted' | 'rejected'

Identifies if the verification code has been accepted or rejected. Only permitted if custom_code was used for the verification.

Example request

{
  "code": "17686",
  "status": "accepted"
}

Response

Expected verify response to a valid request.

Example response

{
  "data": {
    "phone_number": "+13035551234",
    "response_code": "accepted"
  }
}