hb_client_id and an active API key. Returns an access/refresh token pair. Access tokens expire after 3600 seconds (1 hour).Authorization: Bearer ********************curl --location '/auth/token' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"hb_client_id": 4021,
"api_key": "tdta_live_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}'{
"token_type": "Bearer",
"access_token": "eyJ0eXAiOiJKV1Qi...",
"refresh_token": "def50200abc...",
"expires_in": 3600,
"refresh_expires_in": 604800
}