quickbase_search_records
Search for specific text within records in a QuickBase table. Input the table ID, search term, and optional field IDs to locate relevant data efficiently.
Instructions
Search for records containing specific text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldIds | No | Field IDs to search in | |
searchTerm | Yes | Text to search for | |
tableId | Yes | Table ID to search |
Input Schema (JSON Schema)
{
"properties": {
"fieldIds": {
"description": "Field IDs to search in",
"items": {
"type": "number"
},
"type": "array"
},
"searchTerm": {
"description": "Text to search for",
"type": "string"
},
"tableId": {
"description": "Table ID to search",
"type": "string"
}
},
"required": [
"tableId",
"searchTerm"
],
"type": "object"
}