POST
/
v1
/
login
Login Email
curl --request POST \
  --url https://api.acme.rungalileo.io/v1/login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'grant_type=<string>' \
  --data 'username=<string>' \
  --data 'password=<string>' \
  --data scope= \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "token_type": "bearer"
}

Body

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

Response

Successful Response

access_token
string
required
token_type
string
default:bearer