with Billplz and Drimify?
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: ``,
},
})
},
})
Drimify offers a suite of tools to create engaging and interactive content like quizzes, games, and e-learning modules. With the Drimify API, you can automate the creation and management of these interactive elements, extract analytics, and personalize user experiences. On Pipedream, you can leverage these API capabilities to build serverless workflows that connect Drimify with other apps, streamlining processes like lead generation, user engagement tracking, and content updates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
drimify: {
type: "app",
app: "drimify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://endpoint.drimify.com/api/app_data_collections`,
headers: {
"X-AUTH-TOKEN": `${this.drimify.$auth.api_key}`,
},
})
},
})