Sales platform and payment processor for your online courses, digital products, memberships, subscriptions and more đź’ˇ
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
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}`,
},
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}