You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

/api/bigDataSets/tables/:id/tables

This endpoint will return the list of available tables for the specified big data set.

Resource Information

Resource URL

https://service.belladati.com/api/bigDataSets/:id/tables

HTTP Method

GET

Request Parameters

id

Identification of Big data set

123

Sample Request / Response

Using curl:

curl --location --request GET 'http://localhost:8080/api/bigDataSets/1046/tables' \
--header 'Authorization: OAuth oauth_consumer_key="consumer_key",oauth_token="1552b654da3cd2a57bdbb9efa2effde7",oauth_signature_method="HMAC-SHA1",oauth_timestamp="1664810576",oauth_nonce="148",oauth_version="1.0",oauth_signature="DVLtFZEq%2FLnMkrpONp6ZNZf3gYA%3D"'

The JSON format response:

{
    "total": 2,
    "tables": [
        {
            "name": "City",
            "createdWhen": "2022-10-03T14:26:22.933",
            "drillDownElements": [
                {
                    "name": "l_continent",
                    "attributeId": "hel6jPceTi"
                },
                {
                    "name": "l_country",
                    "attributeId": "Bpz2Zj25bZ"
                },
                {
                    "name": "l_city",
                    "attributeId": "o6Tjvc1r1H"
                }
            ],
            "indicatorElements": [
                {
                    "name": "New formula indicator",
                    "formula": "M_M_VALUE*10"
                },
                {
                    "name": "m_value",
                    "indicatorId": "PrYcvs8pAv",
                    "aggregator": "Sum"
                }
            ],
            "id": 8
        },
        {
            "name": "Empty",
            "createdWhen": "2022-10-03T17:14:02.236",
            "drillDownElements": [],
            "indicatorElements": [],
            "id": 9
        }
    ]
}




  • No labels