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
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
token | Token | STRING | TEXT | true |
Actions
Create Record
Name: createRecord
Creates a new record in datasheet.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
spaceId | Space ID | STRING | SELECT | true | |
datasheetId | Datasheet ID | STRING Depends OnspaceId | SELECT | AITable Datasheet ID | true |
fields | DYNAMIC_PROPERTIES Depends OndatasheetId | null | null |
JSON Example
{ "label" : "Create Record", "name" : "createRecord", "parameters" : { "spaceId" : "", "datasheetId" : "", "fields" : { } }, "type" : "aitable/v1/createRecord"}
Find Records
Name: findRecords
Find records in datasheet
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
spaceId | Space ID | STRING | SELECT | true | |
datasheetId | Datasheet ID | STRING Depends OnspaceId | SELECT | AITable Datasheet ID | true |
fields | Field Names | ARRAY Items[STRING] | MULTI_SELECT | The returned record results are limited to the specified fields. | false |
recordIds | Record IDs | ARRAY Items[STRING] | MULTI_SELECT | The IDs of the records to find. | false |
maxRecords | Max Records | INTEGER | INTEGER | How many records are returned in total | false |
JSON Example
{ "label" : "Find Records", "name" : "findRecords", "parameters" : { "spaceId" : "", "datasheetId" : "", "fields" : [ "" ], "recordIds" : [ "" ], "maxRecords" : 1 }, "type" : "aitable/v1/findRecords"}
Update Record
Name: updateRecord
Update record in datasheet
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
spaceId | Space ID | STRING | SELECT | true | |
datasheetId | Datasheet ID | STRING Depends OnspaceId | SELECT | AITable Datasheet ID | true |
recordId | Record ID | STRING Depends OndatasheetId | SELECT | ID of the record to update. | true |
fields | DYNAMIC_PROPERTIES Depends OndatasheetId | null | null |
JSON Example
{ "label" : "Update Record", "name" : "updateRecord", "parameters" : { "spaceId" : "", "datasheetId" : "", "recordId" : "", "fields" : { } }, "type" : "aitable/v1/updateRecord"}