import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
qase: {
type: "app",
app: "qase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.qase.io/v1/user`,
headers: {
"token": `${this.qase.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
Qase uses API keys for authentication. When you connect your Qase account, Pipedream securely stores the keys so you can easily authenticate to Qase APIs in both code and no-code steps.