Skip to main content
POST
/
auth
/
login
Login
curl --request POST \
  --url https://example.com/api/auth/login \
  --header 'Content-Type: application/json' \
  --data '{
  "username": "<string>",
  "password": "<string>"
}'
{
  "access_token": "<string>"
}

Body

application/json
username
string
required
password
string
required

Response

Successful Response

access_token
string
required
I