Paypal Payments Payment V2
Connector for the paypal-payments-payment-v2 API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://api-m.paypal.com - Auth: OAuth 2.0 client-credentials — the tool fetches a token from
https://api-m.paypal.com/v1/oauth2/tokenusing yourclientId/clientSecret, then calls the API.
Operations
authorizations_get— GET /v2/payments/authorizations/{authorization_id} — Show details for authorized paymentcaptures_get— GET /v2/payments/captures/{capture_id} — Show captured payment detailsrefunds_get— GET /v2/payments/refunds/{refund_id} — Show refund detailsauthorizations_capture— POST /v2/payments/authorizations/{authorization_id}/capture — Capture authorized paymentauthorizations_reauthorize— POST /v2/payments/authorizations/{authorization_id}/reauthorize — Reauthorize authorized paymentauthorizations_void— POST /v2/payments/authorizations/{authorization_id}/void — Void authorized payment
Inputs
clientId/clientSecret— your paypal-payments-payment-v2 OAuth app credentialsscope— OAuth scopes (optional; defaults from the spec)operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: authorizations_get
clientId: <your client id>
clientSecret: <your client secret>