Making Authenticated Requests


Making Authenticated Requests

Once you have an access token, include it in the Authorization header of your API requests:

curl --request GET \
  --url '<HUB_URL>/account/all' \
  --header 'Authorization: <YOUR_ACCESS_TOKEN>'