v1

latestOpenAPI 3.0.2Apache License 2.02026-07-13109285691.8 KB
Payment Audit Service

List Payment Changes

Get a paginated response listing payment changes.

get/v4/payments/deltas

Query parameters

payorIdstring uuid required

The Payor ID to find associated Payments

updatedSincestring date-time required

The updatedSince filter in the format YYYY-MM-DDThh:mm:ss+hh:mm

pageinteger

Page number. Default is 1.

pageSizeinteger

The number of results to return in a page

Response

Details of Payment Changes

Example response

{
  "links": [
    {
      "rel": "rel",
      "href": "href"
    },
    {
      "rel": "rel",
      "href": "href"
    }
  ],
  "page": {
    "numberOfElements": 0,
    "totalPages": 1,
    "pageSize": 5,
    "page": 5,
    "totalElements": 6
  },
  "content": [
    {
      "paymentId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "payorPaymentId": "payorPaymentId",
      "sourceCurrency": "sourceCurrency",
      "sourceAmount": 6,
      "payoutId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "paymentCurrency": "paymentCurrency",
      "paymentAmount": 0,
      "status": "status"
    },
    {
      "paymentId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "payorPaymentId": "payorPaymentId",
      "sourceCurrency": "sourceCurrency",
      "sourceAmount": 6,
      "payoutId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "paymentCurrency": "paymentCurrency",
      "paymentAmount": 0,
      "status": "status"
    }
  ]
}