Patients
Search patients
Getting Started
Workflow
Processors
Organizations
Patients
Voice Notes
Transcripts
- GETGet paginated finalized sentences for a voice note
- GETFetch details for multiple finalized sentences
- POSTSearch sentences by embedding
- POSTSave voice note audio
- POSTGenerate audio upload URL
- GETGenerate presigned voice note audio URL
- GETGet list of questions to check in transcripts
- GETGet the answered status of predefined questions for a voice note
Survey
Visits
Patients
Search patients
GET
/
v1
/
patients
/
search
curl --request GET \
--url https://app.enzo.health/api/v1/patients/search \
--header 'Authorization: Bearer <token>'
{
"patients": [
{
"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>",
"representative": {
"id": "<string>",
"patientId": "<string>",
"firstname": "<string>",
"lastname": "<string>",
"relationship": "SPOUSE",
"email": "<string>",
"samePatientAddress": true,
"address": "<string>",
"city": "<string>",
"state": "<string>",
"stateZIP": "<string>",
"phone": "<string>",
"language": "<string>",
"legallyAuthorized": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Available options:
id
, id
, name
, firstname
, middlename
, lastname
, email
, suffix
, image
, dob
, deceased
, sex
, fmrn
, omrn
, ssn
, address
, city
, state
, stateZIP
, county
, aptNumber
, phone
, homePhone
, workPhone
, cellPhone
, fax
, language
, locationType
, residenceType
, residenceName
, timezone
, physician
, admissionSource
, insuranceProvider
, medicareNumber
, medicaidNumber
, creationMode
, ingestionStatus
, ingestionPipelineId
, record
, stage
, organizationId
, createdAt
, updatedAt
, surgeContactId
Available options:
asc
, desc
Response
200
application/json
Successful response
Available options:
CAREGIVER
, PATIENT
, OTHER
Available options:
HOME
, ASSISTED_FACILITY
, OTHER
Available options:
HOME
, SNF
, NF
, ASSISTED_FACILITY
Available options:
EST
, CST
, MST
, PST
, AST
, HST
, AK
Available options:
NON_HEALTH_CARE_FACILITY
, CLINIC
, HOSPITAL
, SNF
, HEALTH_CARE_FACILITY
, COURT_LAW
, NA
Available options:
MANUAL
, AUTOMATED
Available options:
NOT_STARTED
, IN_PROGRESS
, ERROR
, COMPLETED
Available options:
LEAD
, QUALIFIED
, OPPORTUNITY
, LOST
, WON
Available options:
SPOUSE
, PARENT
, CHILD
, OTHER_FAMILY_MEMBER
, FRIEND
, LEGAL_GUARDIAN
, OTHER
curl --request GET \
--url https://app.enzo.health/api/v1/patients/search \
--header 'Authorization: Bearer <token>'
{
"patients": [
{
"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>",
"representative": {
"id": "<string>",
"patientId": "<string>",
"firstname": "<string>",
"lastname": "<string>",
"relationship": "SPOUSE",
"email": "<string>",
"samePatientAddress": true,
"address": "<string>",
"city": "<string>",
"state": "<string>",
"stateZIP": "<string>",
"phone": "<string>",
"language": "<string>",
"legallyAuthorized": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
]
}