Paypal Orders
Connector for the paypal-orders 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
orders_get— GET /v2/checkout/orders/{id} — Show order detailsorders_create— POST /v2/checkout/orders — Create orderorders_patch— PATCH /v2/checkout/orders/{id} — Update orderorders_confirm— POST /v2/checkout/orders/{id}/confirm-payment-source — Confirm the Orderorders_authorize— POST /v2/checkout/orders/{id}/authorize — Authorize payment for orderorders_capture— POST /v2/checkout/orders/{id}/capture — Capture payment for order
Inputs
clientId/clientSecret— your paypal-orders 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: orders_get
clientId: <your client id>
clientSecret: <your client secret>