Boost your business with OwlPay™ APIs
OwlPay™ develops tools that add value to your business with developer-friendly APIs, using simple lines of code and documentation that enables you to integrate system data seamlessly in a dynamic environment.
B2B Payout Solution
// Create your beneficiary
OwlPay::createVendor([
'name' => 'MyVendor',
'application_vendor_uuid' => 'YOUR_VENDOR_UNIQUE_ID',
'email' => '[email protected]',
'description' => 'Your application Vendor',
]);
// create your order
OwlPay::createOrder([
'order_serial' => 'YOUR_ORDER_NUMBER',
'currency' => 'TWD',
'total' => '1000',
'vendor_uuid' => 'OWLPAY_VENDOR_UNIQUE_ID',
]);