Skip to main content
PATCH
/
v1
/
external
/
teams
/
me
/
word-memories
/
{wordMemoryId}
Update Team Word Memory
curl --request PATCH \
  --url https://api.tiro.ooo/v1/external/teams/me/word-memories/{wordMemoryId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entry": "자연어처리"
}
'
{
  "id": 1,
  "entry": "자연어처리",
  "createdAt": "2026-04-01T10:30:00Z"
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Path Parameters

wordMemoryId
integer<int64>
required

Word memory ID

Body

application/json
entry
string

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

Minimum string length: 1
Example:

"머신러닝"

Response

Team word memory updated

id
integer<int64>
required

Unique identifier of the word memory

Example:

1

entry
string
required

The registered word or term

Example:

"인공지능"

createdAt
string<date-time>
required

When the word memory was created (ISO 8601)

Example:

"2026-04-01T10:30:00Z"