v1

latestOpenAPI 3.1.02026-07-132363652.9 MB
Post-Processor Logs
Admin

List post-processor log entries with optional filters (admin only)

List post-processor log entries with optional filters (admin only)

get/api/v1/admin/post-processor-logs

Query parameters

pageinteger

Page number (1-based)

Example:1

Page number (1-based)

limitinteger

Number of items per page (max 100)

Example:10

Number of items per page (max 100)

sortstring

Sort field and direction (e.g., "created_at:desc", "amount:asc")

Example:created_at:desc

Sort field and direction (e.g., "created_at:desc", "amount:asc")

merchant_idstring uuid

Filter by merchant ID

Filter by merchant ID

'FEE_TRANSFER'
OR
'CURRENCY_CONVERSION'
OR
'PAYOUT'
OR
'REFUND_RETENTION'
OR
'MANUAL'

Type of post-processor action

'INITIATED'
OR
'COMPLETED'
OR
'FAILED'

Status of the post-processor log entry

from_datestring date-time

Filter logs created after this date

Filter logs created after this date

to_datestring date-time

Filter logs created before this date

Filter logs created before this date

Response

Success

successboolean required

Indicates if the request was successful

Example response

{
  "success": true,
  "data": [
    {
      "from_currency": "EUR",
      "amount": "100.00"
    }
  ],
  "pagination": {
    "total": 150,
    "page": 1,
    "limit": 25,
    "totalPages": 6,
    "hasNextPage": true
  }
}