hb_client_id and api_key for an access token and a refresh token. Access tokens expire after 1 hour; refresh tokens expire after 7 days.hb_client_id is your Healthier Business Group portal client ID — the same ID used across all HB services. It is provided by your account manager.Authorization: Bearer ********************curl --location '/auth/token' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"hb_client_id": 1042,
"api_key": "bls_live_AbCdEfGhIjKlMnOpQrStUvWxYz012345678901234567"
}'{
"token_type": "Bearer",
"access_token": "eyJ0eXBlIjoiYWNjZXNzIiwiaWQiOjF9...",
"refresh_token": "eyJ0eXBlIjoicmVmcmVzaCIsImlkIjoxfQ...",
"expires_in": 3600,
"refresh_expires_in": 604800
}