Skip to main content
GET
/
api
/
documents
/
catalog
/
vocabularies
DataHub tag / glossary-term / domain catalog
curl --request GET \
  --url https://api.example.com/api/documents/catalog/vocabularies \
  --header 'Authorization: Bearer <token>'
{
  "tags": [
    {
      "name": "<string>",
      "urn": "<string>"
    }
  ],
  "glossary_terms": [
    {
      "name": "<string>",
      "urn": "<string>"
    }
  ],
  "domains": [
    {
      "name": "<string>",
      "urn": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

Successful Response

DataHub vocabularies the user can pick from when adding tags, glossary terms, or a domain to an already-enriched document.

tags
VocabularyEntry · object[]
glossary_terms
VocabularyEntry · object[]
domains
VocabularyEntry · object[]