Epi-Management API
GetPatientDemographic
-
This api is used to get the patient demographic information.
The access token received in the previous api call should be used here.
POST
https://neregaws.epilepsygroup.com/nereg.prod/rest/GetPatientDemographic
-
HEADERS
Content-Typeapplication/json
Accept-Encodingapplication/gzip
Content-Typeapplication/x-www-form-urlencoded
-
BODY Raw
{
"token": "xxxxxx-xxxx-xxxx-xxxx-xxxxx"
} -
Example Request
curl --location --request POST 'https://neregaws.epilepsygroup.com/nereg.prod/rest/GetPatientDemographic' \
--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",
}
' -
Response
200
Body
{ "PatientDemographicResponse": { "PatientDemographic": [ { "patientRoleObj": { "additionalethnicGroupCode": "", "additionalethnicGroupCodeDisplayName": "", "additionalgranularRace": "", "additionalgranularRacecode": "", "additionalgranularethnicGroupCode": "", "additionalgranularethnicGroupCodeDisplayName": "", "additionalrace": "", "additionalraceCode": "", "administrativeGenderCode": "F", "administrativeGenderDisplayName": "Female", "birthPlaceAddress": { "city": "", "country": "", "mobile": "", "name": "", "phone": "", "postalCode": "", "state": "", "streetAddressLine": "" }, "birthTime": "19700501", "ethnicGroupCode": "2186-5", "ethnicGroupCodeDisplayName": "Not Hispanic or Latino", "granularRace": "European", "granularRacecode": "2108-9", "granularethnicGroupCode": "", "granularethnicGroupCodeDisplayName": "", "languageCommunication": "en", "languageCommunicationDisplayname": "English", "languageCommunicationModeCodeCode": "", "languageCommunicationModeCodeDisplayName": "", "languageCommunicationPreferenceInd": "", "maritalStatusCode": "", "maritalStatusDisplayName": "", "mrn": " 124011", "patientAddress": { "city": "Beaverton", "country": "US", "email": "@", "mobile": "(555)777-0000", "name": "", "phone": "(555)723-0000", "postalCode": "97006", "state": "OR", "streetAddressLine": "0000, Amber Dr," }, "patientFamilyName": "FamilyName", "patientFirstName": "FirstName", "patientGivenName": "", "patientHealthVaultID": "", "patientMiddleName": "", "patientPrefix": "", "patientPreviousAddress": { "city": "", "country": "", "mobile": "", "name": "", "phone": "", "postalCode": "", "state": "", "streetAddressLine": "" }, "patientPreviousName": "", "patientSuffix": "", "race": "White", "raceCode": "2106-3", "religiousAffiliationCodeCode": "", "religiousAffiliationCodeDisplayName": "", "telecom": "" } } ], "Response": { "error": "", "status": "OK" } } }