Coda

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.

Integrate the Coda API with the Node API

Setup the Coda API trigger to run a workflow which integrates with the Node API. Pipedream's integration platform allows you to integrate Coda and Node remarkably fast. Free for developers.

Run Node Code with Node API on New Row Created from Coda API
Coda + Node
 
Try it
New Row Created from the Coda API

Emit new event for every created / updated row in a table. See the documentation.

 
Try it
Copy Doc with the Coda API

Creates a copy of the specified doc. See docs

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it
Create Doc with the Coda API

Creates a new doc. See docs

 
Try it
Create Rows with the Coda API

Insert a row in a selected table. See docs

 
Try it
Delete Row with the Coda API

Delete a single row by name or ID. See docs

 
Try it

Overview of Coda

With the Coda API, you can build:

  • A list of all the docs you have access to
  • A table of contents for a doc
  • A specific page from a doc
  • A list of all the action items in a doc
  • A list of all the people who have access to a doc
  • A list of all the docs a specific person has access to
  • A list of all the changes made to a doc

Connect Coda

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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`,
      },
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.