GET api/v1/billing/invoices/sent/sentDate/{sentDate}
Return list of sent invoices
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sentDate | date |
Required |
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": "c5d4fcc3-573a-4388-be09-8812d095a4ed",
"EncounterId": "3de7e6dd-4d57-4f52-8c0b-f8f1821b8981",
"InvoiceId": "ed772fed-5bd4-408d-babb-728d0e692447",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2025-12-14T16:34:00Z",
"SendingAttempts": 8,
"SendingType": "sample string 9"
},
{
"PracticeId": "c5d4fcc3-573a-4388-be09-8812d095a4ed",
"EncounterId": "3de7e6dd-4d57-4f52-8c0b-f8f1821b8981",
"InvoiceId": "ed772fed-5bd4-408d-babb-728d0e692447",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2025-12-14T16:34:00Z",
"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>3de7e6dd-4d57-4f52-8c0b-f8f1821b8981</EncounterId>
<InvoiceId>ed772fed-5bd4-408d-babb-728d0e692447</InvoiceId>
<PracticeId>c5d4fcc3-573a-4388-be09-8812d095a4ed</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2025-12-14T16:34:00.7497363+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
<InvoiceSendingStatusVo>
<EncounterId>3de7e6dd-4d57-4f52-8c0b-f8f1821b8981</EncounterId>
<InvoiceId>ed772fed-5bd4-408d-babb-728d0e692447</InvoiceId>
<PracticeId>c5d4fcc3-573a-4388-be09-8812d095a4ed</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2025-12-14T16:34:00.7497363+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
</ArrayOfInvoiceSendingStatusVo>