PayPal

Send Money, Pay Online or Set Up a Merchant Account

Integrate the PayPal API with the Schedule API

Setup the PayPal API trigger to run a workflow which integrates with the Schedule API. Pipedream's integration platform allows you to integrate PayPal and Schedule remarkably fast. Free for developers.

Get User Info with PayPal API on Custom Interval from Schedule API
Schedule + PayPal
 
Try it
Get User Info with PayPal API on Daily schedule from Schedule API
Schedule + PayPal
 
Try it
Get User Info with PayPal API on Monthly Schedule from Schedule API
Schedule + PayPal
 
Try it
Get User Info with PayPal API on Weekly schedule from Schedule API
Schedule + PayPal
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Payment Event (Instant) from the PayPal API

Emits a new event on a new payment webhook event. See webhooks docs here and Events Types docs here

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Get User Info with the PayPal API

Shows user profile information. See docs here

 
Try it

Overview of PayPal

The PayPal API on Pipedream allows you to automate payment processing, manage transactions, and streamline financial operations within your applications. By leveraging Pipedream's serverless platform, you can craft customized workflows that trigger on specific PayPal events, such as successful payments or disputes. Harness the power of automations to synchronize transaction data across diverse systems, send notifications, or even analyze financial trends.

Connect PayPal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    paypal: {
      type: "app",
      app: "paypal",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.paypal.$auth.app_type}.paypal.com/v1/identity/oauth2/userinfo`,
      headers: {
        Authorization: `Bearer ${this.paypal.$auth.oauth_access_token}`,
      },
      params: {
        schema: `paypalv1.1`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.