Query operations by merchant within a date range
GET{BASE_URL} /wipay-payment-admin/operation/date
Headers
Name
Value
Content-Type
application/json
X-Api-Key
API Key <xxx>
Sample URL (Including optional fields)
Query Params
Type
Name
Description
Conditions
string
merchantId
Unique merchant identifier
Required
date
startDate
Initial date range. It must be in ISO-8601 format with time zone (OffsetDateTime type).
For example:
2025-04-10T16:47:32.123-05:00
2025-04-10T21:47:32.123Z
Required
date
endDate
Final date range. It must be in ISO-8601 format with time zone (OffsetDateTime type).
For example:
2025-04-10T16:47:32.123-05:00
2025-04-10T21:47:32.123Z
Optional
base64 string
paginationTokens
Pagination token to query next page
Optional
Response
{
"items": [
{
"id": "123456-25-1-PH1-wwbocFjtT5ed6csvE4RK",
"userId": "[email protected]",
"entityType": "Checkout",
"amount": "2.00",
"currency": "€",
"language": "es",
"expirationDate": "2025-06-04T13:09:43.101659287Z",
"requestDate": "2025-06-04T12:54:43.101611067Z",
"transactionId": "123456-25-1-N1tkyYp4fFpczfxg_pK7t2Tl",
"linkId": "123456-25-1-8h0f02rQDuoAO4O30vIZzZbM",
"paymentMethods": [
"APPLE_PAY",
"CARD",
"GOOGLE_PAY"
],
"used": true,
"urlOK": "http://localhost:4000/es/user_area/receipt/123456-25-1-N1tkyYp4fFpczfxg_pK7t2Tl?token=c05907b7-3c5216351315",
"urlKO": "http://localhost:4000/es/error/transaction",
"tokenization": false
},
{
"id": "123456-25-1-N1tkyYp4fFpczfxg_pK7t2Tl",
"userId": "[email protected]",
"merchantId": "123456",
"terminalId": "00000003",
"processor": "GPS_PROCESADOR_CKB",
"entityType": "Payment",
"amount": "2.00",
"currency": "€",
"language": "es",
"status": "IN_PROGRESS",
"expirationDate": "2025-06-05T12:54:43.100490542Z",
"requestDate": "2025-06-04T12:54:43.100302964Z",
"moto": false
},
{
"id": "123456-25-1-8h0f02rQDuoAO4O30vIZzZbM",
"userId": "[email protected]",
"entityType": "AmountSelectionLink",
"amount": "2.00",
"currency": "€",
"language": "es",
"status": "AVAILABLE",
"expirationDate": "2025-06-05T12:54:23.743764892Z",
"requestDate": "2025-06-04T12:54:23.743678972Z",
"destinyUrl": "http://localhost:4000/es/merchant/123456/link/123456-25-1-8h0f02rQDuoAO4O30vIZzZbM/amount-selection",
"purpose": "PAYMENT",
"oneTransaction": false,
"paymentMethods": [],
"transactions": [],
"checkoutSessions": [
"123456-25-1-PH1-wwbocFjtT5ed6csvE4RK"
],
"attemptedTransactions": [
"123456-25-1-N1tkyYp4fFpczfxg_pK7t2Tl"
]
}
],
"paginationTokens": null,
"paginationSize": 50,
"totalItems": 3
}PreviousQuery operations by merchant, status, type and date range.NextQuery operations for a merchant by type within a date range
Last updated