with Zoho SalesIQ and VectorShift?
Emit new event when a new conversation is created.
Emit new event when a knowledge base is created in Vectorshift.
Emit new event when a new pipeline is created in VectorShift.
Adds data to a knowledge base in VectorShift. See the documentation
Retrieve visitor feedback by conversation ID. See the documentation
Creates a new pipeline in VectorShift. See the documentation
Retrieve a list of feedback from website visitors. See the documentation
The Zoho SalesIQ API offers a wealth of possibilities for engaging with customers and streamlining sales processes. By leveraging this API in Pipedream, you can craft automated workflows to react to events, manage visitors, and integrate customer interaction data with other services. This could range from triggering actions based on visitor activities to syncing chat transcripts with CRM tools. Pipedream's ability to connect with hundreds of apps allows for creative and powerful automations that can save time and provide valuable insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_salesiq: {
type: "app",
app: "zoho_salesiq",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.zoho_salesiq.$auth.base_api_uri}/api/v2/portals`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_salesiq.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vectorshift: {
type: "app",
app: "vectorshift",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vectorshift.ai/v1/pipelines`,
headers: {
Authorization: `Bearer ${this.vectorshift.$auth.api_key}`,
},
})
},
})