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