Skip to main content
POST
/
noCo
/
api
/
v2
/
workspaces
/
{workspaceId}
/
tables
/
{workbookId}
/
cursor
Get Workbook Data
curl --request POST \
  --url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/cursor \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data @- <<EOF
{
  "requestPageDetails": {
    "pageNumber": 1,
    "pageSize": 500
  },
  "sortOptions": [
    {
      "columnName": "first_name",
      "direction": "DESC"
    },
    {
      "columnName": "last_updated",
      "direction": "ASC"
    }
  ],
  "whereClause": "(`first_name` like '%d%' and `years_of_experience` > 4 and `start_date` between '2004-01-01' and '2009-12-31' and `is_active` = true)"
}
EOF

Authorizations

Authorization
string
header
required

This API uses OAuth 2.0 with the authorization code grant flow.

Path Parameters

workspaceId
string
required
workbookId
string
required

Body

application/json
requestPageDetails
object
sortOptions
object[]
whereClause
string

Response

200

Get Table Data