Sales platform and payment processor for your online courses, digital products, memberships, subscriptions and more đź’ˇ
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format documentation.
The elopage API allows you to automate processes around selling digital products, courses, memberships, and tickets. It provides endpoints to manage products, payments, users, and subscriptions. With Pipedream's serverless workflows, you can construct automations that respond to elopage events or orchestrate complex tasks involving multiple systems, streamlining your digital commerce operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
elopage: {
type: "app",
app: "elopage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.myablefy.com/api/funnels/`,
params: {
key: `${this.elopage.$auth.api_key}`,
secret: `${this.elopage.$auth.api_secret}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})