---
title: "Get payment summary for an estimate"
method: GET
path: "/Payments/estimate/{invoiceId}"
tags: ["Payments"]
---

# Get payment summary for an estimate

`GET /Payments/estimate/{invoiceId}`

## Path parameters

- `invoiceId` string, required

## Response `200`

OK

- InvoicePaymentSummaryDto
  - `invoiceId` string
  - `totalAmount` union
    - number, double
    - string, double
  - `totalPaid` union
    - number, double
    - string, double
  - `balanceDue` union — What is still collectable on this bill. Always 0 for a terminal invoice (Void, or Superseded by a payment-time merge): the write paths refuse those, so reporting a non-zero figure advertises a payment that can only fail (ITE-326). The obligation on a merged source lives on its successor — see bool InvoicePaymentSummaryDto.IsPayable.
    - number, double
    - string, double
  - `isPayable` boolean — False when the invoice's status refuses payment (Void / Superseded). Lets a client distinguish "nothing left to collect because it's paid" from "this bill can't take money at all" — both of which read as `balanceDue == 0`.
  - `payments` PaymentSummaryDto[]
    - `id` string
    - `paymentNumber` string
    - `paymentMethod` string
    - `amount` union
      - number, double
      - string, double
    - `status` string
    - `refundedAmount` union
      - number, double
      - string, double
    - `createdAt` string, date-time
    - `clientName` string, nullable
    - `invoiceNumber` string, nullable

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1.md) · [All operations](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clinicos/pawthosx-business-api-v1/revisions/a905bde4e796/schema)
