Paypal Billing Subscriptions V1
Connector for the paypal-billing-subscriptions-v1 API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://api-m.sandbox.paypal.com - Auth: OAuth 2.0 client-credentials — the tool fetches a token from
/v1/oauth2/tokenusing yourclientId/clientSecret, then calls the API.
Operations
plans_list— GET /v1/billing/plans — List plansplans_get— GET /v1/billing/plans/{id} — Show plan detailssubscriptions_get— GET /v1/billing/subscriptions/{id} — Show subscription detailssubscriptions_transactions— GET /v1/billing/subscriptions/{id}/transactions — List transactions for subscriptionplans_create— POST /v1/billing/plans — Create planplans_patch— PATCH /v1/billing/plans/{id} — Update plan
Inputs
clientId/clientSecret— your paypal-billing-subscriptions-v1 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: plans_list
clientId: <your client id>
clientSecret: <your client secret>