Skip to main content
PUT
/
terminology
/
v1
/
vocabularies
/
{vocabularyKey}
Upsert a vocabulary in the terminology
curl --request PUT \
  --url https://{workspaceId}.clinia.cloud/terminology/v1/vocabularies/{vocabularyKey} \
  --header 'Content-Type: application/json' \
  --header 'X-Clinia-API-Key: <api-key>' \
  --data '{
  "title": "<string>",
  "description": "<string>"
}'
{
  "key": "<string>",
  "title": "<string>",
  "description": "<string>"
}

Authorizations

X-Clinia-API-Key
string
header
required

Path Parameters

vocabularyKey
string
required

The key of the vocabulary.

Body

application/json
title
string
required
description
string
required

Response

A successful response when the vocabulary is replaced.

key
string
required
title
string
required
description
string
required
I