import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zowie: {
type: "app",
app: "zowie",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getzowie.com/v1/users/all`,
headers: {
"x-api-key": `${this.zowie.$auth.api_key}`,
},
})
},
})
Zowie uses API keys for authentication. When you connect your Zowie account, Pipedream securely stores the keys so you can easily authenticate to Zowie APIs in both code and no-code steps.