Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event once a record is updated or newly created in Grist. See the documentation
Emit new event when a record is just created. See the documentation
Add records in a specified table or updates existing matching records. See the documentation
Grist API on Pipedream enables you to automate data management tasks in your Grist documents. This might mean syncing data across different platforms, triggering notifications based on data changes, or processing data through custom logic. With Pipedream, you can use the Grist API to build workflows that react to events in real-time, connect to hundreds of other services, manipulate data in sophisticated ways, and create custom endpoints to integrate with your Grist data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
grist: {
type: "app",
app: "grist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://docs.getgrist.com/api/orgs`,
headers: {
Authorization: `Bearer ${this.grist.$auth.api_key}`,
},
})
},
})