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>"
}
}
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>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object
.