POST
/
v1
/
notes
curl --request POST \
  --url https://app.enzo.health/api/v1/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "<string>",
  "patientId": "<string>",
  "jobId": "<string>",
  "appointmentId": "<string>"
}'
{
  "voiceNoteId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
title
string
required
patientId
string
required
jobId
string
appointmentId
string

Response

200
application/json
Successful response
voiceNoteId
string
required