Online file management for teams and individuals
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Updates a record if recordId
is provided or adds a record to a table.
Zoho Docs is an all-in-one platform that enables users to store,create,
collaborate, and share documents. By integrating the Zoho Docs API, developers
can build custom applications that enable teams to securely collaborate on
projects in real time. Here are a few examples of what you can create using the
Zoho Docs API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_docs: {
type: "app",
app: "zoho_docs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apidocs.zoho.com/files/v1/files`,
headers: {
Authorization: `Bearer ${this.zoho_docs.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})