Sign in

Request access token

documented

Exchange an authorization code for an access token.

POST /oauth/tokenAuthno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.ticketbud.com/oauth/token" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "client_id={{TICKETBUD_CLIENT_ID}}" \
  -d "client_secret={{TICKETBUD_CLIENT_SECRET}}" \
  -d "code={{AUTH_CODE}}" \
  -d "grant_type=authorization_code" \
  -d "redirect_uri={{REDIRECT_URI}}"
Request access token · Ticketbud · OpenIntegrations