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": "2cf31ff2-1355-4af2-a23e-79413dee0ab7",
"EncounterId": "1a2f22a2-3231-4eac-94d1-7f025c75b8ee",
"InvoiceId": "e1f7c8ca-c6b5-404f-b33a-0021a43b8671",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2026-05-24T15:08:21Z",
"SendingAttempts": 8,
"SendingType": "sample string 9"
},
{
"PracticeId": "2cf31ff2-1355-4af2-a23e-79413dee0ab7",
"EncounterId": "1a2f22a2-3231-4eac-94d1-7f025c75b8ee",
"InvoiceId": "e1f7c8ca-c6b5-404f-b33a-0021a43b8671",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2026-05-24T15:08:21Z",
"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>1a2f22a2-3231-4eac-94d1-7f025c75b8ee</EncounterId>
<InvoiceId>e1f7c8ca-c6b5-404f-b33a-0021a43b8671</InvoiceId>
<PracticeId>2cf31ff2-1355-4af2-a23e-79413dee0ab7</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2026-05-24T15:08:21.6401726+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
<InvoiceSendingStatusVo>
<EncounterId>1a2f22a2-3231-4eac-94d1-7f025c75b8ee</EncounterId>
<InvoiceId>e1f7c8ca-c6b5-404f-b33a-0021a43b8671</InvoiceId>
<PracticeId>2cf31ff2-1355-4af2-a23e-79413dee0ab7</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2026-05-24T15:08:21.6401726+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
</ArrayOfInvoiceSendingStatusVo>