POST
/
auth
/
token-form
curl --request POST \
  --url http://localhost:8002/auth/token-form \
  --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": "<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

200
application/json
Successfully authenticated with access token
access_token
string
required
token_type
string
required