Transcripts
Get paginated finalized sentences for a voice note
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
Transcripts
Get paginated finalized sentences for a voice note
GET
/
v1
/
notes
/
{voiceNoteId}
/
sentences
curl --request GET \
--url https://app.enzo.health/api/v1/notes/{voiceNoteId}/sentences \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"id": "<string>",
"transcript": "<string>",
"start": 123,
"end": 123,
"speaker": 123,
"speakerId": "<string>"
}
],
"patient": {
"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>",
"homePhone": "<string>",
"workPhone": "<string>",
"cellPhone": "<string>",
"fax": "<string>",
"language": "<string>",
"locationType": "<string>",
"residenceType": "<string>",
"residenceName": "<string>",
"timezone": "<string>",
"physician": "<string>",
"admissionSource": "<string>",
"insuranceProvider": "<string>",
"medicareNumber": "<string>",
"medicaidNumber": "<string>",
"organizationId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
},
"nextCursor": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Query Parameters
Required range:
1 <= x <= 100
Response
200
application/json
Successful response
curl --request GET \
--url https://app.enzo.health/api/v1/notes/{voiceNoteId}/sentences \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"id": "<string>",
"transcript": "<string>",
"start": 123,
"end": 123,
"speaker": 123,
"speakerId": "<string>"
}
],
"patient": {
"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>",
"homePhone": "<string>",
"workPhone": "<string>",
"cellPhone": "<string>",
"fax": "<string>",
"language": "<string>",
"locationType": "<string>",
"residenceType": "<string>",
"residenceName": "<string>",
"timezone": "<string>",
"physician": "<string>",
"admissionSource": "<string>",
"insuranceProvider": "<string>",
"medicareNumber": "<string>",
"medicaidNumber": "<string>",
"organizationId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
},
"nextCursor": "<string>"
}