POST api/ProviderService/SearchDocumentsByPatient
Search Documents By Patient
Request Information
URI Parameters
None.
Body Parameters
document Search Filter
DocumentSearchFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| DocumentName |
Document Name |
string |
None. |
| PatientID |
Patient ID |
globally unique identifier |
None. |
| DocLabelID |
Doc Label ID |
integer |
None. |
| PracticeID |
Practice ID |
globally unique identifier |
None. |
| ProviderID |
Provider ID |
globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"DocumentName": "sample string 1",
"PatientID": "50ee8b19-5f31-41dc-97a4-fb3ed1adce4d",
"DocLabelID": 1,
"PracticeID": "2435c65c-6179-4db3-82a3-efa754082779",
"ProviderID": "9ffb68bb-c29d-46bd-b312-1af34cd4bab1"
}
application/xml, text/xml
Sample:
<DocumentSearchFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbsoluteHealth.API.Models"> <DocLabelID>1</DocLabelID> <DocumentName>sample string 1</DocumentName> <PatientID>50ee8b19-5f31-41dc-97a4-fb3ed1adce4d</PatientID> <PracticeID>2435c65c-6179-4db3-82a3-efa754082779</PracticeID> <ProviderID>9ffb68bb-c29d-46bd-b312-1af34cd4bab1</ProviderID> </DocumentSearchFilter>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of vwDocumentsByPatient| Name | Description | Type | Additional information |
|---|---|---|---|
| DocumentFile_Id | integer |
None. |
|
| Name | string |
None. |
|
| NameOriginal | string |
None. |
|
| LabelName | string |
None. |
|
| Patient_Id | globally unique identifier |
None. |
|
| Full_Name | string |
None. |
|
| Practice_Id | globally unique identifier |
None. |
|
| DateCreated | date |
None. |
|
| Entity_Id | globally unique identifier |
None. |
|
| Document_Label_Id | integer |
None. |
|
| Account_Type_Id | integer |
None. |
|
| FileContent_Type_Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DocumentFile_Id": 1,
"Name": "sample string 2",
"NameOriginal": "sample string 3",
"LabelName": "sample string 4",
"Patient_Id": "a62e0415-b51a-4ab0-907f-17597f843103",
"Full_Name": "sample string 6",
"Practice_Id": "fd7cbe08-e2d5-4002-a45f-d0f0ed455e34",
"DateCreated": "2025-12-14T08:52:48.102715+00:00",
"Entity_Id": "401a7501-4fc6-4312-809b-d28eac331fc9",
"Document_Label_Id": 1,
"Account_Type_Id": 1,
"FileContent_Type_Id": 1
},
{
"DocumentFile_Id": 1,
"Name": "sample string 2",
"NameOriginal": "sample string 3",
"LabelName": "sample string 4",
"Patient_Id": "a62e0415-b51a-4ab0-907f-17597f843103",
"Full_Name": "sample string 6",
"Practice_Id": "fd7cbe08-e2d5-4002-a45f-d0f0ed455e34",
"DateCreated": "2025-12-14T08:52:48.102715+00:00",
"Entity_Id": "401a7501-4fc6-4312-809b-d28eac331fc9",
"Document_Label_Id": 1,
"Account_Type_Id": 1,
"FileContent_Type_Id": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfvwDocumentsByPatient xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRDomainClasses">
<vwDocumentsByPatient>
<Account_Type_Id>1</Account_Type_Id>
<DateCreated>2025-12-14T08:52:48.102715+00:00</DateCreated>
<DocumentFile_Id>1</DocumentFile_Id>
<Document_Label_Id>1</Document_Label_Id>
<Entity_Id>401a7501-4fc6-4312-809b-d28eac331fc9</Entity_Id>
<FileContent_Type_Id>1</FileContent_Type_Id>
<Full_Name>sample string 6</Full_Name>
<LabelName>sample string 4</LabelName>
<Name>sample string 2</Name>
<NameOriginal>sample string 3</NameOriginal>
<Patient_Id>a62e0415-b51a-4ab0-907f-17597f843103</Patient_Id>
<Practice_Id>fd7cbe08-e2d5-4002-a45f-d0f0ed455e34</Practice_Id>
</vwDocumentsByPatient>
<vwDocumentsByPatient>
<Account_Type_Id>1</Account_Type_Id>
<DateCreated>2025-12-14T08:52:48.102715+00:00</DateCreated>
<DocumentFile_Id>1</DocumentFile_Id>
<Document_Label_Id>1</Document_Label_Id>
<Entity_Id>401a7501-4fc6-4312-809b-d28eac331fc9</Entity_Id>
<FileContent_Type_Id>1</FileContent_Type_Id>
<Full_Name>sample string 6</Full_Name>
<LabelName>sample string 4</LabelName>
<Name>sample string 2</Name>
<NameOriginal>sample string 3</NameOriginal>
<Patient_Id>a62e0415-b51a-4ab0-907f-17597f843103</Patient_Id>
<Practice_Id>fd7cbe08-e2d5-4002-a45f-d0f0ed455e34</Practice_Id>
</vwDocumentsByPatient>
</ArrayOfvwDocumentsByPatient>