Skip to main content
POST
/
api
/
dictionaries
/
{dictionaryId}
/
entries
Add an entry to a dictionary
curl --request POST \
  --url http://localhost:3000/api/dictionaries/{dictionaryId}/entries \
  --header 'Content-Type: multipart/form-data' \
  --form key=100

Path Parameters

dictionaryId
string
required

Dictionary UUID

Body

multipart/form-data
key
string
required

Dictionary key (e.g., "100", "and", "thousand")

Maximum string length: 256
Example:

"100"

Response

Entry added successfully