- Overview
- Application Guides
- Dashboard
- Authentication
- Security
- API References
- Authentication
- Token
- Mutli-Factor Authentication (MFA)
- Role And Permission
- User Management
- Organization
Validate MFA Token
POST
https://api.ssojet.com/api/v1/auth/mfa/validate
Request
Query Params
client_id
string
required
Header Params
x-client-id
string
optional
Example:
<client id>
Content-Type
string
optional
Default:
application/json
User-Agent
string
optional
Default:
SSOjet/1.0.0 (https://ssojet.com)
Body Params application/json
oob_code
string
optional
Example:
010203040********d249feacac5**1d02531805e77066d3df9
otp
string
optional
Example:
802895
Example
{
"oob_code": "0010203040********d249feacac5**1d02531805e77066d3df9",
"otp": "618801"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.ssojet.com/api/v1/auth/mfa/validate?client_id=' \
--header 'x-client-id;' \
--header 'User-Agent: SSOjet/1.0.0 (https://ssojet.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
"oob_code": "0010203040********d249feacac5**1d02531805e77066d3df9",
"otp": "618801"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-08-18 13:31:38