v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Word Memory

List Team Word Memories

Deprecated — removed on 2026-06-30. Use GET /v1/external/workspaces/{workspaceGuid}/word-memories instead, which targets a workspace explicitly by path. Responses to this endpoint carry Deprecation, Link (successor), and Sunset headers. Behavior is unchanged until the sunset date.

Retrieve team word memories with cursor-based pagination.

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

  • Use cursor from previous response's nextCursor to paginate through results
get/v1/external/teams/me/word-memories

Query parameters

cursorstring

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

sizeinteger

Number of word memories to return per page

Response

Paginated list of team 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"
}