POST
/
v1
/
notes
/
{voiceNoteId}
/
audio
curl --request POST \
  --url https://app.enzo.health/api/v1/notes/{voiceNoteId}/audio \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "storageId": "<string>",
  "patientId": "<string>",
  "appointmentId": "<string>",
  "isProcessed": true,
  "templateType": [
    "transcript"
  ],
  "isDemo": true,
  "language": "en"
}'
{
  "voiceNoteAudio": {
    "id": "<string>",
    "storageId": "<string>",
    "voiceNoteId": "<string>",
    "userId": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<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

Body

application/json

Response

200
application/json

Successful response

The response is of type object.