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 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`,
},
})
},
})
Uploadcare is a file uploading, processing, and delivery platform that provides developers with tools to handle the entire file lifecycle with ease. With its robust API, you can upload files from any device, transform images and documents on-the-fly, and manage digital content with a comprehensive set of features. Integrating Uploadcare with Pipedream allows you to craft workflows that automate file operations and connect them seamlessly with other services, such as CRMs, marketing platforms, and data analysis tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uploadcare: {
type: "app",
app: "uploadcare",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.uploadcare.com/project/`,
headers: {
"Content-Type": `application/json`,
"Accept": `application/vnd.uploadcare-v0.5+json`,
"Authorization": `Uploadcare.Simple ${this.uploadcare.$auth.api_key}:${this.uploadcare.$auth.api_secret}`,
},
})
},
})