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": "1da7bd0f-a020-4dfd-974f-d000bcd2262c",
"Invoice_Date": "2025-12-14T08:56:02.6352707+00:00",
"Invoice_Number": "sample string 3",
"Total_Invoice": 1.0,
"Balance": 4.0,
"Practice_Id": "e7104024-a21b-41bc-b631-205d26cf8cb3",
"Provider_Id": "fc434f3e-0363-4ff7-a545-58890f207d1f",
"Patient_Id": "c8d0b02c-f949-4c97-ae4b-a2cef4519193",
"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": "1da7bd0f-a020-4dfd-974f-d000bcd2262c",
"Invoice_Date": "2025-12-14T08:56:02.6352707+00:00",
"Invoice_Number": "sample string 3",
"Total_Invoice": 1.0,
"Balance": 4.0,
"Practice_Id": "e7104024-a21b-41bc-b631-205d26cf8cb3",
"Provider_Id": "fc434f3e-0363-4ff7-a545-58890f207d1f",
"Patient_Id": "c8d0b02c-f949-4c97-ae4b-a2cef4519193",
"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>2025-12-14T08:56:02.6352707+00:00</Invoice_Date>
<Invoice_Id>1da7bd0f-a020-4dfd-974f-d000bcd2262c</Invoice_Id>
<Invoice_Number>sample string 3</Invoice_Number>
<Note>sample string 11</Note>
<Patient_Id>c8d0b02c-f949-4c97-ae4b-a2cef4519193</Patient_Id>
<Patient_Name>sample string 9</Patient_Name>
<Practice_Id>e7104024-a21b-41bc-b631-205d26cf8cb3</Practice_Id>
<Practice_Name>sample string 7</Practice_Name>
<Provider_Id>fc434f3e-0363-4ff7-a545-58890f207d1f</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>2025-12-14T08:56:02.6352707+00:00</Invoice_Date>
<Invoice_Id>1da7bd0f-a020-4dfd-974f-d000bcd2262c</Invoice_Id>
<Invoice_Number>sample string 3</Invoice_Number>
<Note>sample string 11</Note>
<Patient_Id>c8d0b02c-f949-4c97-ae4b-a2cef4519193</Patient_Id>
<Patient_Name>sample string 9</Patient_Name>
<Practice_Id>e7104024-a21b-41bc-b631-205d26cf8cb3</Practice_Id>
<Practice_Name>sample string 7</Practice_Name>
<Provider_Id>fc434f3e-0363-4ff7-a545-58890f207d1f</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>