{ "opencollection": "1.0.0", "info": { "name": "SAP Business Intelligence SAP Analytics Cloud Catalog Models API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://{tenant}.sapanalytics.cloud/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Models", "type": "folder" }, "items": [ { "info": { "name": "SAP Business Intelligence List models", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sapanalytics.cloud/api/v1/models", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" } ] }, "docs": "Retrieve a list of all data models available in the tenant." }, { "info": { "name": "SAP Business Intelligence Create a model", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant}.sapanalytics.cloud/api/v1/models", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new data model with specified dimensions and measures." }, { "info": { "name": "SAP Business Intelligence Get a model", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sapanalytics.cloud/api/v1/models/:modelId", "params": [ { "name": "modelId", "value": "", "type": "path", "description": "Model unique identifier" } ] }, "docs": "Retrieve details of a specific data model including dimensions and measures." }, { "info": { "name": "SAP Business Intelligence Update a model", "type": "http" }, "http": { "method": "PUT", "url": "https://{tenant}.sapanalytics.cloud/api/v1/models/:modelId", "params": [ { "name": "modelId", "value": "", "type": "path", "description": "Model unique identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update properties of an existing data model." }, { "info": { "name": "SAP Business Intelligence Delete a model", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenant}.sapanalytics.cloud/api/v1/models/:modelId", "params": [ { "name": "modelId", "value": "", "type": "path", "description": "Model unique identifier" } ] }, "docs": "Delete an existing data model." }, { "info": { "name": "SAP Business Intelligence List model dimensions", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sapanalytics.cloud/api/v1/models/:modelId/dimensions", "params": [ { "name": "modelId", "value": "", "type": "path", "description": "Model unique identifier" } ] }, "docs": "Retrieve all dimensions defined in a specific model." }, { "info": { "name": "SAP Business Intelligence List model measures", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sapanalytics.cloud/api/v1/models/:modelId/measures", "params": [ { "name": "modelId", "value": "", "type": "path", "description": "Model unique identifier" } ] }, "docs": "Retrieve all measures defined in a specific model." } ] } ], "bundled": true }