with iHomefinder and Beyond Presence?
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ihomefinder: {
      type: "app",
      app: "ihomefinder",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.idxhome.com/api/v1/client.json`,
      headers: {
        "accept": `application/json`,
      },
      auth: {
        username: `${this.ihomefinder.$auth.email}`,
        password: `${this.ihomefinder.$auth.password}`,
      },
    })
  },
})
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}`,
      },
    })
  },
})