Skip to main content

Memos API

Manage your memos, including creating, updating, deleting, and retrieving them.

POST /api/v1/memo

Create a new memo. The memo will be automatically processed (summarized, chunked, and indexed for search). Authentication: Project API Key from https://platform.useskald.com Request:
Required Fields:
  • title (string, max 255 chars)
  • content (string)
Optional Fields:
  • metadata (object): Custom JSON metadata
  • reference_id (string, max 255 chars): External reference ID
  • tags (array of strings): Tags for categorization
  • source (string, max 255 chars): Source system name
  • expiration_date (datetime): When the memo should expire
Response:

GET /api/v1/memo/

Get memo details by UUID or client reference ID. Authentication: Project API Key from https://platform.useskald.com Query Parameters:
  • id_type (string, optional): Type of identifier used. Must be either:
    • memo_uuid (default) - Use memo UUID
    • reference_id - Use client_reference_id
Examples: Get by UUID (default):
Get by client reference ID:
Response:
Error Responses: Invalid id_type (400):
Memo not found (404):

PATCH /api/v1/memo/

Partially update an existing memo by UUID or client reference ID. If the content is updated, all related data (summary, tags, chunks) will be deleted and the memo will be reprocessed. Authentication: Project API Key from https://platform.useskald.com Query Parameters:
  • id_type (string, optional): Type of identifier used. Must be either:
    • memo_uuid (default) - Use memo UUID
    • reference_id - Use client_reference_id
Examples: Update by UUID (default):
Update by client reference ID:
Request:
All Fields Optional:
  • title (string, max 255 chars): Update the memo title
  • metadata (object): Update custom JSON metadata
  • client_reference_id (string, max 255 chars): Update external reference ID
  • source (string, max 255 chars): Update source system name
  • expiration_date (datetime): Update expiration date
  • content (string): Update the memo content (triggers reprocessing)
Response:
Notes:
  • When content is updated, the memo is automatically reprocessed (summary, tags, and chunks are regenerated)
  • When other fields are updated without content, related data is preserved
Error Responses: Invalid id_type (400):
Memo not found (404):
Access denied (403):
or

DELETE /api/v1/memo/

Delete a memo by UUID or client reference ID and all its associated data (content, summary, tags, chunks). Authentication: Project API Key from https://platform.useskald.com Query Parameters:
  • id_type (string, optional): Type of identifier used. Must be either:
    • memo_uuid (default) - Use memo UUID
    • reference_id - Use client_reference_id
Examples: Delete by UUID (default):
Delete by client reference ID:
Response: 204 No Content Error Responses: Invalid id_type (400):
Memo not found (404):
Access denied (403):
or