支持的Pyament Type、Payment Channel:| Payment Type | Payment Channel | Remark | Enable |
|---|
| VIRTUAL_ACCOUNT | BRI | Bank Rakyat Indonesia | |
| BNI | Bank Negara Indonesia | |
| MANDIRI | Bank Mandiri (Persero) Tbk | |
| PERMATA | PT Bank Permata Tbk | |
| BSS | Bank sahabat sampoerna | 暂不支持 |
| BSI | Bank syariah indonesia | 暂不支持 |
| CIMB | PT Bank CIMB Niaga Tbk | |
| BCA | Bank Central Asia Tbk | |
| BNC | Bank neo commerce | |
| WALLET | OVO | | |
| DANA | | |
| LINKAJA | | |
| SHOPEEPAY | | |
| QRIS | QRIS | | |
PaymentType 和 Payment Channel 使用详细说明:1.如果paymentType和paymentChannel都不传值,会返回所有的聚合支付方式
2.如果paymentType传值,paymentChannel不传值,则会返回对应大类支付方式所有机构的支付方式
3.如果paymentType不传值,paymentChannel传值,则会报错
4.如果paymentType传值,paymentChannel传值,则会返回对应大类中的机构支付方式
Request
Body Params application/json
{
"mchOrderId": "string",
"amount": "string",
"firstname": "string",
"currency": "string",
"lastname": "string",
"productinfo": "string",
"email": "string",
"phone": "string",
"callbackUrl": "string",
"redirectUrl": "string",
"noPayPage": "string",
"productTitle": "string",
"paymentChannel": "string",
"paymentType": "VIRTUAL_ACCOUNT",
"paymentMethod": "string"
}
Request Code Samples
curl --location --request POST '/gateway/base/biz' \
--header 'method: pay' \
--header 'signType: SHA512' \
--header 'serviceName: api.pay' \
--header 'mchId: 1416010331032883200' \
--header 'timestamp: 1631671670' \
--header 'sign: 32554324534545432543' \
--header 'Content-Type: application/json' \
--data-raw '{
"mchOrderId": "string",
"amount": "string",
"firstname": "string",
"currency": "string",
"lastname": "string",
"productinfo": "string",
"email": "string",
"phone": "string",
"callbackUrl": "string",
"redirectUrl": "string",
"noPayPage": "string",
"productTitle": "string",
"paymentChannel": "string",
"paymentType": "VIRTUAL_ACCOUNT",
"paymentMethod": "string"
}'
Responses
application/json {
"resultCode": "string",
"errorCode": "string",
"errorMsg": null,
"data": [
{
"orderId": "string",
"checkoutUrl": "string"
}
]
}
Modified at 2025-12-05 13:03:25