Note

Edit an existing note

PATCH
/api/v1/note/edit/{noteId}
/api/v1/note/edit/{noteId}

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The updated note data

titlestring | null

contentstring | null

textContentstring | null

Path Parameters

noteId
Required
string

The ID of the note to edit

curl -X PATCH "https://example.com/api/v1/note/edit/string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "title": null,
    "content": null,
    "textContent": null
  }'

OK