Skip to main content
POST
/
noCo
/
api
/
v2
/
workspaces
/
{workspaceId}
/
tables
/
{workbookId}
/
column
Generate AI Column
curl --request POST \
  --url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/column \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "uiDataType": "SINGLE_LINE_TEXT",
  "description": "",
  "uiMetadata": {
    "title": "col"
  },
  "settings": {
    "aiSettings": {
      "enabled": true,
      "prompt": "Extract from name and create a col",
      "model": "gpt-4o-mini",
      "webAccess": false
    }
  },
  "name": "col"
}
'

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
uiDataType
string
description
string
uiMetadata
object
settings
object
name
string

Response

200

Generate AI Column