Skip to content

Airtable 节点(Airtable node)#

使用 Airtable 节点在 Airtable 中自动化工作,并将 Airtable 与其他应用集成。n8n 内置支持多种 Airtable 功能,包括创建、读取、列出、更新和删除表格。

🌐 Use the Airtable node to automate work in Airtable, and integrate Airtable with other applications. n8n has built-in support for a wide range of Airtable features, including creating, reading, listing, updating and deleting tables.

本页列出了 Airtable 节点支持的操作列表以及更多资源的链接。

🌐 On this page, you'll find a list of operations the Airtable node supports and links to more resources.

凭证

有关设置身份验证的指导,请参考Airtable 凭据

操作(Operations)#

  • 将数据追加到表格中。
  • 从表中删除数据。
  • 列出表中的数据
  • 从表格中读取数据。
  • 更新表格中的数据

模板和示例(Templates and examples)#

Template widget placeholder.

n8n 提供了一个用于 Airtable 的触发节点。您可以在这里找到触发节点文档。

🌐 n8n provides a trigger node for Airtable. You can find the trigger node docs here.

有关该服务的更多信息,请参阅Airtable 的文档

🌐 Refer to Airtable's documentation for more information about the service.

What to do if your operation isn't supported#

If this node doesn't support the operation you want to do, you can use the HTTP Request node to call the service's API.

You can use the credential you created for this service in the HTTP Request node:

  1. In the HTTP Request node, select Authentication > Predefined Credential Type.
  2. Select the service you want to connect to.
  3. Select your credential.

Refer to Custom API operations for more information.

节点引用(Node reference)#

获取记录 ID(Get the Record ID)#

要获取特定记录的数据,你需要记录 ID。有两种方法可以获取记录 ID。

🌐 To fetch data for a particular record, you need the Record ID. There are two ways to get the Record ID.

在 Airtable 中创建记录 ID 列(Create a Record ID column in Airtable)#

要在你的表中创建 Record ID 列,请参考这篇文章。然后,你可以在你的 Airtable 节点中使用此记录 ID。

🌐 To create a Record ID column in your table, refer to this article. You can then use this Record ID in your Airtable node.

使用列表操作(Use the List operation)#

要获取记录的记录 ID,你可以使用 Airtable 节点的 List 操作。此操作将返回记录 ID 以及字段。然后,你可以在 Airtable 节点中使用此记录 ID。

🌐 To get the Record ID of your record, you can use the List operation of the Airtable node. This operation will return the Record ID along with the fields. You can then use this Record ID in your Airtable node.

筛选记录使用列表操作时(Filter records when using the List operation)#

要从你的 Airtable 基地中过滤记录,请使用 按公式筛选 选项。例如,如果你想返回所有属于组织 n8n 的用户,请按照以下步骤操作:

🌐 To filter records from your Airtable base, use the Filter By Formula option. For example, if you want to return all the users that belong to the organization n8n, follow the steps mentioned below:

  1. 操作 下拉列表中选择“列表”。
  2. Base IDTable 字段中分别输入基础 ID 和表名称。
  3. 点击 添加选项,然后从下拉列表中选择“按公式筛选”。
  4. 按公式筛选 字段中输入以下公式:{Organization}='n8n'

同样,如果你想返回所有不属于组织 n8n 的用户,请使用以下公式:NOT({Organization}='n8n')

🌐 Similarly, if you want to return all the users that don't belong to the organization n8n, use the following formula: NOT({Organization}='n8n').

请参阅 Airtable 文档 以了解有关公式的更多信息。

🌐 Refer to the Airtable documentation to learn more about the formulas.

常见问题(Common issues)#

有关常见错误或问题及建议的解决步骤,请参考 常见问题

🌐 For common errors or issues and suggested resolution steps, refer to Common Issues.