Teamwork Desk

Ticketing system designed to easily manage customer queries, saving you time and money.

Integrate the Teamwork Desk API with the Airtable (OAuth) API

Setup the Teamwork Desk API trigger to run a workflow which integrates with the Airtable (OAuth) API. Pipedream's integration platform allows you to integrate Teamwork Desk and Airtable (OAuth) remarkably fast. Free for developers.

Create Comment with Airtable API on New Customer Created from Teamwork Desk API
Teamwork Desk + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Customer Reply from Teamwork Desk API
Teamwork Desk + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Ticket Created from Teamwork Desk API
Teamwork Desk + Airtable (OAuth)
 
Try it
Create Customer with Teamwork Desk API on New Field from Airtable (OAuth) API
Airtable (OAuth) + Teamwork Desk
 
Try it
Create Customer with Teamwork Desk API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + Teamwork Desk
 
Try it
New Customer Created from the Teamwork Desk API

Emit new event when a new customer is created.

 
Try it
New Customer Reply from the Teamwork Desk API

Emit new event when a customer reply.

 
Try it
New Ticket Created from the Teamwork Desk API

Emit new event when a new ticket is created.

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
New Modified or Deleted Records (Instant) from the Airtable (OAuth) API

Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation

 
Try it
Create Customer with the Teamwork Desk API

Create a new customer See the documentation

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Create Ticket with the Teamwork Desk API

Create a new ticket See the documentation

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

 
Try it

Overview of Teamwork Desk

The Teamwork Desk API provides the means to programmatically access and manipulate customer support ticket data. By integrating it with Pipedream, you can automate ticketing workflows, streamline customer interactions, and connect support data with other business tools. Whether syncing tickets to a CRM, setting up custom alerts, or generating reports, the API's capabilities allow for a variety of automations to enhance support operations.

Connect Teamwork Desk

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

Overview of Airtable (OAuth)

Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.

Connect Airtable (OAuth)

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: {
    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}`,
      },
    })
  },
})