Record fetcher
Last updated
Last updated
[apis/airtable/Record fetcher]
Fetches a single record from an AirTable table by it's ID. For detailed parameter information, see the AirTable API documentation: https://airtable.com/api/meta
Keywords: airtable, select, get, fetch, record, row
record ID: string
Receives the identifier of the record relative to an AirTable table. Example:
params:
Receives the authentication & table parameters required to construct the request. API Key: In AirTable, go to 'Help?' and click on 'API Documentation'. Scroll to the "Authorization" section to retrieve your API key. Base ID: In AirTable, go to 'Help?' and click on 'API Documentation'. Find the ID of the base in the introduction. Table Name: Use the table name located on the tab of the spreadsheet. Example:
record: {string: any}
Sends the retrieved AirTable record. Example:
AT record:
Sends the retrieved AirTable record, including metadata like row ID, and date & time of creation. Example:
response:
Sends the entire response from the AirTable API without modification.
error: {"error": string, optional "details": any}
Sends the error, if one occurred.