ReCharge

Subscriptions & Recurring Payments for Ecommerce

Go to site
Explore
/
Apps
/
ReCharge

ReCharge API Integrations

Build and run workflows using the ReCharge API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The ReCharge API is a powerful tool for integrating subscription billing services into existing applications and building out new ones. By connecting your application directly to ReCharge, you can leverage the functionality of ReCharge to create a powerful back-end solution for managing the subscription payment lifecycle. With ReCharge, merchants can design and automate complex billing workflows to eliminate manual processes and deliver superior customer experiences.

Below are some examples of what you can do with the ReCharge API:

  • Manage customers and their subscription information
  • Support recurring and one-time payments
  • Generate invoices and accept payments
  • Automate the subscription management process
  • Create and manage promotions
  • Leverage the API for analytics and reporting
  • Integrate with payment and fraud protection solutions
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: {
    recharge: {
      type: "app",
      app: "recharge",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.rechargeapps.com/customers`,
      headers: {
        "X-Recharge-Access-Token": `${this.recharge.$auth.api_key}`,
      },
    })
  },
})

Authentication

ReCharge uses API keys for authentication. When you connect your ReCharge account, Pipedream securely stores the keys so you can easily authenticate to ReCharge APIs in both code and no-code steps.

ReCharge uses API keys to authenticate requests. See docs.
Scopes can be set up from the API token edit page to control the level of access.