# AdminApi

All URIs are relative to *https://www.gitlab.com/api/v4*

|Method | HTTP request | Description|
|------------- | ------------- | -------------|
|[**getApiV4AdminDatabasesDatabaseNameDictionaryTablesTableName**](#getapiv4admindatabasesdatabasenamedictionarytablestablename) | **GET** /admin/databases/{database_name}/dictionary/tables/{table_name} | |

# **getApiV4AdminDatabasesDatabaseNameDictionaryTablesTableName**
> APIEntitiesDictionaryTable getApiV4AdminDatabasesDatabaseNameDictionaryTablesTableName()

Retrieve dictionary details

### Example

```typescript
import {
    AdminApi,
    Configuration
} from 'berg';

const configuration = new Configuration();
const apiInstance = new AdminApi(configuration);

let databaseName: 'main' | 'ci'; //The database name (default to undefined)
let tableName: string; //The table name (default to undefined)

const { status, data } = await apiInstance.getApiV4AdminDatabasesDatabaseNameDictionaryTablesTableName(
    databaseName,
    tableName
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **databaseName** | [**&#39;main&#39; | &#39;ci&#39;**]**Array<&#39;main&#39; &#124; &#39;ci&#39;>** | The database name | defaults to undefined|
| **tableName** | [**string**] | The table name | defaults to undefined|


### Return type

**APIEntitiesDictionaryTable**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Retrieve dictionary details |  -  |
|**401** | 401 Unauthorized |  -  |
|**403** | 403 Forbidden |  -  |
|**404** | 404 Not found |  -  |

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

