v1
latestOpenAPI 3.1.02026-07-226875162.5 KBWord Memory
Create Workspace Word Memory
Register a new word to a workspace's shared word memory. Name the target workspace in the path with its workspaceGuid.
Workspace word memories are accessible to all workspace members. Once registered, Tiro references this word during voice transcription for any member's recording.
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.
Duplicate entries (same entry value) are not allowed and return 409 Conflict.
post/v1/external/workspaces/{workspaceGuid}/word-memories
Path parameters
workspaceGuidstring required
Workspace GUID. Obtain it from GET /v1/external/workspaces.
Request body
Example request
{
"entry": "인공지능"
}Response
Workspace word memory created
Example response
{
"id": 1,
"entry": "인공지능",
"createdAt": "2026-04-01T10:30:00Z"
}