A
AirtableApi
Arcade Native

ListAirtableBaseViews

AirtableApi.ListAirtableBaseViews

Arcade Native Built and maintained by Arcade with full support
Supported by Arcade

Description

Retrieve information on Airtable base views.

This tool is used to obtain basic information about the views within a specified Airtable base. It should be called when you need details about the different views available in a particular base in Airtable.

Input Parameters

{
  "parameters": [
    {
      "name": "airtable_base_id",
      "required": true,
      "inferrable": true,
      "description": "The ID of the Airtable base for which you want to list views.",
      "value_schema": {
        "val_type": "string"
      }
    },
    {
      "name": "fields_to_include",
      "required": false,
      "inferrable": true,
      "description": "A list of specific fields to include in the response. It filters the fields returned for each view.",
      "value_schema": {
        "val_type": "array",
        "inner_val_type": "string"
      }
    }
  ]
}

Output

{
  "description": "Response from the API endpoint 'list-views'.",
  "value_schema": {
    "val_type": "json"
  },
  "available_modes": [
    "value",
    "error"
  ]
}