One Time Password
Verify a one-time password
Verifies a one-time password. The password must be submitted within 1 hour of being sent and can only be used once. Use the request ID returned by POST /one-time-password/actions/send together with the verification code received by the recipient.
post/one-time-password/actions/verify
Headers
Accept-Languagestring
The unique ID of the language code by ISO 639-1.
Request body
Example request
{
"verification_code": "7256",
"request_id": "106c5ce60ed0830ffb813135bfff7cad9f4c3e47",
"external_application_id": "82de12eb8b138791e678fd11c3"
}Response
OK
Example response
{
"data": {
"is_valid": true
}
}