Get payment details
Retrieve the current payment summary for a specific invoice.
Endpoint
| Property | Value |
|---|---|
| URL | GET /invoice/payment/details/{invoiceId} |
| Method | GET |
| Auth | R-Auth: <company-jwt> |
Example Request
curl --location '{{baseUrl}}/invoice/payment/details/{{invoiceId}}' \
--header 'R-Auth: {{companyJwt}}'
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
invoiceId | UUID | Yes | Invoice ID from Search documents |
Response
{
"paymentStatus": "PAID",
"paidAmount": 1800.0,
"totalAmount": 1800.0,
"remainingAmount": 0.0,
"paymentDate": "2026-06-16"
}
Response fields
| Field | Description |
|---|---|
paymentStatus | Payment status. Possible values: SENT (unpaid), PARTIAL_PAID, PAID |
paidAmount | Total amount paid |
totalAmount | Total invoice amount |
remainingAmount | Remaining balance |
paymentDate | Date of last payment |