with CallHippo and AlgoDocs?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
callhippo: {
type: "app",
app: "callhippo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://web.callhippo.com/v1/user/list`,
headers: {
"apitoken": `${this.callhippo.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
algodocs: {
type: "app",
app: "algodocs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.algodocs.com/v1/me`,
headers: {
"x-api-key": `${this.algodocs.$auth.api_key}`,
},
})
},
})