{ "grant_type": "client_credentials", "client_id": "string", "client_secret": "string" }
curl --location --request POST '/v1/auth/token' \ --header 'Content-Type: application/json' \ --data-raw '{ "grant_type": "client_credentials", "client_id": "string", "client_secret": "string" }'
{ "access_token": "string", "token_type": "Bearer", "expires_in": 0, "refresh_token": "string", "scope": "string" }