GET Patient/ByCriteria?patientUuid={patientUuid}
Gets the patient criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| patientUuid |
The patient UUID. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PatientCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ExternalPatientId |
ExternalPatientID |
string |
None. |
| PersonalId |
Personal ID |
string |
None. |
| InternalPatientUid |
Internal Patient ID |
string |
None. |
| LastName |
LastName |
string |
None. |
| FirstName |
FirstName |
string |
None. |
| MiddleName |
MiddleName |
string |
None. |
| SuffixName |
SuffixName Color |
string |
None. |
| AliasPatientName |
AliasPatientName |
string |
None. |
| LocaleIndependentDob |
LocaleIndependentDOB |
string |
None. |
| gender |
gender |
string |
None. |
| Race |
race |
string |
None. |
| HomePhone |
homePhone |
string |
None. |
| WorkPhone |
workPhone |
string |
None. |
| StreetAddress |
streetAddress |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExternalPatientId": "sample string 1",
"PersonalId": "sample string 2",
"InternalPatientUid": "sample string 3",
"LastName": "sample string 4",
"FirstName": "sample string 5",
"MiddleName": "sample string 6",
"SuffixName": "sample string 7",
"AliasPatientName": "sample string 8",
"LocaleIndependentDob": "sample string 9",
"gender": "sample string 10",
"Race": "sample string 11",
"HomePhone": "sample string 12",
"WorkPhone": "sample string 13",
"StreetAddress": "sample string 14"
}
application/xml, text/xml
Sample:
<PatientCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Patient"> <AliasPatientName>sample string 8</AliasPatientName> <ExternalPatientId>sample string 1</ExternalPatientId> <FirstName>sample string 5</FirstName> <HomePhone>sample string 12</HomePhone> <InternalPatientUid>sample string 3</InternalPatientUid> <LastName>sample string 4</LastName> <LocaleIndependentDob>sample string 9</LocaleIndependentDob> <MiddleName>sample string 6</MiddleName> <PersonalId>sample string 2</PersonalId> <Race>sample string 11</Race> <StreetAddress>sample string 14</StreetAddress> <SuffixName>sample string 7</SuffixName> <WorkPhone>sample string 13</WorkPhone> <gender>sample string 10</gender> </PatientCriteriaDto>