Skip to content
Go To Dashboard

Check verification code

POST /v1/services/verify/check

Requires Bearer token authentication.

{
"verificationRequestId": "vreq_abc123",
"code": "123456"
}
Terminal window
curl -X POST "https://api.sapiom.ai/v1/services/verify/check" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"verificationRequestId": "vreq_abc123",
"code": "123456"
}'
{
"success": true,
"data": null
}
StatusCodeDescription
400-Invalid verification request ID or code
401-Unauthorized - API key required

See API Introduction for error handling details.