Authorization: Bearer YOUR_ACCESS_TOKEN.
OAuth2 client credentials
Request a token withPOST and Content-Type: application/x-www-form-urlencoded:
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 receive401 Unauthorized, request a new token. Do not embed long-lived tokens in client-side code.
Security
- Store
client_secretonly 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.