with Zoho Bigin and BuySellAds?
The Zoho Bigin API provides access to Zoho Bigin's CRM features, allowing you to manage contacts, deals, and tasks programmatically. With Pipedream, you can harness this API to create no-code, serverless workflows that automate tasks between Zoho Bigin and multiple other apps. You can sync data, respond to events in real-time, and augment the capabilities of Zoho Bigin by connecting to over 300 other apps supported by Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_bigin: {
type: "app",
app: "zoho_bigin",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_bigin.$auth.api_domain}/bigin/v1/users?type=CurrentUser`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_bigin.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
buysellads: {
type: "app",
app: "buysellads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://papi.buysellads.com/daily-stats`,
params: {
key: `${this.buysellads.$auth.api_key}`,
},
})
},
})