Skip to content

API Set Offline Dataset

This API allows you to manage the offline operation of a Dataset in the Tagetik application.

API title: AIH Dataset swagger openapi 3.0.3
Description: API for handling the process of putting Datasets offline in the AIH database application
Version: 1.000
Authentication: OAuth2, API Key, JWT, Basic Auth
Base URL: https://tenantxyz.api.saastagetik.com/basic https://tenantxyz.api.saastagetik.com/jwt https://tenantxyz.api.saastagetik.com/apikey https://tenantxyz.api.saastagetik.com/oauth2

Prerequisites

Request format: JSON

Response format: JSON

Shared headers

  • Content-Type: application/json
  • Authorisation: Bearer .

URL

/api/aih/setoffline/v1/{dbID}

Operation Http Method Body of the request Path variable Query string parameters Body of the answer HTTP response body Response Status (Exception)
Create POST List of Dataset IDs ID Analytical Workspace List of Dataset IDs 201 (Created) 405 (Method not permitted) 404 (Not found) 403 (Access to unauthorised resource) 401 (Unauthorised) 400 (Invalid request)

"filter' accepts the fields 'id, process.id, process.description, scenario.id, scenario.description, period.id, period.description, entity.id, entity.description, typology.id, typology.description and status'.

Supported Fields in Request

Partition Field Supported cardinality Supported Values
datasets Quantity of Analytical Workspace datasets string

Additional Fields in Response

Partition Field Supported Values
success string
fail date

Examples of requests

Set specific datasets in an Analytical Workspace to offline

Method POST
URL /api/aih/setffline/v1/{dbID}/AWN
Body { "datasets": [ "ABC", "BBB" ] }
Example of response { "success": [ "ABC", "BBB" ] }