Chat app that's built for work. Messaging, video collaboration, task management and productivity.
Emit new event when a new channel message is received. See the documentation
Emit new event when a new direct message is received. See the documentation
The Zoho Cliq API allows you to automate and integrate your team communication within Zoho Cliq. With this API, you can create bots to send messages, manage channels and users, and streamline notifications to your team about events from other applications or services. Using Pipedream, you can harness these capabilities to create powerful workflows that trigger actions within Zoho Cliq or react to events happening in Cliq to perform tasks in other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_cliq: {
type: "app",
app: "zoho_cliq",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_cliq.$auth.base_api_uri}/api/v2/users`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_cliq.$auth.oauth_access_token}`,
},
})
},
})
The SWAPI - Star Wars API is a treasure trove of structured data from the Star Wars universe. It's a go-to resource for fetching information about planets, spaceships, vehicles, people, films, and species from the iconic franchise. Using Pipedream, you can harness this data to create automations and workflows that trigger based on specific criteria from SWAPI. For instance, you could set up a workflow that notifies you when new data is added, enrich customer profiles with their favorite Star Wars characters, or even use it for trivia games by pulling random facts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swapi: {
type: "app",
app: "swapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://swapi.dev/api/films/1/`,
})
},
})