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": "a44c2d6e-b0c8-4c4d-bebc-046b25cfa926",
"EncounterId": "3ecfa56b-78e3-417e-829c-0ebe0e46a352",
"InvoiceId": "fe95c8f4-4db1-403b-b2ef-ee42e108a649",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2025-11-24T14:40:35Z",
"SendingAttempts": 8,
"SendingType": "sample string 9"
},
{
"PracticeId": "a44c2d6e-b0c8-4c4d-bebc-046b25cfa926",
"EncounterId": "3ecfa56b-78e3-417e-829c-0ebe0e46a352",
"InvoiceId": "fe95c8f4-4db1-403b-b2ef-ee42e108a649",
"Reason": "sample string 4",
"Status": "sample string 5",
"System": "sample string 6",
"SendingTime": "2025-11-24T14:40:35Z",
"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>3ecfa56b-78e3-417e-829c-0ebe0e46a352</EncounterId>
<InvoiceId>fe95c8f4-4db1-403b-b2ef-ee42e108a649</InvoiceId>
<PracticeId>a44c2d6e-b0c8-4c4d-bebc-046b25cfa926</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2025-11-24T14:40:35.7644665+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
<InvoiceSendingStatusVo>
<EncounterId>3ecfa56b-78e3-417e-829c-0ebe0e46a352</EncounterId>
<InvoiceId>fe95c8f4-4db1-403b-b2ef-ee42e108a649</InvoiceId>
<PracticeId>a44c2d6e-b0c8-4c4d-bebc-046b25cfa926</PracticeId>
<Reason>sample string 4</Reason>
<SendingAttempts>8</SendingAttempts>
<SendingTime>2025-11-24T14:40:35.7644665+02:00</SendingTime>
<SendingType>sample string 9</SendingType>
<Status>sample string 5</Status>
<System>sample string 6</System>
</InvoiceSendingStatusVo>
</ArrayOfInvoiceSendingStatusVo>