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
| Field | Type | Required | Notes |
|---|---|---|---|
| id | string (uuid) | No | If provided and matches an existing memo, updates that row; otherwise ignored on create |
| body | string | Yes | Markdown or plain text; inline images are not imported |
| tags | string[] | No | Defaults to [] |
| status | string | Yes | "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.