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

# Fetch managed case payments

`GET /managed-cases/{id}/payments`

Returns all payments recorded on a case you submitted as managing partner.

**Payment Information Includes:**
- Payment amount, currency, and date
- Payment type and method
- Payment status (recorded by collection partner)
- Allocation breakdown (principal, interest, fees)
- Payout details (amounts to creditor and collection partner)

**What This Endpoint Shows:**
As a managing partner, you can monitor all payment activity on cases you submitted for your clients. This endpoint provides visibility into:
- What the collection partner has recovered from the debtor
- How recovered amounts are allocated (principal vs. interest vs. fees)
- The collection partner's success fee on each payment
- Payment history and timeline

**Important:** This endpoint is for monitoring and client reporting purposes. Your financial arrangements with your clients (billing, commissions, etc.) are managed outside of Debitura's platform. The payment data shown here represents what the collection partner recovered and their fees, not any commissions or payments to you as the managing partner.

**Use Case:**
Monitor recovery progress, reconcile payments with your records, track case performance, or provide payment status updates to your clients.

**Note:** On production cases, only the assigned collection partner can record new payments. For test cases (isTestCase: true), managing partners can record payments via `POST /managed-cases/{id}/payments`.

## 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 submitted by you as managing 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)
