Generate account access token
Get access token
Headers
Name
Type
Description
Request Body
Name
Type
Description
{
"message": "Access token.",
"data": {
"token": "generated_access_token(this is also the refresh token)",
"token_type": "bearer",
"expires_in": "1585815796"
}
}{
"message": [
"Client id not found with this user.",
"Client secret not found with this user.",
"Invalid credentials."
],
"data": null
}{
"client_id": [
"The client id field is required.",
"The selected client id is invalid."
],
"client_secret": [
"The client secret field is required.",
"The selected client secret is invalid."
],
"grant_type": [
"The grant type field is required.",
"The selected grant type is invalid."
],
"email": [
"The email field is required.",
"The selected email is invalid."
],
"password": [
"The password field is required."
]
}Last updated
Was this helpful?