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
Subscribers
Patients
Get patients for organization
GET
/
v1
/
patients
Copy
curl --request GET \
--url https://app.enzo.health/api/v1/patients \
--header 'Authorization: Bearer <token>'
Copy
{
"items": [
{
"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>"
}
],
"nextCursor": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Required range:
1 <= x <= 100
Response
200
application/json
Successful response
The response is of type object
.
Copy
curl --request GET \
--url https://app.enzo.health/api/v1/patients \
--header 'Authorization: Bearer <token>'
Copy
{
"items": [
{
"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>"
}
],
"nextCursor": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.