Epi-Management API
GetEncounterClinicalNotes
-
This api is used to get data for the encounter clinical notes.
The access token needs to be sent in this api call. Other parameters that can be seen in the headers section here are optional.
POST
https://neregaws.epilepsygroup.com/nereg.prod/rest/GetEncounterClinicalNotes
-
HEADERS
Content-Typeapplication/json
Accept-Encodingapplication/gzip
Content-Typeapplication/x-www-form-urlencoded
-
BODY Raw
{
"token": "xxxxxx-xxxx-xxxx-xxxx-xxxxx",
"encounterid": "",
"fromdate": "",
"todate": ""
} -
Example Request
curl --location --request POST 'https://neregaws.epilepsygroup.com/nereg.prod/rest/GetEncounterClinicalNotes' \
--header 'Content-Type: application/json' \
--header 'Accept-Encoding: application/gzip' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Cookie: AWSALB=YHDNYRKt7lIb3JtCKytbrGQhffjcsblPVeiVNK56ItxCZvNWrMvbWu4gPCjrYDJVGF1V74Rgx/u7fBSGozIsqP/m/oqGCNSNQ50MU8RI9+NfiOoNkTlDtgeFFSGC; AWSALBCORS=YHDNYRKt7lIb3JtCKytbrGQhffjcsblPVeiVNK56ItxCZvNWrMvbWu4gPCjrYDJVGF1V74Rgx/u7fBSGozIsqP/m/oqGCNSNQ50MU8RI9+NfiOoNkTlDtgeFFSGC' \
--data-raw '{
"token":"xxxxxx-xxxx-xxxx-xxxx-xxxxx",
"encounterid":"",
"fromdate":"",
"todate":""
}
' -
Response
200
Body
{ "ClinicalNotesResponse": { "ClinicalNotes": [ { "ClinicalNotesObj": [ { "author": { "familyName": "MD-FamilyName", "givenName": "MD-GivenName", "prefix": "M.D.", "providerid": "475", "visitDate": "20150622143200-0500" }, "clinicalnotetypeobj": "ProcedureNote", "note": "Dr MD-GivenName MD-FamilyName examined Ms PatientName and found that the pacemaker is operating properly and the \nbreathlessness is due to high fever and anxiety.\n" }, { "author": { "familyName": "MD-FamilyName", "givenName": "MD-GivenName", "prefix": "M.D.", "providerid": "475", "visitDate": "20150622151700-0500" }, "clinicalnotetypeobj": "LaboratoryNarrativeNote", "note": "Ms PatientName was tested for the Urinanalysis macro panel and the results have been found to be normal." }, { "author": { "familyName": "MD-FamilyName", "givenName": "MD-GivenName", "prefix": "M.D.", "providerid": "475", "visitDate": "20150622203900-0500" }, "clinicalnotetypeobj": "ProgressNote", "note": "Ms PatientName seems to be developing high fever and hence we recommend her to get admitted to a nearby hospital using the provided referral." } ], "EncounterData": { "EffectiveDateTime": "2015-06-22T11:00:00", "ID": "979" } } ], "Response": { "error": "", "status": "OK" } } }