How to initialise a payment

There are three ways to initialize payments on Orchestrate.

Checkout

The Orchestrate Checkout widget is the fastest way to integrate Orchestrate into your application and start receiving payments. It provides an easy-to-use client-side integration by simply copying and pasting the code in the checkout documentation.

1834

Payment Links

Payment Links is a no-code tool on Orchestrate that enables businesses to easily create and share a link with their customers with zero coding efforts. Payment Links opens up a simple page where customers can enter their details and make payments, choosing from an array of multiple payment options.

2852

Unified API

The Orchestrate Unified API lets developers access multiple payment providers with a single API without having to integrate each payment provider from scratch. Once the API has been integrated into your product, every payment provider you enable on your Orchestrate dashboard will be accessible to your customers at the point of payment.

https://api.orchestrate.finance/v1/payments/payin
{
    "customer_email": "[email protected]",
    "amount": 10000,
    "country": "United States",
    "payment_method": "Card",
    "redirect_url": "https://google.com"
}