quickbase_get_record
Retrieve a specific record by ID from a QuickBase table. Provide the table ID, record ID, and optional field IDs to fetch targeted data efficiently.
Instructions
Get a specific record by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldIds | No | Specific field IDs to retrieve | |
recordId | Yes | Record ID | |
tableId | Yes | Table ID |
Input Schema (JSON Schema)
{
"properties": {
"fieldIds": {
"description": "Specific field IDs to retrieve",
"items": {
"type": "number"
},
"type": "array"
},
"recordId": {
"description": "Record ID",
"type": "number"
},
"tableId": {
"description": "Table ID",
"type": "string"
}
},
"required": [
"tableId",
"recordId"
],
"type": "object"
}