with The Bookie and Chargify?
Instantly creates a new contact in the address book. See the documentation
Establishes a new subscription for a given customer in Chargify. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
the_bookie: {
type: "app",
app: "the_bookie",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.thebookie.nl/nl/api/e1/contacts/`,
headers: {
Authorization: `Bearer ${this.the_bookie.$auth.oauth_access_token}`,
},
params: {
admin_id: `${this.the_bookie.$auth.admin_id}`,
},
})
},
})
The Chargify API enables seamless integration of subscription billing, management, and reporting functionalities. With Chargify, you can automate the creation and management of customer subscriptions, handle invoicing, apply taxes, and track analytics related to your billing processes. It's a powerful tool for businesses with recurring revenue models to keep their billing systems in sync with other business operations, reducing manual workload and increasing efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chargify: {
type: "app",
app: "chargify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.chargify.$auth.subdomain}.chargify.com/subscriptions.json`,
headers: {
"content-type": `application/json`,
"accept": `application/json`,
},
auth: {
username: `${this.chargify.$auth.api_key}`,
password: ``,
},
})
},
})