import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kualitee: {
type: "app",
app: "kualitee",
}
},
async run({steps, $}) {
const data = {
"token": `${this.kualitee.$auth.api_token}`,
"user_status": `0`,
}
return await axios($, {
method: "post",
url: `https://apiss.kualitee.com/api/v2/users/list`,
headers: {
"content-type": `application/x-www-form-urlencoded`,
},
data,
})
},
})
Kualitee uses API keys for authentication. When you connect your Kualitee account, Pipedream securely stores the keys so you can easily authenticate to Kualitee APIs in both code and no-code steps.