POST
/
v1
/
notes
/
{voiceNoteId}
/
audio-upload-url
curl --request POST \
  --url https://app.enzo.health/api/v1/notes/{voiceNoteId}/audio-upload-url \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "file": {
    "path": "<string>",
    "name": "<string>",
    "size": 123,
    "type": "<string>"
  }
}'
{
  "key": "<string>",
  "url": "<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
file
object
required

Response

200
application/json
Successful response
key
string
required
url
string
required