With the Coda API, you can build:
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`,
},
})
},
})
Emit new event for every created / updated row in a table. See the docs here.
Coda uses API keys for authentication. When you connect your Coda account, Pipedream securely stores the keys so you can easily authenticate to Coda APIs in both code and no-code steps.
Get your Coda API token in My account on Coda.