Import memos

Import or export EndureTrade trading journal memos as JSON from the web app — paste text or upload a file. You can also share this page URL with an AI assistant so it generates a valid import file for you.

Page URL for AI prompts: https://www.enduretrade.com/docs/memos/import

Fields

FieldTypeRequiredNotes
idstring (uuid)NoIf provided and matches an existing memo, updates that row; otherwise ignored on create
bodystringYesMarkdown or plain text; inline images are not imported
tagsstring[]NoDefaults to []
statusstringYes"active" | "archived"

Example

You can import one object or a list of objects. Everything is checked before any rows are written.

[
  {
    "body": "## EURUSD bias\n\nRisk-on session; watch London open for continuation.",
    "tags": [
      "fx",
      "macro"
    ],
    "status": "active"
  }
]

How import behaves

When id matches a record you already own, that record is updated. When id is missing or does not match, a new record is created and any unknown id is ignored. Read-only fields such as userId and timestamps from export files are ignored.