Authorization: Bearer header.
API Keys
API keys are the simplest way to authenticate. Create one from the Tickable dashboard. API keys are scoped to an organization and have specific permissions. They look like:Using an API Key
Scopes
Each API key has specific scopes that control what it can access:OAuth2
Use OAuth2 when building a third-party application that acts on behalf of a Tickable user. The API supports:- Authorization Code — for apps with a backend
- Client Credentials — for machine-to-machine access
- Refresh Token — to renew expired access tokens
Authorization Code Flow
1
Redirect to authorize
Send the user to the authorization endpoint:
2
Receive the callback
After the user approves, they are redirected to your Always verify that
redirect_uri with a code parameter:state matches what you sent.3
Exchange for tokens