GET api/v1/billing/invoices/failed
Return list of invoices which failed to send (available for admins)
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Com.Healthbridge.Hhas.Billing.Interface.ValueObjects.InvoiceSendingStatusVo| Name | Description | Type | Additional information |
|---|---|---|---|
| PracticeId | globally unique identifier |
None. |
|
| EncounterId | globally unique identifier |
None. |
|
| InvoiceId | globally unique identifier |
None. |
|
| Reason | string |
None. |
|
| Status | string |
None. |
|
| System | string |
None. |
|
| SendingTime | date |
None. |
|
| SendingAttempts | integer |
None. |
|
| SendingType | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PracticeId": "13205aa9-840b-4619-baa7-99d911219ed2",
"EncounterId": "b180a747-abdb-49a0-b093-452bf509b83b",
"InvoiceId": "05ed8840-b87c-49d3-99ae-a84ab6d3d2d4",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2026-02-04T20:12:17Z",
"SendingAttempts": 8,
"SendingType": "sample string 9"
},
{
"PracticeId": "13205aa9-840b-4619-baa7-99d911219ed2",
"EncounterId": "b180a747-abdb-49a0-b093-452bf509b83b",
"InvoiceId": "05ed8840-b87c-49d3-99ae-a84ab6d3d2d4",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2026-02-04T20:12:17Z",
"SendingAttempts": 8,
"SendingType": "sample string 9"
}
]
application/xml, text/xml
Sample:
<ArrayOfInvoiceSendingStatusVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Billing.Interface.ValueObjects">
<InvoiceSendingStatusVo>
<EncounterId>b180a747-abdb-49a0-b093-452bf509b83b</EncounterId>
<InvoiceId>05ed8840-b87c-49d3-99ae-a84ab6d3d2d4</InvoiceId>
<PracticeId>13205aa9-840b-4619-baa7-99d911219ed2</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2026-02-04T20:12:17.1400898+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
<InvoiceSendingStatusVo>
<EncounterId>b180a747-abdb-49a0-b093-452bf509b83b</EncounterId>
<InvoiceId>05ed8840-b87c-49d3-99ae-a84ab6d3d2d4</InvoiceId>
<PracticeId>13205aa9-840b-4619-baa7-99d911219ed2</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2026-02-04T20:12:17.1400898+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
</ArrayOfInvoiceSendingStatusVo>