# 1.4 Cancel Static Virtual Account

# Request URL
  • /api/v2/paymentCode/cancel
# request method
  • POST
# request params
parameter name Is it mandatory type of data length example description
appId mandatory string - - application APPID
aggregateOrderId mandatory string 1-32 CCP20220428011068111 Merchant order id (unique for customer or bill) format: letter + num, 1-32 characters
sign mandatory string - 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 signature
# 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
-- aggregateOrderId String LT000000216 Merchant Order Number
-- channelCode String CEBUANA_VA Channel Code
-- referenceNumber String - Reference Number
-- biller String PH GLOBAL JET EXPRESS INC Collection agencies
-- status String ACTIVE, INACTIVE Available status, ACTIVE: active, INACTIVE: inactive
# success response example
{
    "code": 1000,
    "message": "success",
    "data": {
         "aggregateOrderId": "CCP2023020602068111",
         "channelCode": "CEBUANA_VA",
         "referenceNumber": "PC0000710000067",
         "biller": "PH GLOBAL JET EXPRESS INC",
         "status": "INACTIVE"
    }
}
# failed response example. code see reference
{
  "code": 1002,
  "message": "merchant white ip forbidden"
}