Skip to main content
PUT
/
user
/
patient
/
quick-note
/
update
/
{note_id}
Update Quick Note
curl --request PUT \
  --url https://api.decodahealth.com/user/patient/quick-note/update/{note_id} \
  --header 'API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'TENANT: <tenant>' \
  --data '
{
  "note": "<string>",
  "eventId": "<string>"
}
'
{
  "id": "<string>",
  "patientId": "<string>",
  "note": "<string>",
  "creator": {
    "id": "<string>",
    "type": "PROVIDER",
    "firstName": "<string>",
    "lastName": "<string>",
    "phoneNumber": "<string>",
    "email": "<string>",
    "locationId": "<string>"
  },
  "createdDate": "2023-11-07T05:31:56Z",
  "eventId": "<string>",
  "updatedDate": "2023-11-07T05:31:56Z",
  "isArchived": false
}

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Path Parameters

note_id
string
required

Body

application/json
note
string | null
eventId
string | null

Response

Successful Response

id
string
required
patientId
string
required
note
string
required
creator
UserTiny · object
required
createdDate
string<date-time>
required
eventId
string | null
updatedDate
string<date-time> | null
isArchived
boolean
default:false