Coda is familiar like a doc and engaging like an app, so your team can jump in quickly, collaborate effectively, and make decisions that stick.
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
Emit new event for every created / updated row in a table. See the documentation.
The Coda API enables you to interact with your Coda docs for both data retrieval and manipulation. By leveraging this API on Pipedream, you can automate document updates, synchronize data across different platforms, orchestrate complex workflows, and react to changes in real-time. Coda’s tables can act as dynamic databases that interconnect with various services, allowing you to streamline operations that depend on the timely and accurate exchange of information.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
coda: {
type: "app",
app: "coda",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://coda.io/apis/v1/whoami`,
headers: {
Authorization: `Bearer ${this.coda.$auth.api_token}`,
"Content-Type": `application/json`,
},
})
},
})
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}`,
},
})
},
})