Sign in

OAuth Token Exchange

documented

Exchange an authorization code for an access token.

POST /oauth/tokenAuthenticationno 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.timelyapp.com/1.1/oauth/token" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "redirect_uri={{$redirect_uri}}&code={{$code}}&client_id={{$client_id}}&client_secret={{$client_secret}}&grant_type={{$grant_type}}"
OAuth Token Exchange · Timely · OpenIntegrations