v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Word Memory

List Workspace Word Memories

List a workspace's shared word memories with cursor-based pagination. Name the target workspace in the path with its workspaceGuid — obtain it from GET /v1/external/workspaces.

Workspace word memories are shared among all workspace members. When any member records a meeting, Tiro references both personal and workspace word memories for accurate transcription. New members benefit from the shared vocabulary without additional setup.

Use a user or workspace-bound API key. A workspace-bound key must match the workspaceGuid in the path, or it returns 403. A user key must belong to a member of the workspace, or it returns 403.

  • Use cursor from the previous response's nextCursor to paginate through results.
get/v1/external/workspaces/{workspaceGuid}/word-memories

Path parameters

workspaceGuidstring required

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

Query parameters

cursorstring

Cursor for the next page. Obtained from nextCursor in the previous response.

sizeinteger

Number of word memories to return per page

Response

Paginated list of workspace word memories

nextCursorstring nullable required

Cursor for next page, null if last page

Example response

{
  "content": [
    {
      "id": 1,
      "entry": "인공지능",
      "createdAt": "2026-04-01T10:30:00Z"
    }
  ],
  "nextCursor": "opaque-cursor-string"
}