Trigger workflows on an interval or cron schedule.
Initializes a new transaction on Paystack. See the documentation
List transactions carried out on your integration. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
Paystack is a payment gateway that allows businesses to accept payments online from customers. With the Paystack API, you can automate invoicing, verify transactions, manage customers, and more. On Pipedream, you can integrate Paystack with a multitude of other apps to build powerful workflows, such as syncing payment data with accounting software, triggering events based on transaction status, or automating customer outreach.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
paystack: {
type: "app",
app: "paystack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.paystack.co/customer`,
headers: {
Authorization: `Bearer ${this.paystack.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})