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