---
title: "Fetch case payments"
method: GET
path: "/cases/{id}/payments"
tags: ["Cases"]
---

# Fetch case payments

`GET /cases/{id}/payments`

Returns all payments recorded on a specific case.

**Payment Information Includes:**
- Payment amount and currency
- Payment date (when received)
- Payment type (full payment, partial payment, settlement)
- Payment method (bank transfer, card, cash, etc.)
- Payment status (pending, confirmed, reconciled)
- Reference information
- Allocation breakdown (principal, interest, fees)

**Use Case:**
Use this endpoint to:
- Track payment history for a case
- Reconcile payments with your records
- Display payment status to users
- Calculate outstanding balances
- Generate financial reports

**Note:** Only payments associated with this specific case are returned. All payments are returned in reverse chronological order (newest first).

## Path parameters

- `id` string, uuid, required

## Response `200`

Payments returned (may be empty array)

- DebituraWebExternalApiContractsV1PaymentsPaymentDto[]
  - `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` — Case ID missing or empty
- `404` — Case not found or not assigned to you as collection partner

---

[API](https://skmtc.net/debitura/apis/debitura-collection-partner-api.md) · [All operations](https://skmtc.net/debitura/apis/debitura-collection-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/debitura/debitura-collection-partner-api/revisions/40bd25a4edaf/schema)
