# 1.8 Cancel Static Virtual Account
# Request URL (defined by merchant)
/api/v1/paymentCode/cancel
# request method
- POST
# request params
parameter name | Is it mandatory | type of data | length | example | description |
---|---|---|---|---|---|
appId | mandatory | string | - | - | application APPID |
mchOrderId | mandatory | string | 1-32 | CCP20220428011068111 | Merchant order id (unique for customer or bill) format: letter + num, 1-32 characters |
sign | mandatory | string | - | 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 | sign |
# sign process refer to sign process (opens new window)
# response params
parameter name | type of data | example | description |
---|---|---|---|
code | int | 1000 | Status code see reference |
message | String | success | The message of status code |
data | Object | - | Response Data |
- paymentVaList | List | Bills Payment Date | |
-- mchOrderId | String | LT000000216 | Merchant Order Number |
-- channelCode | String | GCASH_STATIC_VA | Collection Channel Code |
-- referenceNumber | String | - | Repayment code |
-- biller | String | Dragon Loans | Collection agencies |
-- status | String | ACTIVE, INACTIVE | Available status, ACTIVE: active, INACTIVE: inactive |
# success response example.
{
"code": 1000,
"message": "success",
"data": {
"paymentVaList": [
{
"mchOrderId": "CCP2023020602068111",
"channelCode": "RDP_STATIC_VA",
"referenceNumber": "PC00F571",
"biller": "Dragon Loans",
"status": "INACTIVE"
},
{
"mchOrderId": "CCP2023020602068111",
"channelCode": "MLH_STATIC_VA",
"referenceNumber": "PC00F571",
"biller": "Dragonpay",
"status": "INACTIVE"
},
{
"mchOrderId": "CCP2023020602068111",
"channelCode": "7ELEVEN_STATIC_VA",
"referenceNumber": "PC0000710000067",
"biller": "PAYCOOLS LOAN",
"status": "INACTIVE"
},
{
"mchOrderId": "CCP2023020602068111",
"channelCode": "PAYMAYA_STATIC_VA",
"referenceNumber": "PC00F571",
"biller": "Dragon Loans",
"status": "INACTIVE"
},
{
"mchOrderId": "CCP2023020602068111",
"channelCode": "GCASH_STATIC_VA",
"referenceNumber": "PC0000710000067",
"biller": "PAYCOOLS LOAN",
"status": "INACTIVE"
}
]
}
}
# failed response example. code see reference
{
"code":1002,
"message":"merchant white ip forbidden",
}