with Chargify and Jira Data Center?
Establishes a new subscription for a given customer in Chargify. See the documentation
Modifies an existing subscription in Chargify. See the documentation
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: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jira_data_center: {
type: "app",
app: "jira_data_center",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.jira_data_center.$auth.api_url}/rest/auth/1/session`,
headers: {
Authorization: `Bearer ${this.jira_data_center.$auth.personal_access_token}`,
},
})
},
})