Skip to main content
POST
/
api2
/
v1
/
termBases
/
{termBaseUid}
/
terms
Create term
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/termBases/{termBaseUid}/terms \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "<string>",
  "lang": "<string>",
  "caseSensitive": true,
  "exactMatch": true,
  "forbidden": true,
  "preferred": true,
  "status": "New",
  "conceptId": "<string>",
  "usage": "<string>",
  "note": "<string>",
  "shortTranslation": "<string>",
  "termType": "FULL_FORM",
  "partOfSpeech": "ADJECTIVE",
  "gender": "MASCULINE",
  "number": "SINGULAR"
}'
{
  "id": "<string>",
  "text": "<string>",
  "lang": "<string>",
  "rtl": true,
  "modifiedAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "modifiedBy": {
    "firstName": "<string>",
    "lastName": "<string>",
    "userName": "<string>",
    "email": "<string>",
    "role": "SYS_ADMIN",
    "id": "<string>",
    "uid": "<string>"
  },
  "createdBy": {
    "firstName": "<string>",
    "lastName": "<string>",
    "userName": "<string>",
    "email": "<string>",
    "role": "SYS_ADMIN",
    "id": "<string>",
    "uid": "<string>"
  },
  "caseSensitive": true,
  "exactMatch": true,
  "forbidden": true,
  "preferred": true,
  "status": "New",
  "conceptId": "<string>",
  "usage": "<string>",
  "note": "<string>",
  "writable": true,
  "shortTranslation": "<string>",
  "termType": "<string>",
  "partOfSpeech": "<string>",
  "gender": "<string>",
  "number": "<string>",
  "definition": "<string>",
  "domain": "<string>",
  "subDomains": [
    "<string>"
  ],
  "url": "<string>",
  "conceptNote": "<string>"
}

Path Parameters

termBaseUid
string
required

Body

application/json
text
string
required
lang
string
required
caseSensitive
boolean

Default: false

exactMatch
boolean

Default: false

forbidden
boolean

Default: false

preferred
boolean

Default: false

status
enum<string>
Available options:
New,
Approved
conceptId
string
usage
string
note
string
shortTranslation
string
termType
enum<string>
Available options:
FULL_FORM,
SHORT_FORM,
ACRONYM,
ABBREVIATION,
PHRASE,
VARIANT
partOfSpeech
enum<string>
Available options:
ADJECTIVE,
NOUN,
VERB,
ADVERB
gender
enum<string>
Available options:
MASCULINE,
FEMININE,
NEUTRAL
number
enum<string>
Available options:
SINGULAR,
PLURAL,
UNCOUNTABLE

Response

Created

text
string
required
id
string
lang
string
rtl
boolean
modifiedAt
string<date-time>
createdAt
string<date-time>
modifiedBy
object
createdBy
object
caseSensitive
boolean
exactMatch
boolean
forbidden
boolean
preferred
boolean
status
enum<string>
Available options:
New,
Approved
conceptId
string
usage
string
note
string
writable
boolean
shortTranslation
string
termType
string
partOfSpeech
string
gender
string
number
string
definition
string
domain
string
subDomains
string[]
url
string
conceptNote
string
I