Memo JSON shape

Share this page URL with an AI assistant to generate importable JSON for EndureTrade memos. Import from the web app using a JSON file or pasted text.

Canonical URL: https://www.enduretrade.com/docs/memo/import

Field reference

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 JSON

Payload may be a single object or an array of objects. All items are validated before any import writes.

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

Import rules

When id matches an existing record you own, that record is updated. When id is missing or does not match, a new record is created and any foreign id is ignored. Read-only fields such as userId and timestamps are ignored if present in export files.