Skip to content

Suspense Order List

Request URL

methodurl
POST/api/pay/payment/queryAccountInfo/v1

Header Information

header parameterdescription
timestampRequest timestamp
nonceRandom value
countryAR
app_codeApp code

Notes

Specifically for the AR (Argentina) market, querying unprocessed suspense transactions within 30 days for merchants.

Request Parameters

FieldTypeRequiredLengthDescription
pageIndexStringnoCursor: No need to pass for the first page request; must be passed for non-first pages to locate the pagination start position.
pageSizeIntegernoQuery quantity: Default 500, maximum 1000.
beginTimeStringyesStart time: Format: yyyy-MM-dd HH:mm:ss. Constraint: No earlier than 30 days before the current date.
endTimeStringyesEnd time: Format: yyyy-MM-dd HH:mm:ss. Constraint: endTime - beginTime ≤ 31 days
signStringyesSignature
Request
{
"pageIndex": "",
"beginTime": "2026-03-10 00:00:00",
"endTime": "2026-03-17 23:59:59",
"pageSize": 1,
"sign": "SIGN_STR_XXXX"
}

Response Parameters

ParameterTypeRequiredLengthDescription
pageIndexStringyesCursor
recordsListyesSuspense transaction information
— suspenseBankIdStringyesSingle transaction voucher id (bankid)
— suspenseAmountStringyesSingle credit amount
— suspenseIdCardNumberStringyesActual payer identity information (CUIT or DNI)
— suspenseRealNameStringyesActual payer name
— suspenseCallbackTimeStringyesTransaction credit time
— cvuStringyesCredit CVU account
Response
{
"code": 200,
"data": {
"records": [
{
"suspenseBankId": "86VRPQ2GM4KDKQ1G2GLY0M",
"suspenseAmount": "400.00",
"suspenseIdCardNumber": "000000000",
"suspenseRealName": "Teemopay",
"suspenseCallbackTime": "2026-03-16 23:17:19",
"cvu": "0000111100000015127521"
}
],
"pageIndex": "hRCyv/Q0jH/igldiVBxgUelKl3QGc/d/ZXcskEATHQ=="
},
"msg": "success",
"traceId": "54cb0821b4d940639bc11917e24c43a7.95.17739933448283365"
}

Error Codes

Error CodeError MessageHandling Solution
602Query range exceeds 31 days. Please query data month by month.endTime - beginTime > 31 days
603The time cannot be later than the current timeStart time cannot be later than current time
604The start time of the application period cannot be later than the end time.Start time cannot be later than end time
607Data older than 30 days cannot be queried via API. Please use the portal to export historical reports.Data older than 30 days cannot be queried
500Business ErrorBusiness exception (Please contact us)
Non-200Other exceptionsPlease contact us
Error
{
"code": 602,
"data": null,
"msg": "Query range exceeds 31 days. Please query data month by month.",
"traceId": "54cb0821b4d940639bc11917e24c43a7.98.17739944725617763"
}