Get Access Token
documentedObtain an OAuth access token for apps to access userWorkspaces.
POST /v2/oauth/tokenAuthorizationno implementation yet0 runsNo 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.clickup.com/api/v2/oauth/token" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-d 'grant_type=authorization_code&code={{$authorization_code}}&redirect_uri={{$redirect_uri}}&client_id={{CLICKUP_CLIENT_ID}}&client_secret={{CLICKUP_CLIENT_SECRET}}'