Alipay+
| Features | |
|---|---|
| Method | Async - Redirect | 
| Merchant countries | Malaysia | 
| Consumer countries | Malaysia | 
| Processing currencies | MYR | 
| Increments | - | 
| Captures | - | 
| Partial/Multiple partial captures | - | 
| Cancels | - | 
| Partial/Multiple partial cancels | - | 
| Refunds | ✅ | 
| Partial/Multiple partial refunds | ✅ | 
| Recurring | - | 
| Installments | - | 
| Credits | - | 
| Disputes | - | 
| Min Amount | 1.01 | 
| Account verification | - | 
Alipay+ is a global digital payment platform that enables merchants to accept various e-wallets and banking apps from around the world. It allows businesses to connect with consumers using their preferred payment methods, creating a seamless and convenient global payment experience.
When a consumer shops online using the Alipay+ payment method, the merchant sends a payment to the PSP.
The merchant redirects to the Alipay+ page and allows the customer to complete the purchase.
Payment flow

Payment
Request
{
    "processingAccountId": "2HdN2jq6XWmlkhqRC2gDTNYCvNH",
    "merchantReference": "c5211d6b-0178-49f8-a06b-69df097a712f",
    "amount": {
        "value": 200,
        "currency": "myr"
    },
    "paymentMethod": {
        "type": "alipay_plus",
        "alipayPlus": {
            "returnUrl": "https://merchant.site/complete-payment"
        }
    }
}
Response
{
    "id": "27yiW9MgzBtwiodreuNOXk0rtIw",
    "merchantReference": "c5211d6b-0178-49f8-a06b-69df097a712f",
    "status": "pending",
    "trackingUrl": "/v1/tracks/payments/{trackId}",
    "reason": {
        "code": "required_next_step",
        "description": "An additional step is needed to complete the payment."
    },
    "nextStep": {
        "type": "redirect",
        "redirect": {
            "method": "post",
            "url": "https://payment.method/complete",
            "params": [
                {
                    "name": "param1",
                    "value": "value1"
                },
                {
                    "name": "param2",
                    "value": "value2"
                }
            ]
        }
    }
}