Zenkit

Productivity and Collaboration Software Suite

Integrate the Zenkit API with the OpenAI (ChatGPT) API

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

Chat with OpenAI (ChatGPT) API on New Activity (Instant) from Zenkit API
Zenkit + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Entry (Instant) from Zenkit API
Zenkit + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Notification (Instant) from Zenkit API
Zenkit + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on Updated Entry (Instant) from Zenkit API
Zenkit + OpenAI (ChatGPT)
 
Try it
Summarize Text with OpenAI (ChatGPT) API on New Activity (Instant) from Zenkit API
Zenkit + OpenAI (ChatGPT)
 
Try it
New Activity (Instant) from the Zenkit API

Emit new event when there is new activity in Zenkit

 
Try it
New Entry (Instant) from the Zenkit API

Emit new event when a new item/entry is created in Zenkit

 
Try it
New Notification (Instant) from the Zenkit API

Emit new event when there is a new notification in Zenkit

 
Try it
Updated Entry (Instant) from the Zenkit API

Emit new event when an entry is updated in Zenkit

 
Try it
New File Created from the OpenAI (ChatGPT) API

Emit new event when a new file is created in OpenAI. See the documentation

 
Try it
Add Entry Comment with the Zenkit API

Add a comment to an entry/item within a list/collection on Zenkit. See the docs

 
Try it
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
Try it
Create Entry with the Zenkit API

Create an entry/item in a list on Zenkit. See the docs

 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
Try it
Get Entry with the Zenkit API

Retrieve an entry/item from a list on Zenkit. See the docs

 
Try it

Overview of Zenkit

Zenkit is a versatile project management and collaboration tool that lets you organize your data and build custom workflows to streamline your business and personal projects. With the Zenkit API, you can create, read, update, and delete items in your collections, manage users, and automate notifications or actions based on changes within your datasets. Combining Zenkit's API with Pipedream's capability unlocks powerful automation opportunities, allowing you to interconnect your project data with numerous other services and internal systems to enhance productivity, data consistency, and event-driven processes.

Connect Zenkit

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: {
    zenkit: {
      type: "app",
      app: "zenkit",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://zenkit.com/api/v1/users/me`,
      headers: {
        Authorization: `Bearer ${this.zenkit.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of OpenAI (ChatGPT)

OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:

Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:

Connect OpenAI (ChatGPT)

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: {
    openai: {
      type: "app",
      app: "openai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.openai.com/v1/models`,
      headers: {
        Authorization: `Bearer ${this.openai.$auth.api_key}`,
      },
    })
  },
})