quickbase_update_record
Modifies an existing record in QuickBase by specifying the table ID, record ID, and updated field values for precise data management.
Instructions
Update an existing record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | Yes | Field values to update as fieldId: {value: actualValue} pairs | |
recordId | Yes | Record ID to update | |
tableId | Yes | Table ID |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"additionalProperties": true,
"description": "Field values to update as fieldId: {value: actualValue} pairs",
"type": "object"
},
"recordId": {
"description": "Record ID to update",
"type": "number"
},
"tableId": {
"description": "Table ID",
"type": "string"
}
},
"required": [
"tableId",
"recordId",
"fields"
],
"type": "object"
}