Exchange authorization code
documentedExchange an authorization code for an access token and refresh token.
POST /api/v3/oauth.exchangeAuthCodeOAuthno 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.contactsplus.com/v3/oauth.exchangeAuthCode" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-d 'client_id={{CONTACTSPLUS_CLIENT_ID}}&client_secret={{CONTACTSPLUS_CLIENT_SECRET}}&redirect_uri={{CONTACTSPLUS_REDIRECT_URI}}&code={{$authorization_code}}'