GET api/v1/{practiceId}/clinical/pathologyreports/{searchText}

Get PathologyReports matched by search criteria (patient name, received from, etc)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceId

practice id for which pathology reports belongs too

globally unique identifier

Required

searchText

search text

string

Required

Body Parameters

None.

Response Information

Resource Description

array of pathology reports filtered by provided criteria

Collection of Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PatientPathologyResultsIndexVo
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

TenantId

globally unique identifier

None.

PatientFullName

string

None.

PatientDateOfBirth

date

None.

Departments

string

None.

PatientReportId

globally unique identifier

None.

ReportDate

date

None.

ReportType

string

None.

PathLab

string

None.

ReportXRef

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "0db3cd9a-16df-459b-b9f1-94d27dd16380",
    "TenantId": "c1c367a4-3e09-443a-a600-7c15bc655132",
    "PatientFullName": "sample string 3",
    "PatientDateOfBirth": "2025-04-16T04:32:19Z",
    "Departments": "sample string 5",
    "PatientReportId": "ade67f63-6b1e-48fd-965a-cfeeac65ef70",
    "ReportDate": "2025-04-16T04:32:19Z",
    "ReportType": "sample string 8",
    "PathLab": "sample string 9",
    "ReportXRef": "sample string 10"
  },
  {
    "Id": "0db3cd9a-16df-459b-b9f1-94d27dd16380",
    "TenantId": "c1c367a4-3e09-443a-a600-7c15bc655132",
    "PatientFullName": "sample string 3",
    "PatientDateOfBirth": "2025-04-16T04:32:19Z",
    "Departments": "sample string 5",
    "PatientReportId": "ade67f63-6b1e-48fd-965a-cfeeac65ef70",
    "ReportDate": "2025-04-16T04:32:19Z",
    "ReportType": "sample string 8",
    "PathLab": "sample string 9",
    "ReportXRef": "sample string 10"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPatientPathologyResultsIndexVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects">
  <PatientPathologyResultsIndexVo>
    <Departments>sample string 5</Departments>
    <Id>0db3cd9a-16df-459b-b9f1-94d27dd16380</Id>
    <PathLab>sample string 9</PathLab>
    <PatientDateOfBirth>2025-04-16T04:32:19.4824037+02:00</PatientDateOfBirth>
    <PatientFullName>sample string 3</PatientFullName>
    <PatientReportId>ade67f63-6b1e-48fd-965a-cfeeac65ef70</PatientReportId>
    <ReportDate>2025-04-16T04:32:19.4824037+02:00</ReportDate>
    <ReportType>sample string 8</ReportType>
    <ReportXRef>sample string 10</ReportXRef>
    <TenantId>c1c367a4-3e09-443a-a600-7c15bc655132</TenantId>
  </PatientPathologyResultsIndexVo>
  <PatientPathologyResultsIndexVo>
    <Departments>sample string 5</Departments>
    <Id>0db3cd9a-16df-459b-b9f1-94d27dd16380</Id>
    <PathLab>sample string 9</PathLab>
    <PatientDateOfBirth>2025-04-16T04:32:19.4824037+02:00</PatientDateOfBirth>
    <PatientFullName>sample string 3</PatientFullName>
    <PatientReportId>ade67f63-6b1e-48fd-965a-cfeeac65ef70</PatientReportId>
    <ReportDate>2025-04-16T04:32:19.4824037+02:00</ReportDate>
    <ReportType>sample string 8</ReportType>
    <ReportXRef>sample string 10</ReportXRef>
    <TenantId>c1c367a4-3e09-443a-a600-7c15bc655132</TenantId>
  </PatientPathologyResultsIndexVo>
</ArrayOfPatientPathologyResultsIndexVo>