Visits
List appointments
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
Visits
List appointments
GET
/
v1
/
appointments
curl --request GET \
--url https://app.enzo.health/api/v1/appointments \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"title": "<string>",
"start": "<string>",
"end": "<string>",
"patientId": "<string>",
"resourceId": "<string>",
"organizationId": "<string>",
"order": 123,
"createdAt": "<string>",
"patient": {
"id": "<string>",
"name": "<string>",
"firstname": "<string>",
"lastname": "<string>",
"email": "<string>",
"dob": "<string>",
"sex": "<string>",
"fmrn": "<string>",
"phone": "<string>",
"address": "<string>"
}
}
],
"pageCount": 123
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Available options:
and
, or
Available options:
all
, active
, archived
Response
200
application/json
Successful response
curl --request GET \
--url https://app.enzo.health/api/v1/appointments \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"title": "<string>",
"start": "<string>",
"end": "<string>",
"patientId": "<string>",
"resourceId": "<string>",
"organizationId": "<string>",
"order": 123,
"createdAt": "<string>",
"patient": {
"id": "<string>",
"name": "<string>",
"firstname": "<string>",
"lastname": "<string>",
"email": "<string>",
"dob": "<string>",
"sex": "<string>",
"fmrn": "<string>",
"phone": "<string>",
"address": "<string>"
}
}
],
"pageCount": 123
}