PayPal

Send Money, Pay Online or Set Up a Merchant Account

Integrate the PayPal API with the GitHub API

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

Create Issue with GitHub API on New Payment Event (Instant) from PayPal API
PayPal + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Payment Event (Instant) from PayPal API
PayPal + GitHub
 
Try it
Create Branch with GitHub API on New Payment Event (Instant) from PayPal API
PayPal + GitHub
 
Try it
Create Gist with GitHub API on New Payment Event (Instant) from PayPal API
PayPal + GitHub
 
Try it
Create Issue Comment with GitHub API on New Payment Event (Instant) from PayPal API
PayPal + GitHub
 
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
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added See the documentation

 
Try it
New Commit from the GitHub API

Emit new event when commits are pushed to a branch See the documentation

 
Try it
Get user info with the PayPal API

Shows user profile information. Filters the response by a schema.

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Get User Info with the PayPal API

Shows user profile information. See docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Create Branch with the GitHub API

Create a new branch in a Github repo. See docs here

 
Try it

Overview of PayPal

The PayPal API is an incredibly powerful tool for developers and businesses to
manage payments, subscriptions, and money transfers securely without having to
write lengthy integration code. With the PayPal API, you can rapidly integrate
payment, billing, and money transfer operations into any website or app,
enabling businesses to accept payments from customers around the world.

As such, you can use the PayPal API to build many different types of
applications, such as:

  • eCommerce payment processing
  • Billing and invoicing tools
  • Online marketplace integrations
  • Subscription management
  • Peer-to-peer money transfers
  • Automated clearance of payments
  • Crowdfunding platforms
  • Multi-currency transaction support
  • Payment fraud detection and prevention systems
  • Mobile app monetization

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`,
      },
    })
  },
})

Connect GitHub

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})