Setup Query

List

Retrieve a paginated list of Setup Query records. Supports filtering, sorting, and search.

get/api/cp/setup/query

Response

Successful response

idstring

Id

account_idinteger

Account Id

app_idstring

App Id

namestring

Name

querystring

Query

srcstring

Src

varsobject

Vars

Example response

[
  {
    "id": 12345,
    "account_id": 1,
    "app_id": 1,
    "name": "Example Name",
    "query": "Sample query text content",
    "src": "example_src",
    "vars": "example_vars"
  }
]

Changes