with Zoho Commerce and Pro Ledger?
Create a new product with variants. See the documentation
Create a new record in the Pro Ledger platform. See the documentation
The Zoho Commerce API enables you to interact programmatically with Zoho's e-commerce platform, allowing for the automation of various online store operations. From managing products, orders, and customer data to generating reports, this API opens up possibilities for syncing your e-commerce data with other business tools, setting up automated marketing campaigns based on customer behavior, or even creating custom analytics dashboards to monitor your store's performance.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_commerce: {
type: "app",
app: "zoho_commerce",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://commerce.${this.zoho_commerce.$auth.base_api_url}/zs-site/api/v1/index/sites`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_commerce.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pro_ledger: {
type: "app",
app: "pro_ledger",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pro-ledger.com/api/v1/auth/check_api_key`,
headers: {
"X-API-Key": `${this.pro_ledger.$auth.api_key}`,
},
})
},
})