Card Negative Resource


Batch Hook Resources

BatchHook Attributes

batchNo string Batch number


page integer Current page number


size integer Number of records per page


total integer Total number of records


lastPage boolean Whether it is the last page


fileUrl string File URL


list array of objects List of data


Batch Hook Object

Example Object
{
    "batchNo": "BATCH_20260330163600",
    "page": 1,
    "size": 100,
    "total": 500,
    "lastPage": false,
    "fileUrl": "https://s3.example.com/export/batch_list.csv",
    "list": []
}

Account Negative Resources

AccountNegative Attributes

accountId string
Account ID


accountName string Account name


accountEn string
English account name


displayId string Display ID (Short account ID)


type integer
Account type: 0 - Api Client, 1 - Api Client Customer


cardNegative string Card negative balance


budgetNegative string
Budget negative balance


currency string
Currency


statTime string
Statistical timestamp (milliseconds)


Account Negative Object

Example Object
{
    "accountId": "2e3cbb16-a420-4080-9094-e19f45371fee",
    "accountName": "Example Test Account",
    "accountEn": "Example Test Account",
    "displayId": "2000001",
    "type": 0,
    "cardNegative": "120.50",
    "budgetNegative": "50.00",
    "currency": "USD",
    "statTime": "1711785600000"
}

Account Negative Bill Resources

Account Negative Bill Attributes

accountId string Account ID


displayId string Display ID (Short account ID)


createTime string Creation timestamp (milliseconds)


total string Total number of bills


negativeUrl string
Negative balance bill URL


Account Negative Bill Object

Example Object
{
    "accountId": "2e3cbb16-a420-4080-9094-e19f45371fee",
    "displayId": "2000001",
    "createTime": "1711785600000",
    "total": "5",
    "negativeUrl": "https://s3.example.com/bills/negative_bill_2000001.csv"
}

Account Repayment Resources

Account Repayment Attributes

accountId string
Account ID


displayId string Display ID (Short account ID)


type string
Account type: 0 - Api Client, 1 - Api Client Customer


currency string
Currency


cardNegative string
Card negative balance


budgetNegative string Budget negative balance


cardSettleAmount string
Card settlement amount


budgetSettleAmount string Budget settlement amount


cardUnpaidAmount string
Card unpaid amount


budgetUnpaidAmount string
Budget unpaid amount


repayTime integer Statistical timestamp (milliseconds)


Account Repayment Object

Example Object
{
    "accountId": "2e3cbb16-a420-4080-9094-e19f45371fee",
    "displayId": "2000001",
    "type": "0",
    "currency": "USD",
    "cardNegative": "120.50",
    "budgetNegative": "50.00",
    "cardSettleAmount": "120.50",
    "budgetSettleAmount": "50.00",
    "cardUnpaidAmount": "0.00",
    "budgetUnpaidAmount": "0.00",
    "repayTime": 1711785600000
}