Skip to main content
POST
/
v1
/
external
/
teams
/
me
/
word-memories
curl --request POST \
  --url https://api.tiro.ooo/v1/external/teams/me/word-memories \
  --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}

Body

application/json
entry
string
required

The word or term to register. Must not be blank.

Minimum string length: 1
Example:

"인공지능"

Response

Team word memory created

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"