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
Voice Notes
List notes
GET
/
v1
/
notes
Copy
curl --request GET \
--url https://app.enzo.health/api/v1/notes \
--header 'Authorization: Bearer <token>'
Copy
{
"items": [
{
"id": "<string>",
"title": "<string>",
"createdAt": "<string>",
"user": {
"name": "<string>"
},
"patient": {
"name": "<string>",
"firstname": "<string>",
"lastname": "<string>"
},
"duration": 123,
"isFavorite": true,
"isDeleted": true,
"date": "<string>",
"templateType": [
"transcript"
]
}
],
"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/notes \
--header 'Authorization: Bearer <token>'
Copy
{
"items": [
{
"id": "<string>",
"title": "<string>",
"createdAt": "<string>",
"user": {
"name": "<string>"
},
"patient": {
"name": "<string>",
"firstname": "<string>",
"lastname": "<string>"
},
"duration": 123,
"isFavorite": true,
"isDeleted": true,
"date": "<string>",
"templateType": [
"transcript"
]
}
],
"nextCursor": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.