Account credentials
Authenticate account-scoped integrations and automation workloads.
Use account credentials when your integration acts within a single account and does not need to act as a specific user.
This is the recommended method for backend services, scheduled workflows, and other non-interactive integrations.
What you need
You need permission to create account API credentials in the dashboard, or you need credentials issued by someone with the right access.
Account credentials consist of a client_id and client_secret. Store them securely and do not expose them in client-side code, logs, notebooks, or shared configuration files.
Create account credentials
Create account credentials in the dashboard.
Copy the generated client_id and client_secret. You will exchange these values for an access token.
Exchange credentials for an access token
Send the account credentials to the authentication endpoint.
The request uses grant_type: "client_credentials" with the client_id and client_secret.
Authorise API requests
Use the returned access_token as a bearer token on subsequent API requests.
The response includes expires_in, which indicates how long the access token remains valid. When the token expires, exchange the account credentials for a new access token.

