with Zoho Billing and KrispCall?
The Zoho Subscriptions API allows you to manage various aspects of subscription-based billing services. With this API, you can automate tasks such as creating subscriptions, handling customer billing info, and managing invoices. In Pipedream, you can harness this API to build workflows that respond to events in Zoho Subscriptions or to perform actions based on triggers from other apps. This enables seamless automation of billing operations and integration with your broader app ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_subscriptions: {
type: "app",
app: "zoho_subscriptions",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_subscriptions.$auth.api_domain}/billing/v1/organizations`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_subscriptions.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
krispcall: {
type: "app",
app: "krispcall",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://automationapi.krispcall.com/api/v1/platform/pipedream/me`,
headers: {
"X-API-Key": `${this.krispcall.$auth.api_key}`,
},
})
},
})