Sends a one-time passcode (OTP) by SMS to the specified phone number for a selected user.
Required permissions: apps:execute, [appId]:execute, auth:execute.
Security
ClientAccessToken
Message to send, must contain {otp} and {app} placeholders to be replaced with one time password and application name. Limited to 140 characters
The sender name that appears as the message sender on recipients devices. Limited to 11 characters. Limited support see https://docs.aws.amazon.com/sns/latest/dg/sns-supported-regions-countries.html
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/cis/v1/users/{user_id}/phone/verification/send
- US production environmenthttps://api.transmitsecurity.io/cis/v1/users/{user_id}/phone/verification/send
- EU production environmenthttps://api.eu.transmitsecurity.io/cis/v1/users/{user_id}/phone/verification/send
- CA production environmenthttps://api.ca.transmitsecurity.io/cis/v1/users/{user_id}/phone/verification/send
- AU production environmenthttps://api.au.transmitsecurity.io/cis/v1/users/{user_id}/phone/verification/send
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/cis/v1/users/{user_id}/phone/verification/send
curl -i -X POST \
'https://api.sbx.transmitsecurity.io/cis/v1/users/{user_id}/phone/verification/send' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"custom_message": "string",
"sender_id": "string",
"phone_number": "string"
}'