Validate a one-time passcode sent by email to a user. The endpoint will return a URI which can be used to redirect the client in order to complete authentication.
Required permissions: apps:execute, [appId]:execute, auth:execute.
Security
ClientAccessToken
Response type requested for the authentication flow.
Default:"code"
Enum:"code""id_token"
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/cis/v1/auth/otp/email/validation
- US production environmenthttps://api.transmitsecurity.io/cis/v1/auth/otp/email/validation
- EU production environmenthttps://api.eu.transmitsecurity.io/cis/v1/auth/otp/email/validation
- CA production environmenthttps://api.ca.transmitsecurity.io/cis/v1/auth/otp/email/validation
- AU production environmenthttps://api.au.transmitsecurity.io/cis/v1/auth/otp/email/validation
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/cis/v1/auth/otp/email/validation
curl -i -X POST \
https://api.sbx.transmitsecurity.io/cis/v1/auth/otp/email/validation \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"email": "string",
"passcode": "string",
"response_type": "code",
"nonce": "string"
}'