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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

voiceNoteId
string
required

Query Parameters

cursor
string | null
limit
number
default:5
Required range: 1 <= x <= 100
isPaginated
boolean
default:true

Response

200
application/json
Successful response
items
object[]
required
patient
object | null
required
nextCursor
string | null
required