PUT
/
terms
/
{id}
.json
Update term
curl --request PUT \
  --url https://elixir.jobkit.io/terms/{id}.json \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
  {
    "id": 123,
    "name": "<string>"
  }
Requires admin authentication
id
integer
required
The id of the term to update
name
string
required
The new name of the term
  {
    "id": 123,
    "name": "<string>"
  }