add_table_row
Insert a new row into a Glide app table by specifying the app ID, table ID, and column values for the row. Facilitates data management via a secure, type-safe interface.
Instructions
Add a new row to a table in a Glide app
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| appId | Yes | ID of the Glide app | |
| tableId | Yes | ID of the table | |
| values | Yes | Column values for the new row | 
Input Schema (JSON Schema)
{
  "properties": {
    "appId": {
      "description": "ID of the Glide app",
      "type": "string"
    },
    "tableId": {
      "description": "ID of the table",
      "type": "string"
    },
    "values": {
      "additionalProperties": true,
      "description": "Column values for the new row",
      "type": "object"
    }
  },
  "required": [
    "appId",
    "tableId",
    "values"
  ],
  "type": "object"
}