Paginate through the imports, newest first. Each entry carries the header and counts; request include=items for the per-record results of every import on the page. With the :authenticated scope the result is restricted to the imports of the authenticated user.
GET
/2026-4/payment-transaction-imports
curl \
--request GET 'https://api.pace.cloud/payment/2026-4/payment-transaction-imports' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"clientId": "backoffice-importer",
"counts": {
"failed": 1,
"imported": 1,
"skipped": 1,
"total": 3
},
"createdAt": "2026-07-20T10:15:00.000Z",
"id": "9b1c0f4e-2f3a-4c5d-8e6f-7a8b9c0d1e2f",
"items": [
{
"externalId": "dkv:TXN-2024-0009182",
"failureCode": "PAYMENT_METHOD_NOT_FOUND",
"position": 0,
"result": "IMPORTED",
"transactionId": "6fc2acbd-3afd-4df3-9967-836a7929b13f"
}
],
"status": "PARTIAL",
"updatedAt": "2026-07-20T10:15:00.000Z",
"userId": "a1c782d9-7a6c-4e5a-b05b-1d11b93c510a"
}
]
}