---
title: "List payments"
method: GET
path: "/Payments"
tags: ["Payments"]
---

# List payments

`GET /Payments`

Returns a paginated list of all payments recorded on your account across all cases.

**Pagination:**
- Page (default: 1) - Page number, starting from 1
- PageSize (default: 10, max: 100) - Number of results per page

**Response:**
- Returns PaymentListApiDTO with page metadata and payments array
- Each payment includes case reference, amount, currency, date, payment type, and status
- Page metadata includes: totalResults, currentPage, skipped, pageSize

**Note:** This endpoint returns ALL payments across all your cases. To get payments for a specific case, use GET /cases/{id}/payments instead.

## Query parameters

- `Page` integer
- `PageSize` integer

## Response `200`

Payments returned

- DebituraWebExternalCustomerAPIModelsPaymentsDtosPaymentListApiDTO
  - `page` DebituraDomainModelBasePageData, required
    - `totalResults` integer
    - `pageSize` integer
    - `currentPage` integer
    - `responseCount` integer
    - `totalPages` integer
  - `payments` DebituraWebExternalApiContractsV1PaymentsPaymentDto[], nullable
    - `id` string, uuid
    - `dateCreated` string, date-time
    - `dateUpdated` string, date-time, nullable
    - `date` string, date-time
    - `grossAmount` number, double
    - `recipient` string, nullable, required
    - `method` string, nullable, required
    - `currency` string, nullable, required
    - `invoice` DebituraWebExternalApiContractsV1PaymentsPaymentRelatedInvoiceDto, required
      - `status` string, nullable, required
      - `reference` string, nullable, required
      - `invoiceId` string, uuid

## Other responses

- `400` — Invalid pagination parameters

---

[API](https://skmtc.net/debitura/apis/debitura-customer-api.md) · [All operations](https://skmtc.net/debitura/apis/debitura-customer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/debitura/debitura-customer-api/versions/46478f2e476f/schema)
