GET api/ProviderService/GetPatientInvoiceList?practiceID={practiceID}&patientID={patientID}
Get Patient Invoice List
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| practiceID | globally unique identifier |
Required |
|
| patientID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InvoiceViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionType_Id | integer |
None. |
|
| Invoice_Id | globally unique identifier |
None. |
|
| Invoice_Date | date |
None. |
|
| Invoice_Number | string |
None. |
|
| Total_Invoice | decimal number |
None. |
|
| Balance | decimal number |
None. |
|
| Practice_Id | globally unique identifier |
None. |
|
| Provider_Id | globally unique identifier |
None. |
|
| Patient_Id | globally unique identifier |
None. |
|
| Practice_Name | string |
None. |
|
| Provider_Name | string |
None. |
|
| Patient_Name | string |
None. |
|
| InvoiceTypeID | InvoiceTypes |
None. |
|
| Status | string |
None. |
|
| Note | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TransactionType_Id": 1,
"Invoice_Id": "642b9c91-952f-4717-ae44-a255ca28f409",
"Invoice_Date": "2026-02-04T02:19:28.6579031+00:00",
"Invoice_Number": "sample string 3",
"Total_Invoice": 1.0,
"Balance": 4.0,
"Practice_Id": "1b449c35-f269-40e6-a807-3754cc9651ea",
"Provider_Id": "9744e5cb-9128-4bb1-be03-3d80c83af5bb",
"Patient_Id": "8c3ca093-341e-4cec-bc73-09b1c5fd9df0",
"Practice_Name": "sample string 7",
"Provider_Name": "sample string 8",
"Patient_Name": "sample string 9",
"InvoiceTypeID": 0,
"Status": "sample string 10",
"Note": "sample string 11"
},
{
"TransactionType_Id": 1,
"Invoice_Id": "642b9c91-952f-4717-ae44-a255ca28f409",
"Invoice_Date": "2026-02-04T02:19:28.6579031+00:00",
"Invoice_Number": "sample string 3",
"Total_Invoice": 1.0,
"Balance": 4.0,
"Practice_Id": "1b449c35-f269-40e6-a807-3754cc9651ea",
"Provider_Id": "9744e5cb-9128-4bb1-be03-3d80c83af5bb",
"Patient_Id": "8c3ca093-341e-4cec-bc73-09b1c5fd9df0",
"Practice_Name": "sample string 7",
"Provider_Name": "sample string 8",
"Patient_Name": "sample string 9",
"InvoiceTypeID": 0,
"Status": "sample string 10",
"Note": "sample string 11"
}
]
application/xml, text/xml
Sample:
<ArrayOfInvoiceViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">
<InvoiceViewModel>
<Balance>4</Balance>
<InvoiceTypeID>Paid</InvoiceTypeID>
<Invoice_Date>2026-02-04T02:19:28.6579031+00:00</Invoice_Date>
<Invoice_Id>642b9c91-952f-4717-ae44-a255ca28f409</Invoice_Id>
<Invoice_Number>sample string 3</Invoice_Number>
<Note>sample string 11</Note>
<Patient_Id>8c3ca093-341e-4cec-bc73-09b1c5fd9df0</Patient_Id>
<Patient_Name>sample string 9</Patient_Name>
<Practice_Id>1b449c35-f269-40e6-a807-3754cc9651ea</Practice_Id>
<Practice_Name>sample string 7</Practice_Name>
<Provider_Id>9744e5cb-9128-4bb1-be03-3d80c83af5bb</Provider_Id>
<Provider_Name>sample string 8</Provider_Name>
<Status>sample string 10</Status>
<Total_Invoice>1</Total_Invoice>
<TransactionType_Id>1</TransactionType_Id>
</InvoiceViewModel>
<InvoiceViewModel>
<Balance>4</Balance>
<InvoiceTypeID>Paid</InvoiceTypeID>
<Invoice_Date>2026-02-04T02:19:28.6579031+00:00</Invoice_Date>
<Invoice_Id>642b9c91-952f-4717-ae44-a255ca28f409</Invoice_Id>
<Invoice_Number>sample string 3</Invoice_Number>
<Note>sample string 11</Note>
<Patient_Id>8c3ca093-341e-4cec-bc73-09b1c5fd9df0</Patient_Id>
<Patient_Name>sample string 9</Patient_Name>
<Practice_Id>1b449c35-f269-40e6-a807-3754cc9651ea</Practice_Id>
<Practice_Name>sample string 7</Practice_Name>
<Provider_Id>9744e5cb-9128-4bb1-be03-3d80c83af5bb</Provider_Id>
<Provider_Name>sample string 8</Provider_Name>
<Status>sample string 10</Status>
<Total_Invoice>1</Total_Invoice>
<TransactionType_Id>1</TransactionType_Id>
</InvoiceViewModel>
</ArrayOfInvoiceViewModel>