Refresh tokens
documentedRefresh an access token using a refresh token (v1).
POST /oauth/tokenOAuth 2.0no 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://oauth.pipedrive.com/oauth/token" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-H "Authorization: Basic {{PIPEDRIVE_SECRET}}" \
-d 'grant_type=authorization_code&code={{code}}&redirect_uri={{redirect_uri}}'