curl --request GET \
--url https://app.enzo.health/api/v1/patient/{patientId} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"name": "<string>",
"firstname": "<string>",
"middlename": "<string>",
"lastname": "<string>",
"email": "<string>",
"suffix": "<string>",
"image": "<string>",
"dob": "<string>",
"deceased": true,
"sex": "<string>",
"fmrn": "<string>",
"omrn": "<string>",
"ssn": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"stateZIP": "<string>",
"county": "<string>",
"aptNumber": "<string>",
"phone": "<string>",
"homePhone": "<string>",
"workPhone": "<string>",
"cellPhone": "<string>",
"fax": "<string>",
"language": "<string>",
"locationType": "HOME",
"residenceType": "HOME",
"residenceName": "<string>",
"timezone": "EST",
"physician": "<string>",
"admissionSource": "NON_HEALTH_CARE_FACILITY",
"insuranceProvider": "<string>",
"medicareNumber": "<string>",
"medicaidNumber": "<string>",
"creationMode": "MANUAL",
"ingestionStatus": "NOT_STARTED",
"ingestionPipelineId": "<string>",
"record": "CAREGIVER",
"stage": "LEAD",
"organizationId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"surgeContactId": "<string>",
"attachments": [
{
"id": "<string>",
"version": 123,
"filename": "<string>",
"description": "<string>",
"key": "<string>",
"size": 123,
"mimeType": "<string>",
"objectPath": "<string>",
"organizationId": "<string>",
"patientId": "<string>",
"jobId": "<string>",
"uploadedById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
curl --request GET \
--url https://app.enzo.health/api/v1/patient/{patientId} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"name": "<string>",
"firstname": "<string>",
"middlename": "<string>",
"lastname": "<string>",
"email": "<string>",
"suffix": "<string>",
"image": "<string>",
"dob": "<string>",
"deceased": true,
"sex": "<string>",
"fmrn": "<string>",
"omrn": "<string>",
"ssn": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"stateZIP": "<string>",
"county": "<string>",
"aptNumber": "<string>",
"phone": "<string>",
"homePhone": "<string>",
"workPhone": "<string>",
"cellPhone": "<string>",
"fax": "<string>",
"language": "<string>",
"locationType": "HOME",
"residenceType": "HOME",
"residenceName": "<string>",
"timezone": "EST",
"physician": "<string>",
"admissionSource": "NON_HEALTH_CARE_FACILITY",
"insuranceProvider": "<string>",
"medicareNumber": "<string>",
"medicaidNumber": "<string>",
"creationMode": "MANUAL",
"ingestionStatus": "NOT_STARTED",
"ingestionPipelineId": "<string>",
"record": "CAREGIVER",
"stage": "LEAD",
"organizationId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"surgeContactId": "<string>",
"attachments": [
{
"id": "<string>",
"version": 123,
"filename": "<string>",
"description": "<string>",
"key": "<string>",
"size": 123,
"mimeType": "<string>",
"objectPath": "<string>",
"organizationId": "<string>",
"patientId": "<string>",
"jobId": "<string>",
"uploadedById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object
.