API Analytical Dimension
Introduction¶
CCH Tagetik allows you to manage the analytical dimension also via OPEN RESTful APIs.
| API title: | Analytical Dimension openapi 3.0.3 | |
| Description: | API for managing analytical dimensions | |
| Version: | 1.000 | |
| Authentication: | OAuth2, API Key, JWT, Basic Auth |
Prerequisites¶
In order to use these APIs, the user must authenticate through the authentication mode chosen for [CCH Tagetik].
Moreover, APIs must also be enabled in the Repository. For reverse proxies, further settings are necessary. They can be used with both http and https protocols.
For more details on authentication and enabling, see Enabling the REST API and API Authentication.
Request format: JSON
Response format: JSON
URL¶
| Http Method | Endpoint | Body of the request | Query string parameters | Body of the answer | HTTP response body | Response Status (Exception) |
|---|---|---|---|---|---|---|
| GET | Analytical dimension | 200 (OK) | 404 (Not found) 403 (Access to unauthorised resource) 401 (Unauthorised) |
Fields in Response¶
| Dataset Field | Supported Values |
|---|---|
| id | string |
| descriptions.[lingua] | string |
| validity.startDate | date |
| validity.endDate | date |
| updateInfo.user | string |
| updateInfo.date | date |
| updateInfo.origin | string |
¶
The 'descriptions' field consists of a key-value array where the key is the abbreviated wording of a language and the value is a string
Example of request¶
| Method | GET |
| Endpoint | |
| Body | - |
| Example of response | { "id": "01", "descriptions": { "en": "Customer", "it": "Customer", "es": null, "fr": null }, "validity": { "startDate": "2025-12-01T00:00:00.000+0000", "endDate": "2025-12-18T00:00:00.000+0000" }, "updateInfo": { "user": "USER_BS", "date": "2025-12-11T16:17:48.807+0000", "origin": "INPUT_WEB" } } |