Get verified JWT token
POST/api/token/verified
Get a verified JWT token pair by submitting a Two-Factor authentication code.
Request
- application/json
Body
required
refresh stringrequired
otp_token stringrequired
The OTP (One Time Password) token received by the user from the configured Two Factor Authentication method.
Responses
- 201
- application/json
- Schema
- Example (from schema)
Schema
access stringrequired
refresh stringrequired
{
"access": "string",
"refresh": "string"
}
Loading...