GET api/v1/{practiceId}/clinical/pathologyreportworkflows/{workflowId}

Get pathology report workflow

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceId

practice id

globally unique identifier

Required

workflowId

pathology report workflow id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PathologyReportWorkflowVo
NameDescriptionTypeAdditional information
PathologyReportWorkflowId

globally unique identifier

None.

PathologyReportId

globally unique identifier

None.

WorkflowStatusType

Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PathologyReportWorkflowStatusType

None.

PatientName

string

None.

PatientContactNo

string

None.

Departments

string

None.

ReceivedDate

date

None.

PatientDateOfBirth

date

None.

OriginalMessage

string

None.

ReportLabName

string

None.

PatientIds

Collection of globally unique identifier

None.

PrimaryProviderId

globally unique identifier

None.

PracticeId

globally unique identifier

None.

DoctorName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "PathologyReportWorkflowId": "5095c418-743e-43be-ab07-105932f21fef",
  "PathologyReportId": "7811640a-dd3a-4f5d-a9ec-3fcb1a79f238",
  "WorkflowStatusType": 0,
  "PatientName": "sample string 3",
  "PatientContactNo": "sample string 4",
  "Departments": "sample string 5",
  "ReceivedDate": "2025-04-21T18:42:17Z",
  "PatientDateOfBirth": "2025-04-21T18:42:17Z",
  "OriginalMessage": "sample string 8",
  "ReportLabName": "sample string 9",
  "PatientIds": [
    "6bb1e11e-c3c1-4691-bfc3-a86037cfb102",
    "2a2cb18f-f6c1-42a5-a460-d04b8e79dc3c"
  ],
  "PrimaryProviderId": "521254fd-35c0-48f4-856f-b90ae86a6594",
  "PracticeId": "0f062b47-9954-45b9-8acc-25ba6938e86e",
  "DoctorName": "sample string 12"
}

application/xml, text/xml

Sample:
<PathologyReportWorkflowVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects">
  <Departments>sample string 5</Departments>
  <DoctorName>sample string 12</DoctorName>
  <OriginalMessage>sample string 8</OriginalMessage>
  <PathologyReportId>7811640a-dd3a-4f5d-a9ec-3fcb1a79f238</PathologyReportId>
  <PathologyReportWorkflowId>5095c418-743e-43be-ab07-105932f21fef</PathologyReportWorkflowId>
  <PatientContactNo>sample string 4</PatientContactNo>
  <PatientDateOfBirth>2025-04-21T18:42:17.671689+02:00</PatientDateOfBirth>
  <PatientIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>6bb1e11e-c3c1-4691-bfc3-a86037cfb102</d2p1:guid>
    <d2p1:guid>2a2cb18f-f6c1-42a5-a460-d04b8e79dc3c</d2p1:guid>
  </PatientIds>
  <PatientName>sample string 3</PatientName>
  <PracticeId>0f062b47-9954-45b9-8acc-25ba6938e86e</PracticeId>
  <PrimaryProviderId>521254fd-35c0-48f4-856f-b90ae86a6594</PrimaryProviderId>
  <ReceivedDate>2025-04-21T18:42:17.671689+02:00</ReceivedDate>
  <ReportLabName>sample string 9</ReportLabName>
  <WorkflowStatusType>Open</WorkflowStatusType>
</PathologyReportWorkflowVo>