Skip to main content

App Aggregate Table Query API

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

app_id

String

Yes

App ID.

cursor

String

No

Cursor returned in the previous response. It is the entry_id of the last Aggregate Table on the previous page. Omit this parameter for the first request.

limit

Number

No

Number of Aggregate Tables returned per page. Default: 200. Maximum: 300.

Sample Request:

{

"app_id": "59264073a2a60c0c08e20bfb",

"limit": 100

}

Response Parameters:

Parameter

Type

Description

aggregate_views

Array

List of Aggregate Tables.

aggregate_views[].app_id

String

ID of the App to which the Aggregate Table belongs.

aggregate_views[].entry_id

String

Aggregate Table ID.

aggregate_views[].name

String

Aggregate Table name.

has_more

Boolean

Indicates whether more Aggregate Tables are available.

next_cursor

String

Cursor for the next page. Returned only when has_more=true.

Sample Response:

{

"aggregate_views": [

{

"app_id": "59264073a2a60c0c08e20bfb",

"entry_id": "59264073a2a60c0c08e20bfd",

"name": "Inventory Summary"

}

],

"has_more": true,

"next_cursor": "59264073a2a60c0c08e20bfd"

}

Did this answer your question?