POST
/
v1
/
oauth
/
token
OAuth2 client credentials token
curl --request POST \
  --url https://api.hofj.com/v1/oauth/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data grant_type=client_credentials \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "token_type": "Bearer",
  "expires_in": 123,
  "scope": "<string>"
}

Body

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

Response

Access token

access_token
string
required
token_type
enum<string>
required
Available options:
Bearer
expires_in
integer
required
scope
string