A
AirtableGetRecord
AirtableApi.AirtableGetRecord
Description
Retrieve a single record from an Airtable table.
This tool is used to fetch a specific record from an Airtable table using its Record ID. It will return the record if it can be located within the table or elsewhere in the same base.
Input Parameters
{
"parameters": [
{
"name": "airtable_base_id",
"required": true,
"inferrable": true,
"description": "The unique identifier for the Airtable base containing the table from which to retrieve the record. This ID is required to locate the correct base and perform the record search.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "record_id",
"required": true,
"inferrable": true,
"description": "The unique identifier for the record you wish to retrieve from the Airtable table. This ID should be valid and correspond to a record within the specified base.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "table_identifier",
"required": true,
"inferrable": true,
"description": "Specify the table's ID or name from which to retrieve the record.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "cell_format",
"required": false,
"inferrable": true,
"description": "Specify how cell values should be formatted. Options may include 'json' or 'string'.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "return_fields_by_field_id",
"required": false,
"inferrable": true,
"description": "If true, fields are returned by Field ID instead of names.",
"value_schema": {
"val_type": "boolean"
}
}
]
} Output
{
"description": "Response from the API endpoint 'get-record'.",
"value_schema": {
"val_type": "json"
},
"available_modes": [
"value",
"error"
]
}