What can you do with it?
Create and manage custom applications and workflows using Quickbase, including retrieving table information, querying records, and inserting new data into your custom applications.How to use it?
Basic Command Structure
Parameters
Required:action
- The operation to perform (get-tables, query-records, query-by-id, insert-records)
app-id
- Quickbase application IDtable-id
- Quickbase table IDlimit
- Number of records to retrieve (default: 100)
Tools
Get Tables
Retrieve a list of tables in the specified Quickbase application Parameters:app-id
(required) - The Quickbase application ID
Query All Records
Retrieve all records from a specified table Parameters:table-id
(required) - The table ID to querylimit
(optional) - Maximum number of records to retrieve
Query Records By ID
Retrieve specific records by their ID Parameters:table-id
(required) - The table ID to queryrecord-id
(required) - The specific record ID to retrievelimit
(optional) - Maximum number of records to retrieve
Insert Records
Insert new records into a table Parameters:table-id
(required) - The table ID to insert records intofield-data
(required) - The field data to insert (field ID and value pairs)