v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Word Memory

Update Workspace Word Memory

Update an existing workspace word memory. Only provided fields are updated (partial update).

Requires a user API key — you must be a writable member of the workspace. A workspace-bound key must also match the workspaceGuid in the path. A system or team-only key (no user identity) returns 401.

patch/v1/external/workspaces/{workspaceGuid}/word-memories/{wordMemoryId}

Path parameters

workspaceGuidstring required

Workspace GUID. Obtain it from GET /v1/external/workspaces.

wordMemoryIdinteger required

Word memory ID

Request body

entrystring

Updated word or term. Must not be blank if provided.

Example request

{
  "entry": "머신러닝"
}

Response

Workspace word memory updated

idinteger required

Unique identifier of the word memory

entrystring required

The registered word or term

createdAtstring date-time required

When the word memory was created (ISO 8601)

Example response

{
  "id": 1,
  "entry": "인공지능",
  "createdAt": "2026-04-01T10:30:00Z"
}