MoonClerk is a web-based application designed to facilitate recurring and one-time transactions without hassle.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The MoonClerk API offers a streamlined way to manage and automate payments and billing processes directly within your applications. With Pipedream, you can harness this API to create custom workflows that trigger actions based on payment events, update customer subscriptions, sync with accounting software, and more. It's a powerful tool for businesses looking to automate their financial operations and integrate their payment system with other digital tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
moonclerk: {
type: "app",
app: "moonclerk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.moonclerk.com/customers`,
headers: {
"Authorization": `Token token=${this.moonclerk.$auth.api_key}`,
"Accept": `application/vnd.moonclerk+json;version=1`,
},
})
},
})
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}}