The subscription management platform delivering unrivaled results to smart brands worldwide.
Go to siteThe Recurly API provides developers an array of powerful methods to build and integrate with Recurly’s subscription billing service. Using the API, you can create unique customer experiences, customized to fit your brand and needs, as well as payment collection, tracking usage in real-time, setting up promotions, and managing customer subscriptions.
Here are some common examples you can build with the Recurly API:
module.exports = defineComponent({
props: {
recurly: {
type: "app",
app: "recurly",
}
},
async run({steps, $}) {
const recurly = require('recurly')
const client = new recurly.Client(this.recurly.$auth.api_key)
return await client.listAccounts()
},
})
Emit new event when a new subscription is created. See the docs.
Emit new event when a new transaction is created. See the docs.
Recurly uses API keys for authentication. When you connect your Recurly account, Pipedream securely stores the keys so you can easily authenticate to Recurly APIs in both code and no-code steps.
To access your API key, navigate to Integrations > API Credentials in your Recurly account (https://[your_subdomain].recurly.com/integrations/api_keys
).