Ramp

The Corporate Card That Helps You Spend Less

Integrate the Ramp API with the GitHub API

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

Create Issue with GitHub API on New Transactions from Ramp API
Ramp + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Transactions from Ramp API
Ramp + GitHub
 
Try it
Create Branch with GitHub API on New Transactions from Ramp API
Ramp + GitHub
 
Try it
Create Gist with GitHub API on New Transactions from Ramp API
Ramp + GitHub
 
Try it
Create Issue Comment with GitHub API on New Transactions from Ramp API
Ramp + GitHub
 
Try it
New Transactions from the Ramp API

Emit new transaction by retrieving all transactions of the business. See Docs

 
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
Create Issue with the GitHub API

Create a new issue in a Gihub repo. 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
Create Gist with the GitHub API

Allows you to add a new gist with one or more files. See docs here

 
Try it
Create Issue Comment with the GitHub API

Create a new comment in a issue. See docs here

 
Try it

Overview of Ramp

The Ramp API allows developers to quickly and securely integrate payments into
their applications. Ramp uses tokenization, encryption and audit trails &
compliance to keep data safe, so developers can securely create custom payment
experience. With the Ramp API:

  • You can easily add custom payment forms to any online shopping cart on your
    site.
  • You can create a payment gateway to accept credit and debit card payments
    from customers - Directly from within your website or application.
  • You can add a subscription service that allows your customers to easily and
    securely pay for recurring purchases.
  • You can accept payment across mobile devices, with or without an internet
    connection
  • You can use biometric authentication and fraud prevention features to secure
    transactions.

Here are a few examples of what you can do with the Ramp API:

  • Accept payments from customers in multiple currencies
  • Integrate secure payment processing with a variety of third party vendors
  • Enable customers to pay securely with any major credit or debit card
  • Develop custom payment experiences (e.g. dashboard payment history, loyalty
    discounts, flexible payment plans etc.)
  • Set up subscription-based payments
  • Automate payment reconciliation and facilitate easy refunds
  • Build web and mobile commerce solutions using secure payment APIs
  • Utilize biometric authentication and fraud protection tools

Connect Ramp

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

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