with E-goi and VLM Run?
E-goi's API lets you automate multichannel marketing campaigns, manage contacts, send out transactional emails, and much more. Pipedream, as a serverless integration and compute platform, amplifies these capabilities by allowing you to create workflows that trigger actions in E-goi based on events from a myriad of other services or custom logic.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
e_goi: {
type: "app",
app: "e_goi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.egoiapp.com/my-account`,
headers: {
"Apikey": `${this.e_goi.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vlm_run: {
type: "app",
app: "vlm_run",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vlm.run/v1/openai/models`,
headers: {
Authorization: `Bearer ${this.vlm_run.$auth.api_key}`,
},
})
},
})