Chargebee

Automated Subscription Billing Software

Integrate the Chargebee API with the GitHub API

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

Create Issue with GitHub API on Customer Card Expired (Instant) from Chargebee API
Chargebee + GitHub
 
Try it
Create Issue with GitHub API on Customer Changed (Instant) from Chargebee API
Chargebee + GitHub
 
Try it
Create Issue with GitHub API on New Customer Created (Instant) from Chargebee API
Chargebee + GitHub
 
Try it
Create Issue with GitHub API on New Event from Chargebee API
Chargebee + GitHub
 
Try it
Create Issue with GitHub API on New Invoice Created (Instant) from Chargebee API
Chargebee + GitHub
 
Try it
Customer Card Expired (Instant) from the Chargebee API

Emit new event when a customer card has expired. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings.

 
Try it
Customer Changed (Instant) from the Chargebee API

Emit new event when a customer is changed. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings.

 
Try it
New Customer Created (Instant) from the Chargebee API

Emit new event when a new customer is created. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings.

 
Try it
New Event from the Chargebee API

Emit new event when the selected event is triggered. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings.

 
Try it
New Invoice Created (Instant) from the Chargebee API

Emit new event when a new invoice is created. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings.

 
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 Chargebee

The Chargebee API provides a suite of powerful endpoints that facilitate automation around subscription billing, invoicing, and customer management. By leveraging this API on Pipedream, you can build complex, event-driven workflows that react to subscription changes, automate billing operations, sync customer data across platforms, and trigger personalized communication, all without managing servers.

Connect Chargebee

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: {
    chargebee: {
      type: "app",
      app: "chargebee",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.chargebee.$auth.sub_url}.chargebee.com/api/v2/subscriptions`,
      auth: {
        username: `${this.chargebee.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

Overview of GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

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