---
title: "Create Team Word Memory"
method: POST
path: "/v1/external/teams/me/word-memories"
tags: ["Word Memory"]
deprecated: true
---

# Create Team Word Memory

`POST /v1/external/teams/me/word-memories`

> **Deprecated.**

**Deprecated — removed on 2026-06-30.** Use `POST /v1/external/workspaces/{workspaceGuid}/word-memories` instead. Behavior is unchanged until the sunset date.

Register a new word to the team's shared word memory.

Team word memories are accessible to all team members. Once registered, Tiro references this word during voice transcription for any team member's recording.

Duplicate entries (same `entry` value) are not allowed and will return `409 Conflict`.

## Request body

- CreateWordMemoryRequest
  - `entry` string, required — The word or term to register. Must not be blank.

## Response `201`

Team word memory created

- WordMemory
  - `id` integer, required — Unique identifier of the word memory
  - `entry` string, required — The registered word or term
  - `createdAt` string, date-time, required — When the word memory was created (ISO 8601)

## Other responses

- `400` — Bad request — entry is blank
- `401` — Unauthorized
- `409` — Conflict — a team word memory with the same entry already exists

---

[API](https://skmtc.net/tiro/apis/tiro-api.md) · [All operations](https://skmtc.net/tiro/apis/tiro-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tiro/tiro-api/revisions/ae18d7961aa4/schema)
