POST
/
realms
/
vatistech
/
protocol
/
openid-connect
/
token
curl --request POST \
  --url https://auth.vatis.tech/realms/vatistech/protocol/openid-connect/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>' \
  --data grant_type=client_credentials
{
  "access_token": "<string>",
  "expires_in": 123,
  "token_type": "<string>"
}

Body

application/x-www-form-urlencoded
Client credentials
client_id
string
client_secret
string
grant_type
enum<string>
Available options:
client_credentials

Response

200
application/json
Authorization response
access_token
string
expires_in
integer
token_type
string