Skip to main content
POST
/
v1
/
user
/
login
Login For Access Token
curl --request POST \
  --url https://api.example.com/v1/user/login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'username=<string>' \
  --data 'password=<string>' \
  --data 'grant_type=<string>' \
  --data scope= \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "email": "<string>"
}

Body

application/x-www-form-urlencoded
username
string
required
password
string
required
grant_type
string
scope
string
default:""
client_id
string
client_secret
string

Response

Successful Response

access_token
string
required
token_type
string
required
email
string
required