Grist

The evolution of spreadsheets.

Integrate the Grist API with the Zendesk API

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

Add Or Update Records with Grist API on New Ticket (Instant) from Zendesk API
Zendesk + Grist
 
Try it
Add Or Update Records with Grist API on New Ticket Added to View (Instant) from Zendesk API
Zendesk + Grist
 
Try it
Add Or Update Records with Grist API on Ticket Closed (Instant) from Zendesk API
Zendesk + Grist
 
Try it
Add Or Update Records with Grist API on Ticket Pending (Instant) from Zendesk API
Zendesk + Grist
 
Try it
Add Or Update Records with Grist API on Ticket Solved (Instant) from Zendesk API
Zendesk + Grist
 
Try it
New Ticket (Instant) from the Zendesk API

Emit new event when a ticket is created

 
Try it
New or Updated Record (Instant) from the Grist API

Emit new event once a record is updated or newly created in Grist. See the documentation

 
Try it
New Ticket Added to View (Instant) from the Zendesk API

Emit new event when a ticket is added to the specified view

 
Try it
New Record (Instant) from the Grist API

Emit new event when a record is just created. See the documentation

 
Try it
Ticket Closed (Instant) from the Zendesk API

Emit new event when a ticket has changed to closed status

 
Try it
Add Or Update Records with the Grist API

Add records in a specified table or updates existing matching records. See the documentation

 
Try it
Create Ticket with the Zendesk API

Creates a ticket. See the documentation.

 
Try it
Add Records with the Grist API

Appends new records to a chosen table in Grist. See the documentation

 
Try it
Delete Ticket with the Zendesk API

Deletes a ticket. See the documentation.

 
Try it
Find Records with the Grist API

Searches for records in a specified table. See the documentation

 
Try it

Overview of Grist

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.

Connect Grist

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

Overview of Zendesk

The Zendesk API enables seamless integration of Zendesk's customer service platform with your existing business processes and third-party applications. By leveraging this API with Pipedream, you can automate ticket tracking, sync customer data, escalate issues, and streamline communication across multiple channels. This can significantly increase efficiency, accelerate response times, and enhance the overall customer experience. Automations can range from simple notifications to complex workflows involving data transformation and multi-step actions across various services.

Connect Zendesk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zendesk: {
      type: "app",
      app: "zendesk",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.zendesk.$auth.subdomain}.zendesk.com/api/v2/users/me/`,
      headers: {
        Authorization: `Bearer ${this.zendesk.$auth.oauth_access_token}`,
      },
    })
  },
})