Generate user access token
documentedExchange an authorization code for a user access token.
POST /oauth2/tokenAuthenticationno 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.connectionpoint.com/v1/oauth2/token" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-d 'grant_type=authorization_code&code={{$code}}&redirect_uri={{$redirect_uri}}&client_id={{$client_id}}&client_secret={{$client_secret}}&code_verifier={{$code_verifier}}'