v1
latestOpenAPI 3.0.32026-07-24156161.2 MBStreams Service
OTP Verify Request
Verify the code a recipient submitted against the active OTP for their phone number. Returns verification: true on a match, otherwise false.
A wrong code is a normal false result with HTTP 200 — not an error. Errors (e.g. too many failed attempts) are returned via the standard error envelope.
Authentication: stream token in the Authorization header (see Authentication in the API Overview).
post/streams/otp/verify
Request body
Example request
{
"recipient_phone": "447700900123",
"code": "4821"
}Response
The verification result.
Example response
{
"verification": true
}