Vitally

Modern #CustomerSuccess for B2B SaaS. šŸš€ Unify your data, understand it deeply, and build powerful automation to drive a world-class customer experience.

Integrate the Vitally API with the OpenAI (ChatGPT) API

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

Chat with OpenAI (ChatGPT) API on New User Created from Vitally API
Vitally + OpenAI (ChatGPT)
Ā 
Try it
Summarize Text with OpenAI (ChatGPT) API on New User Created from Vitally API
Vitally + OpenAI (ChatGPT)
Ā 
Try it
Classify Items into Categories with OpenAI (ChatGPT) API on New User Created from Vitally API
Vitally + OpenAI (ChatGPT)
Ā 
Try it
Translate Text with OpenAI (ChatGPT) API on New User Created from Vitally API
Vitally + OpenAI (ChatGPT)
Ā 
Try it
Create Transcription with OpenAI (ChatGPT) API on New User Created from Vitally API
Vitally + OpenAI (ChatGPT)
Ā 
Try it
New User Created from the Vitally API

Emit new event when a new user is created.

Ā 
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
New Fine Tuning Job Created from the OpenAI (ChatGPT) API

Emit new event when a new fine-tuning job is created in OpenAI. See the documentation

Ā 
Try it
New Run State Changed from the OpenAI (ChatGPT) API

Emit new event every time a run changes its status. See the documentation

Ā 
Try it
Create Message with the Vitally API

Create a new message. See the documentation

Ā 
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 Note with the Vitally API

Create a new note. See the documentation

Ā 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

Ā 
Try it
Create Task with the Vitally API

Create a new task. See the documentation

Ā 
Try it

Overview of Vitally

The Vitally API offers a window into customer success operations, enabling you to automate workflows, integrate with other tools, and manipulate customer data programmatically. With Pipedream, you can harness this API to create custom automations that react to events in Vitally, sync data between Vitally and other platforms, or maintain up-to-date customer profiles across your business stack.

Connect Vitally

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: {
    vitally: {
      type: "app",
      app: "vitally",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.vitally.$auth.subdomain}.rest.vitally.io/resources/users`,
      auth: {
        username: `${this.vitally.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

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