Digital payments and spend management for businesses
Generate a vanilla or subscription payment link. See the documentation
Delay the execution of your workflow for a specific amount of time (does not count against your compute time).
The Mamo Business API offers capabilities for organizations to manage payments and financial tasks. With the API, you can create and oversee invoices, process payments, and handle transfers among other operations. Integrating Mamo Business with Pipedream allows you to automate workflows involving payment processing, financial monitoring, and syncing transaction data with other business systems. Use it to streamline how money moves into and out of your organization, ensuring accurate financial records while saving time on manual tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mamo_business: {
type: "app",
app: "mamo_business",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.mamo_business.$auth.environment}.mamopay.com/manage_api/v1/me`,
headers: {
Authorization: `Bearer ${this.mamo_business.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
The Delay API in Pipedream is a built-in function that allows you to pause a workflow for a specified amount of time. This can be incredibly useful when you need to stagger API calls to avoid rate limits, wait for an external process to complete, or simply introduce a delay between actions in a sequence. With precision up to milliseconds, the Delay API provides a simple yet powerful tool for managing timing in automation workflows.
export default defineComponent({
async run({steps, $}) {
// Specify the amount of time to delay your workflow in milliseconds
return $.flow.delay(5000)
},
})