with Chargebee and Claid AI?
Emit new event when a customer card has expired. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings
Emit new event when a customer is changed. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings
Emit new event when a new customer is created. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings
Emit new event when the selected event is triggered. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings
Emit new event when a new invoice is created. See the Documentation. Please make sure once you deploy this source, you copy/paste the webhook URL to create it in your Chargebee Webhook settings
Automatically adjusts the color and lighting of an image by applying HDR. The result is an enhancement of the dynamic range in dark or overexposed images. See the documentation
Create a new subscription for an existing customer. See the documentation
Easily erases the image's background, effectively isolating the main subject. See the documentation
Enlarges the selected image in order to improve its resolution. By running this action, users can obtain clearer and sharper images. See the documentation
The Chargebee API provides a suite of powerful endpoints that facilitate automation around subscription billing, invoicing, and customer management. By leveraging this API on Pipedream, you can build complex, event-driven workflows that react to subscription changes, automate billing operations, sync customer data across platforms, and trigger personalized communication, all without managing servers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chargebee: {
type: "app",
app: "chargebee",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.chargebee.$auth.sub_url}.chargebee.com/api/v2/subscriptions`,
auth: {
username: `${this.chargebee.$auth.api_key}`,
password: ``,
},
})
},
})
Claid AI API provides tools for image enhancement, including resizing, cropping, increasing resolution, and optimizing for web use. It's suitable for automating image processing tasks in applications like e-commerce, real estate, and content management. On Pipedream, you can create serverless workflows that use the Claid AI API to process images in response to various triggers, such as new file uploads or webhooks, and then pass the processed images to other services or store them.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
claid_ai: {
type: "app",
app: "claid_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.claid.ai/v1-beta1/storage/storages`,
headers: {
Authorization: `Bearer ${this.claid_ai.$auth.api_key}`,
},
})
},
})