Retrieve dictionary details

GET /admin/databases/{database_name}/dictionary/tables/{table_name}

Retrieve dictionary details

Path parameters

  • database_name string Required

    The database name

    Values are main or ci.

  • table_name string Required

    The table name

Responses

  • 200 application/json

    Retrieve dictionary details

    Hide response attributes Show response attributes object
    • table_name string
    • feature_categories array[string]
  • 401

    401 Unauthorized

  • 403

    403 Forbidden

  • 404

    404 Not found

GET /admin/databases/{database_name}/dictionary/tables/{table_name}
curl \
 --request GET 'https://www.gitlab.com/api/v4/admin/databases/{database_name}/dictionary/tables/{table_name}' \
 --header "Private-Token: $API_KEY"
Response examples (200)
{
  "table_name": "users",
  "feature_categories": [
    "database"
  ]
}