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`,
},
})
},
})
CallHippo uses API keys for authentication. When you connect your CallHippo account, Pipedream securely stores the keys so you can easily authenticate to CallHippo APIs in both code and no-code steps.