---
title: "Set Note Created At"
method: PATCH
path: "/v2/notes/{note_id}/created-at"
tags: ["external", "external-v2"]
---

# Set Note Created At

`PATCH /v2/notes/{note_id}/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.

## Path parameters

- `note_id` string, uuid, required — UUID of the note whose visible creation timestamp should change. The caller must own this note.

## Request body

- SetNoteCreatedAtRequestSchema
  - `created_at` string, 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.

## Response `200`

OK

- SetNoteCreatedAtResponseSchema
  - `collection_ids` string[], required — Collection UUIDs currently associated with this note.
  - `content` string, required — Full markdown content stored for the note.
  - `created_at` string, date-time, required — Creation timestamp for the note in ISO 8601 format after the metadata update.
  - `id` string, uuid, required — UUID of the updated note.
  - `request_id` string, required — Identifier for this API request. Useful for tracing and support.
  - `title` string, required — Current note title.
  - `trashed_at` string, date-time, nullable, required — Timestamp for when the note was moved to trash, or null when the note is active.
  - `updated_at` string, date-time, required — Last modification timestamp after the metadata update in ISO 8601 format.
  - `version` integer, required — Current note content document version.

---

[API](https://skmtc.net/mem/apis/mem-api.md) · [All operations](https://skmtc.net/mem/apis/mem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mem/mem-api/versions/4023cb07f31f/schema)
