with Coda and Imagior?
Emit new event for every created / updated row in a table. See the documentation.
Generates a unique and robust image using a provided template. 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`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
imagior: {
type: "app",
app: "imagior",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.imagior.com/user/account`,
headers: {
Authorization: `Bearer ${this.imagior.$auth.api_key}`,
},
})
},
})