Use a Monieswitch payment app (if available) from the Shopify App Store. -
Or, set up a custom payment gateway using Shopify’s manual payment method
and your Monieswitch dashboard.
You can generate a payment link for each order and send it to your customer:
Copy
Ask AI
// Example: Create a payment link in PHP when an order is placed$payload = [ 'amount' => 15000, 'currency' => 'NGN', 'description' => 'Order #12345', 'customer' => [ 'email' => '[email protected]' ]];// Send this payload to the Monieswitch API as shown in previous guides