Voice Notes
Get voice note summaries for a specific voice note by the logged-in user
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
Voice Notes
Get voice note summaries for a specific voice note by the logged-in user
GET
/
v1
/
notes
/
{voiceNoteId}
/
summary
curl --request GET \
--url https://app.enzo.health/api/v1/notes/{voiceNoteId}/summary \
--header 'Authorization: Bearer <token>'
{
"voiceNoteSummary": [
{
"id": "<string>",
"voiceNoteId": "<string>",
"userId": "<string>",
"aiModel": "<string>",
"aiSummary": "<string>",
"completionTokens": 123,
"promptTokens": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"organizationId": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Successful response
curl --request GET \
--url https://app.enzo.health/api/v1/notes/{voiceNoteId}/summary \
--header 'Authorization: Bearer <token>'
{
"voiceNoteSummary": [
{
"id": "<string>",
"voiceNoteId": "<string>",
"userId": "<string>",
"aiModel": "<string>",
"aiSummary": "<string>",
"completionTokens": 123,
"promptTokens": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"organizationId": "<string>"
}