Login
POST
/auth/token/bearerRequest
Body Params application/json
secret
string
required
email
string
required
Example
{
"secret": "string",
"email": "string"
}
Request samples
Responses
Ok(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object (IAuthTokenBearerRes)
required
token
string
required
tokenType
enum<string>
required
Allowed values:
BEARERBASICOTPVERIFICATION_LINK
expireAt
string <date-time>
required
message
string
optional
Example
{
"data": {
"token": "string",
"tokenType": "BEARER",
"expireAt": "2019-08-24T14:15:22.123Z"
},
"message": "string"
}
Last modified: 10 months ago