OVO
OVO is a leading digital payment platform in Indonesia, offering mobile payments, transfers, top-ups, and more, with a wide partner network for convenient transactions.
Features
Processing currencies | IDR |
---|---|
Settlement currencies | USD |
Minimum transaction amount | 1 IDR |
Maximum transaction amount | No transaction limit |
Refunds | ❌ |
Partial Refunds | ❌ |
Multiple partial refund | ❌ |
Chargeback | ❌ |
Integration Method
Payment method enumeration values: ovo
There is integration method for OVO
- Direct API
Direct API
How to integration
For direct API integration, you can create a PaymentIntent and get url in only one step. The following is the demo of creating payment intent:
A PaymentIntent is an object that represents your intent to collect payment from your customer and tracks the lifecycle of the payment process. Create a PaymentIntent on your server and specify the amount to collect and a supported currency. If you have an existing Payment Intents integration, add ovo
to the list of payment method types.
Request
{
"amount":10000,
"currency":"IDR",
"confirm":true,
"payment_method_data" : {
"type":"ovo"
},
"return_url":"https://yourwebsite.com"
}
Response
{
"id": "pi_1744608849463083008",
"object": "payment_intent",
"created": 1704782138000,
"livemode": false,
"currency": "IDR",
"amount": 10000,
"status": "requires_action",
"client_secret": "pi_1744608849463083008_secret_iYnXt459JTwIntDyElCHDNml",
"next_action": {
"type": "ovo_handle_redirect",
"ovo_handle_redirect": {
"url": "https://apitest.wooshpay.com/v1/receives/c12/pay/pi_1744608849463083008"
}
},
"payment_method_types": [
"ovo"
],
"confirmation_method": "automatic",
"return_url": "https://yourwebsite.com"
"payment_method": "pm_1744608849370808320",
"capture_method": "automatic"
}
Next step
You can add more features to your integration as needed
Create a Webhook
Listen to events on your WooshPay account so your integration can automatically trigger reactions. Create a webhook that mainly focuses on enabled_events and url.
Create a Refund
Create a refund to repay funds to your customer. You can also perform partial refunds, but not every payment method supports them. A partial refund is when you refund only part of the original transaction amount.