Overview
This API retrieves information about all Aggregate Tables in a specified App.
API Version
API Version | Last Updated | Version Description |
V6 | 2026.08.13 | Initial version |
API Calling
This API retrieves information about all Aggregate Tables in a specified App.
Request URL: https://api.jodoo.com/api/v6/beta/app/aggregate_view/list
Request Frequency: 30 requests/second
Request Method: POST
Request Parameters:
Parameter | Type | Required | Description |
| String | Yes | App ID. |
| String | No | Cursor returned in the previous response. It is the |
| Number | No | Number of Aggregate Tables returned per page. Default: |
Sample Request:
{
"app_id": "59264073a2a60c0c08e20bfb",
"limit": 100
}
Response Parameters:
Parameter | Type | Description |
| Array | List of Aggregate Tables. |
| String | ID of the App to which the Aggregate Table belongs. |
| String | Aggregate Table ID. |
| String | Aggregate Table name. |
| Boolean | Indicates whether more Aggregate Tables are available. |
| String | Cursor for the next page. Returned only when |
Sample Response:
{
"aggregate_views": [
{
"app_id": "59264073a2a60c0c08e20bfb",
"entry_id": "59264073a2a60c0c08e20bfd",
"name": "Inventory Summary"
}
],
"has_more": true,
"next_cursor": "59264073a2a60c0c08e20bfd"
}