Skip to main content
POST
/
v1
/
messaging
/
otp
/
verify
Verify Code
curl --request POST \
  --url http://localhost:2222/v1/messaging/otp/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "sessionId": "<string>",
  "code": "<string>"
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "status": "VERIFIED",
    "message": "<string>",
    "httpStatus": "100 CONTINUE",
    "valid": true
  }
}

Body

application/json
sessionId
string
required
code
string
required
Required string length: 4 - 10

Response

OK

success
boolean
message
string
data
object