All-in-one WhatsApp* automation for small teams. Integrate it into your existing workflows easily while you keep using WhatsApp as usual.
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event when a new WhatsApp conversation is started on the user’s 2chat connected number.
Emit new event at a specified time before a card is due.
Emit new event when a new message is either sent or received on 2Chat.
Checks if a given phone number has a WhatsApp account. See the documentation
Sends a text message to a designated whatsapp-enabled phone number. See the documentation
The 2Chat API allows developers to build and manage chatbots that can engage users in personalized conversations across various platforms like WhatsApp, Telegram, and more. This API facilitates the creation, training, and integration of chatbots with existing applications, enabling automated responses based on user inputs and behaviors. Utilizing Pipedream's capabilities, developers can orchestrate complex workflows that react to events from 2Chat, process data, and trigger actions in other apps, streamlining communication processes and enhancing user interaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_2chat: {
type: "app",
app: "_2chat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.p.2chat.io/open/contacts/search`,
headers: {
"Content-Type": `application/json`,
"X-User-API-Key": `${this._2chat.$auth.api_key}`,
},
params: {
query: `John`,
results_per_page: `30`,
page_number: `0`,
},
})
},
})
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})