GET
/
v1
/
notes
/
{voiceNoteId}
/
question-statuses
curl --request GET \
  --url https://app.enzo.health/api/v1/notes/{voiceNoteId}/question-statuses \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "questionId": "<string>",
    "questionText": "<string>",
    "isAnswered": true
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

voiceNoteId
string
required

Response

200
application/json
Successful response
id
string
required
questionId
string
required
questionText
string
required
isAnswered
boolean
required