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