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
Example request
{
"search": "example",
"record_type": "example",
"page": 1,
"page_size": 1
}Response
Rows page
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
}
}