get_record
Retrieve a specific record from an Airtable base using its unique ID. Specify the base ID, table ID, and record ID to access targeted data securely via OAuth 2.0 authentication.
Instructions
Get a specific record by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_id | Yes | The Airtable base ID | |
record_id | Yes | The record ID | |
table_id | Yes | The table ID or name |
Input Schema (JSON Schema)
{
"properties": {
"base_id": {
"description": "The Airtable base ID",
"title": "Base Id",
"type": "string"
},
"record_id": {
"description": "The record ID",
"title": "Record Id",
"type": "string"
},
"table_id": {
"description": "The table ID or name",
"title": "Table Id",
"type": "string"
}
},
"required": [
"base_id",
"table_id",
"record_id"
],
"type": "object"
}