Trigger SMS verification
Starts a verification for the specified phone number and sends its code by SMS using the selected Verify profile. Returns the pending verification record.
Request body
Example request
{
"custom_code": "43612",
"phone_number": "+13035551234",
"timeout_secs": 300,
"verify_profile_id": "12ade33a-21c0-473b-b055-b3c836e1c292"
}Response
Expected verifications response to a valid request.
Example response
{
"data": {
"created_at": "2020-09-14T17:03:32.965812",
"custom_code": "43612",
"id": "12ade33a-21c0-473b-b055-b3c836e1c292",
"phone_number": "+13035551234",
"record_type": "verification",
"status": "accepted",
"timeout_secs": 300,
"type": "sms",
"updated_at": "2020-09-14T17:03:32.965812",
"verify_profile_id": "12ade33a-21c0-473b-b055-b3c836e1c292"
}
}Changes
Changed in 2 of the 61 revisions of this API.211
- ▲
the
errors/items/coderesponse's property type/format changed frominteger/int32tostring/for status400response-property-type-changed
- ○
added the optional property
errors/items/meta/urlto the response with the400statusresponse-optional-property-added
This revision also has 64 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
- ▲
the
errors/items/coderesponse's property type/format changed fromstring/tointeger/int32for status400response-property-type-changed
- ●
removed the optional property
errors/items/meta/urlfrom the response with the400statusresponse-optional-property-removed
This revision also has 41 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲