Airtable
App Overview
Airtable is a platform that combines the power of a database with the simplicity of a spreadsheet to organize and collaborate on projects.
Getting Started: Installations
Name | Type | Description | Exemple | Hidden |
---|---|---|---|---|
personalAccessToken | string | The Personal Access Token for authentication to Airtable App | true | |
baseId | string | The airtable base id | false |
App Items
Events
Technical Actions
Extract Records
Extract records from a table
Inputs
Name | Type | Description | Exemple | Required |
---|---|---|---|---|
tableName | string | Name of the table from which the records are to be retrieved | Table 1 | true |
Outputs
Name | Type | Description | Exemple |
---|---|---|---|
file | string | ||
recordCount | number | The number of records extracted from the table | 5 |
Update Record
Update a specific record by its ID
Inputs
Name | Type | Description | Exemple | Required |
---|---|---|---|---|
tableName | string | Name of the table where the record to be updated is located | Table 1 | true |
recordId | string | The desired recordId, corresponding to the record you want to update | rec123456789 | true |
data | object | Data you want to update as a record | true |
Outputs
Name | Type | Description | Exemple |
---|---|---|---|
recordUpdated | object |
Get Record
Retrieve a specific record by its ID
Inputs
Name | Type | Description | Exemple | Required |
---|---|---|---|---|
tableName | string | The name of the table where the record is located | Table 1 | true |
recordId | string | The desired recordId, corresponding to the record you want to get | rec123456789 | true |
Outputs
Name | Type | Description | Exemple |
---|---|---|---|
record | object |
Delete Record
Delete a Record
Inputs
Name | Type | Description | Exemple | Required |
---|---|---|---|---|
tableName | string | The name of the table where the record is to be deleted | Table 1 | true |
recordId | string | The desired recordId, corresponding to the record you want to delete | rec123456789 | true |
Create Record
Create a Record
Inputs
Name | Type | Description | Exemple | Required |
---|---|---|---|---|
tableName | string | The name of the table where the record is to be created | Table 1 | true |
data | object | Data you want to insert as a record | true |
Outputs
Name | Type | Description | Exemple |
---|---|---|---|
recordCreated | object |
Version(s)
1.0.1 