GET api/PatientFamilyHistoryUpdates?patientFamilyHistoryProblemUpdateRequestId={patientFamilyHistoryProblemUpdateRequestId}&patientFamilyHistoryProblemId={patientFamilyHistoryProblemId}
Returns a patient family history.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| patientFamilyHistoryProblemUpdateRequestId |
Unique ID of patient family history update request. |
integer |
None. |
| patientFamilyHistoryProblemId |
Unique ID of patient family history. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
PatientFamilyHistoryRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientFamilyHistoryProblemUpdateRequestId |
Unique ID of patient family history update request. |
integer |
None. |
| Created |
Date of update request. |
string |
None. |
| PatientName |
Name of the patient. |
string |
None. |
| FamilyHistoryProblemId |
Unique ID of family history problem. |
integer |
None. |
| FamilyHistoryProblemName |
Name of the family history problem. |
string |
None. |
| FamilyHistoryRelationshipId |
Unique ID of relationship of family history. |
integer |
None. |
| FamilyHistoryRelationshipName |
Name of relationship of family history. |
string |
None. |
| Comments |
Comments for family history update request. |
string |
None. |
| Operation |
Status of the family history update request. Possible values: Unchanged, Added, Updated, Deleted. |
string |
None. |
| PatientFamilyHistoryProblemId |
Unique ID of patient's family history problem. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientFamilyHistoryProblemUpdateRequestId": 1,
"Created": "sample string 1",
"PatientName": "sample string 2",
"FamilyHistoryProblemId": 1,
"FamilyHistoryProblemName": "sample string 3",
"FamilyHistoryRelationshipId": 1,
"FamilyHistoryRelationshipName": "sample string 4",
"Comments": "sample string 5",
"Operation": "sample string 6",
"PatientFamilyHistoryProblemId": 1
}
application/xml, text/xml
Sample:
<PatientFamilyHistoryRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientFamilyHistories"> <Comments>sample string 5</Comments> <Created>sample string 1</Created> <FamilyHistoryProblemId>1</FamilyHistoryProblemId> <FamilyHistoryProblemName>sample string 3</FamilyHistoryProblemName> <FamilyHistoryRelationshipId>1</FamilyHistoryRelationshipId> <FamilyHistoryRelationshipName>sample string 4</FamilyHistoryRelationshipName> <Operation>sample string 6</Operation> <PatientFamilyHistoryProblemId>1</PatientFamilyHistoryProblemId> <PatientFamilyHistoryProblemUpdateRequestId>1</PatientFamilyHistoryProblemUpdateRequestId> <PatientName>sample string 2</PatientName> </PatientFamilyHistoryRequestModel>