with CloudCart and Air?
The CloudCart API enables you to interact programmatically with your CloudCart store, offering endpoints to manage products, orders, customers, and more. By leveraging this API within Pipedream, you can create automated workflows that streamline e-commerce operations, sync data with other services, and react to events in real-time. Whether it's syncing order details to a CRM, updating inventory levels, or sending transactional emails, Pipedream's serverless platform provides a powerful and flexible toolkit to enhance your e-commerce automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cloudcart: {
type: "app",
app: "cloudcart",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.cloudcart.$auth.domain}.cloudcart.net/api/v2/products`,
headers: {
"X-CloudCart-ApiKey": `${this.cloudcart.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
air: {
type: "app",
app: "air",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.air.inc/v1/assets`,
headers: {
"accept": `application/json`,
"x-api-key": `${this.air.$auth.api_key}`,
"x-air-workspace-id": `${this.air.$auth.workspace_id}`,
},
})
},
})