Developer docs

Paypal integration

Online payment system that allows money transfers and serves as an electronic…

Updated June 2026 74 actions available

Provider
paypal
Category
Other
Setup
See setup section below
Actions
74 available

Quick start

Call Paypal from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Paypal's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "PAYPAL_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

Setup details for Paypal aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.

Available actions

74 actions exposed via the Paypal integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 74 actions
  • PAYPAL_CREATE_WEBHOOK
  • PAYPAL_CREATE_WEBHOOK_LOOKUP
  • PAYPAL_CREATE_WEB_PROFILE
  • PAYPAL_DEACTIVATE_PLAN
  • PAYPAL_DELETE_EXTERNAL_PAYMENT
  • PAYPAL_DELETE_INVOICE
  • PAYPAL_DELETE_INVOICE_PAYMENT_RECORD
  • PAYPAL_DELETE_INVOICE_REFUND_RECORD
  • PAYPAL_DELETE_PAYMENT_RESOURCE
  • PAYPAL_DELETE_TEMPLATE
  • PAYPAL_DELETE_WEBHOOK
  • PAYPAL_DELETE_WEB_PROFILE
  • PAYPAL_FETCH_NODE
  • PAYPAL_FINALIZE_PAY_PAL_BRAINTREE_DISPUTE
  • PAYPAL_FIND_ELIGIBLE_METHODS
  • PAYPAL_GENERATE_CLIENT_TOKEN
  • PAYPAL_GENERATE_NEXT_INVOICE_NUMBER
  • PAYPAL_GENERATE_NEXT_INVOICE_NUMBER_V2
  • PAYPAL_GENERATE_QR_CODE
  • PAYPAL_GET_BILLING_SUBSCRIPTIONS
  • PAYPAL_GET_INVOICE
  • PAYPAL_GET_INVOICING_INVOICES_QR_CODE
  • PAYPAL_GET_INVOICING_TEMPLATE
  • PAYPAL_GET_PAYMENT
  • PAYPAL_GET_PAYMENTS_REFUND
  • PAYPAL_GET_PLAN
  • PAYPAL_GET_PRODUCT
  • PAYPAL_GET_SUBSCRIPTION
  • PAYPAL_GET_USERINFO
  • PAYPAL_GET_USER_INFO
  • PAYPAL_GET_WEBHOOK
  • PAYPAL_GET_WEBHOOK_LOOKUP
  • PAYPAL_GET_WEB_PROFILE
  • PAYPAL_LIST_DISPUTES
  • PAYPAL_LIST_INVOICES
  • PAYPAL_LIST_LEGACY_BILLING_PLANS
  • PAYPAL_LIST_PAYMENTS
  • PAYPAL_LIST_PLANS
  • PAYPAL_LIST_PRODUCTS
  • PAYPAL_LIST_TEMPLATES
  • PAYPAL_LIST_WEBHOOK_EVENT_TYPES
  • PAYPAL_LIST_WEBHOOK_EVENT_TYPE_SUBSCRIPTIONS
  • PAYPAL_LIST_WEBHOOK_LOOKUPS
  • PAYPAL_LIST_WEBHOOKS
  • PAYPAL_LIST_WEB_PROFILES
  • PAYPAL_PATCH_ORDERS
  • PAYPAL_PATCH_PLAN
  • PAYPAL_PATCH_SUBSCRIPTION
  • PAYPAL_PATCH_WEB_PROFILE
  • PAYPAL_PING_BRAINTREE
  • PAYPAL_QUERY_BRAINTREE_REPORT
  • PAYPAL_RETRIEVE_PAYMENT_RESOURCE
  • PAYPAL_SEARCH_INVOICES
  • PAYPAL_SIMULATE_WEBHOOK_EVENT
  • PAYPAL_UPDATE_DISPUTE
  • PAYPAL_UPDATE_INVOICE
  • PAYPAL_UPDATE_PAY_PAL_PRODUCT
  • PAYPAL_UPDATE_PAY_PAL_WEBHOOK
  • PAYPAL_UPDATE_TEMPLATES
  • PAYPAL_UPDATE_WEB_PROFILE
  • PAYPAL_VERIFY_PAYMENT_METHOD
  • PAYPAL_VERIFY_WEBHOOK_SIGNATURE

Build with Paypal

Open OverSkill, describe what you want to build, and reference Paypal in your prompt — the AI will wire up the integration automatically.