v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Object rows

List rows

Returns a paginated, filterable list of rows.

post/public/v1/objects/{name}/rows/list

Path parameters

namestring required
Example:deals

Request body

queryobject

Dynamic-table query. Either a single { path, operator, value } condition, or a nested group { operator: 'and' | 'or', conditions: [...] }.

searchstring nullable
sortobject[] nullable
pageinteger
page_sizeinteger

Example request

{
  "search": "example",
  "record_type": "example",
  "page": 1,
  "page_size": 1
}

Response

Rows page

oktrue required

Example response

{
  "ok": true,
  "data": {
    "rows": [
      {
        "id": "example",
        "auto_id": 1,
        "created_at": "example",
        "updated_at": "example"
      }
    ],
    "total_count": 1,
    "total_pages": 1,
    "current_page": 1
  }
}