Instantly build AI Chatbots with your knowledge base.
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a deal. See the documentation
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
The Wonderchat API lets you automate interactions with your Wonderchat account, streamlining conversations and enhancing customer engagement. On Pipedream, you can build workflows that trigger on specific events and automate tasks like sending messages, managing contacts, or integrating with CRMs. By coupling the Wonderchat API with Pipedream’s capabilities, you get a powerful synergy where you can seamlessly connect various apps and services, run serverless code, and manipulate data with ease.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wonderchat: {
type: "app",
app: "wonderchat",
}
},
async run({steps, $}) {
const data = {
"apiKey": `${this.wonderchat.$auth.api_key}`,
"chatbotId": `{{your_chatbot_id}}`,
"question": `{{your_queston}}`,
"chatlogId": `{{your_chatlog_id}}`,
"context": `{{your_context}}`,
}
return await axios($, {
method: "POST",
url: `https://app.wonderchat.io/api/v1/chat`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})