Skip to content

AITable

AITable is an AI-powered platform that enables users to create interactive and dynamic tables for data visualization and analysis without requiring coding skills.

Categories: productivity-and-collaboration

Type: aitable/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeDescriptionRequired
tokenTokenSTRINGtrue

Actions

Create Record

Name: createRecord

Creates a new record in datasheet.

Properties

NameLabelTypeDescriptionRequired
spaceIdSpace IDSTRINGtrue
datasheetIdDatasheet IDSTRING
Depends On spaceId
AITable Datasheet IDtrue
fieldsDYNAMIC_PROPERTIES
Depends On datasheetId
null

Example JSON Structure

{
"label" : "Create Record",
"name" : "createRecord",
"parameters" : {
"spaceId" : "",
"datasheetId" : "",
"fields" : { }
},
"type" : "aitable/v1/createRecord"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.

Find Records

Name: findRecords

Find records in datasheet

Properties

NameLabelTypeDescriptionRequired
spaceIdSpace IDSTRINGtrue
datasheetIdDatasheet IDSTRING
Depends On spaceId
AITable Datasheet IDtrue
fieldsField NamesARRAY
Items [STRING]
The returned record results are limited to the specified fields.false
recordIdsRecord IDsARRAY
Items [STRING]
The IDs of the records to find.false
maxRecordsMax RecordsINTEGERHow many records are returned in totalfalse

Example JSON Structure

{
"label" : "Find Records",
"name" : "findRecords",
"parameters" : {
"spaceId" : "",
"datasheetId" : "",
"fields" : [ "" ],
"recordIds" : [ "" ],
"maxRecords" : 1
},
"type" : "aitable/v1/findRecords"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.

Update Record

Name: updateRecord

Update record in datasheet

Properties

NameLabelTypeDescriptionRequired
spaceIdSpace IDSTRINGtrue
datasheetIdDatasheet IDSTRING
Depends On spaceId
AITable Datasheet IDtrue
recordIdRecord IDSTRING
Depends On datasheetId
ID of the record to update.true
fieldsDYNAMIC_PROPERTIES
Depends On datasheetId
null

Example JSON Structure

{
"label" : "Update Record",
"name" : "updateRecord",
"parameters" : {
"spaceId" : "",
"datasheetId" : "",
"recordId" : "",
"fields" : { }
},
"type" : "aitable/v1/updateRecord"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.


Additional instructions


CONNECTION

Setting up OAuth2