with Recurly and Nutrient Document Web Services API?
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 API provides robust functionality for subscription management, including creating and updating customer accounts, managing billing information, and handling subscription lifecycle events. With Pipedream, you can leverage these capabilities to create automated workflows that respond to events in Recurly, sync data with other systems, and perform actions that enhance your subscription operations and customer experiences.
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()
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nutrient_document_web_services_api: {
type: "app",
app: "nutrient_document_web_services_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nutrient.io/account/info`,
headers: {
Authorization: `Bearer ${this.nutrient_document_web_services_api.$auth.api_key}`,
},
})
},
})