BellaDati Technical Documentation : GET Table Bounds

/api/reports/views/:id/table/bounds

This method returns bounds of the table.

Resource Information

Parameters

Parameters

Detail

id

ID of the table. This ID is part of the /api/reports/:id response.
Example: 123

filter

Filter applied to the table.
Example:

{
  "drilldown": {
      "L_COUNTRY_OR_AREA": { "op": "EQ", "value": "Slovakia"},
      "L_TYPE": { "op": "IN", "values": [ "Type 1", "Type 2", "Type 3" ]},
      "L_DATE":{"op":"NOT_NULL"}
  }
}

Sample request/response

{
  "leftHeaderColumnsCount" : 1,
  "rowsCount" : 3,
  "columnsCount" : 1,
  "cleverTitle" : "",
  "topHeaderRowsCount" : 0
}

 

Next steps