with Parallel and iHomefinder?
export default defineComponent({
props: {
parallel: {
type: "app",
app: "parallel",
}
},
async run({steps, $}) {
},
})
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}`,
},
})
},
})