v2

latestOpenAPI 3.1.02026-07-2664759910.6 KB
external
external-v2

Set Note Created At

Set a note's visible creation timestamp without changing its content. The supplied created_at must include a timezone offset and cannot be in the future. It can only backdate the note: the timestamp cannot be later than when the note was originally created. This operation changes note metadata only. Trashed notes must be restored before their creation date can be changed.

patch/v2/notes/{note_id}/created-at

Path parameters

note_idstring uuid required

UUID of the note whose visible creation timestamp should change. The caller must own this note.

UUID of the note whose visible creation timestamp should change. The caller must own this note.

Request body

created_atstring date-time required

New visible creation timestamp for the note (ISO 8601). It must include a timezone offset and cannot be in the future. It can only backdate the note: the timestamp cannot be later than when the note was originally created. This changes note metadata only; it does not update note content.

Example request

{
  "created_at": "2020-01-07T00:00:00Z"
}

Response

OK

collection_idsstring[] required

Collection UUIDs currently associated with this note.

contentstring required

Full markdown content stored for the note.

created_atstring date-time required

Creation timestamp for the note in ISO 8601 format after the metadata update.

idstring uuid required

UUID of the updated note.

request_idstring required

Identifier for this API request. Useful for tracing and support.

titlestring required

Current note title.

trashed_atstring date-time nullable required

Timestamp for when the note was moved to trash, or null when the note is active.

updated_atstring date-time required

Last modification timestamp after the metadata update in ISO 8601 format.

versioninteger required

Current note content document version.

Example response

{
  "collection_ids": [
    "59508b41-8770-4855-aa37-302b1e09aee7"
  ],
  "content": "# Meeting with Bill\n\nJan 7, 2020",
  "created_at": "2020-01-07T00:00:00.000Z",
  "id": "5e29c8a2-c73b-476b-9311-e2579712d4b1",
  "request_id": "api-request-036ed6c7-de00-459f-a89b-43d26aafe522",
  "title": "Meeting with Bill",
  "trashed_at": null,
  "updated_at": "2026-05-15T10:15:00.000Z",
  "version": 5
}