Skip to main content
All Brand API requests require a Bearer access token. Use the same flow for every endpoint in the API Reference playground: obtain a token first, then call Brand API paths with Authorization: Bearer YOUR_ACCESS_TOKEN.

OAuth2 client credentials

Request a token with POST and Content-Type: application/x-www-form-urlencoded:
For sandbox, use https://api-auth-sandbox.bambumeta.software/oauth2/token.

Response

Calling the Brand API

Include the token on every request:

Token lifetime

Tokens expire. When you receive 401 Unauthorized, request a new token. Do not embed long-lived tokens in client-side code.

Security

  • Store client_secret only on your server.
  • Never commit secrets to source control or share them in support channels.
  • Rotate credentials if a secret is exposed.

API Reference playground

In the API Reference tab, each endpoint uses this OAuth scheme (cognito-authorizer). Mintlify does not call the token URL for you. Paste a token from the curl example above into the playground Authorization field, or configure your client to refresh tokens before they expire.