GET api/Patients/ProgressNotes?EncId={EncId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
EncId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ProgressNotesModelName | Description | Type | Additional information |
---|---|---|---|
ProgressNote | Collection of ProgressNotesView |
None. |
Response Formats
application/json, text/json
Sample:
{ "ProgressNote": [ { "EncId": 1, "ProgressNote": "sample string 2", "CreatedBy": "sample string 3", "CreatedDate": "sample string 4" }, { "EncId": 1, "ProgressNote": "sample string 2", "CreatedBy": "sample string 3", "CreatedDate": "sample string 4" } ] }
text/html
Sample:
{"ProgressNote":[{"EncId":1,"ProgressNote":"sample string 2","CreatedBy":"sample string 3","CreatedDate":"sample string 4"},{"EncId":1,"ProgressNote":"sample string 2","CreatedBy":"sample string 3","CreatedDate":"sample string 4"}]}
application/xml, text/xml
Sample:
<EMRPatientNotesSavingViewModel.ProgressNotesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AsterHISInfoAPIv2.Models"> <ProgressNote> <EMRPatientNotesSavingViewModel.ProgressNotesView> <CreatedBy>sample string 3</CreatedBy> <CreatedDate>sample string 4</CreatedDate> <EncId>1</EncId> <ProgressNote>sample string 2</ProgressNote> </EMRPatientNotesSavingViewModel.ProgressNotesView> <EMRPatientNotesSavingViewModel.ProgressNotesView> <CreatedBy>sample string 3</CreatedBy> <CreatedDate>sample string 4</CreatedDate> <EncId>1</EncId> <ProgressNote>sample string 2</ProgressNote> </EMRPatientNotesSavingViewModel.ProgressNotesView> </ProgressNote> </EMRPatientNotesSavingViewModel.ProgressNotesModel>