Create Withdraw Order
Create一個新的Withdraw (付款)Order.
Request Information
| Item | Value |
|---|---|
| Method | POST |
| Path | /gateway/api/v1/payouts |
| Content-Type | application/json |
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
platform_id | string | ✅ | 平台Merchant ID |
service_id | string | ✅ | 服務Type |
merchant_order_id | string | ✅ | MerchantOrder號 |
amount | number | ✅ | 付款Amount |
bank_code | string | ✅ | Bank代碼 |
card_no | string | ✅ | DepositBank卡號 |
card_holder | string | ✅ | 持卡人姓名 |
notify_url | string | ✅ | Callback Notification URL |
sign | string | ✅ | Signature |
Request Example
{
"platform_id": "10001",
"service_id": "CN_BANK_WITHDRAW",
"merchant_order_id": "PAYOUT_20231218_001",
"amount": 500.00,
"bank_code": "ICBC",
"card_no": "6222021234567890123",
"card_holder": "張三",
"notify_url": "https://your-domain.com/api/payout/callback",
"sign": "a1b2c3d4e5f6..."
}
Response Example
{
"code": 0,
"message": "success",
"data": {
"order_id": "DW20231218123456789",
"status": "PROCESSING",
"status_code": 0
}
}