with Ablefy (formerly elopage) and OpenAI (ChatGPT)?
Emit new event when a new webhook event occurs. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
Emit new event when a new batch is completed in OpenAI. See the documentation
Emit new event when a new file is created in OpenAI. See the documentation
Emit new event when a new fine-tuning job is created in OpenAI. See the documentation
Emit new event every time a run changes its status. See the documentation
Create a new order. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
The Chat API, using the gpt-3.5-turbo or gpt-4 model. See the documentation
List all funnels. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
Chat using the web search tool. See the documentation
List all products. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
The elopage API allows you to automate processes around selling digital products, courses, memberships, and tickets. It provides endpoints to manage products, payments, users, and subscriptions. With Pipedream's serverless workflows, you can construct automations that respond to elopage events or orchestrate complex tasks involving multiple systems, streamlining your digital commerce operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
elopage: {
type: "app",
app: "elopage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.myablefy.com/api/funnels/`,
params: {
key: `${this.elopage.$auth.api_key}`,
secret: `${this.elopage.$auth.api_secret}`,
},
})
},
})
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:
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}`,
},
})
},
})