with VideoAsk and Beyond Presence?
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    videoask: {
      type: "app",
      app: "videoask",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.videoask.com/me`,
      headers: {
        "Authorization": `Bearer ${this.videoask.$auth.api_token}`,
      },
    })
  },
})
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    beyond_presence: {
      type: "app",
      app: "beyond_presence",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.bey.dev/v1/avatars`,
      headers: {
        "x-api-key": `${this.beyond_presence.$auth.api_key}`,
      },
    })
  },
})