We help banks and businesses build secure and seamless payments solutions for their customers.
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
The Flutterwave API empowers developers to automate payment processes and integrate various payment services within applications. With this API, you can initiate and receive payments, manage transactions, and access customer data securely. Utilizing Pipedream, you can create workflows that trigger on specific events, process data, and integrate with an array of services without managing servers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flutterwave: {
type: "app",
app: "flutterwave",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flutterwave.com/v3/beneficiaries`,
headers: {
Authorization: `Bearer ${this.flutterwave.$auth.secret_api_key}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS