Grist integration (Productivity, Data). Imported from open-connector.
https://api.getgrist.com/api/workspaces
/docs/{docId}
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | The Grist document identifier. |
/docs/{docId}/tables
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | The Grist document identifier. |
/docs/{docId}/tables/{tableId}/columns
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | The Grist document identifier. |
| tableId | string | required | The Grist table identifier. |
| hidden | boolean | optional | Whether hidden metadata columns should be included. |
/docs/{docId}/tables/{tableId}/records
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | The Grist document identifier. |
| tableId | string | required | The Grist table identifier. |
| hidden | boolean | optional | Whether hidden metadata columns should be included. |
| sort | string | optional | Comma-separated columns to sort by. Prefix with '-' for descending. |
| filter | string | optional | JSON string that maps column IDs to allowed values arrays, such as '{"pet":["ca… |
| limit | integer | optional | Maximum number of records to return. Use 0 for no limit. |
/docs/{docId}/tables/{tableId}/records
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | The Grist document identifier. |
| tableId | string | required | The Grist table identifier. |
| noparse | boolean | optional | Whether Grist should store values without automatic parsing. |
| records | array | required | Records to add to the target table. |
/docs/{docId}/tables/{tableId}/records
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | The Grist document identifier. |
| tableId | string | required | The Grist table identifier. |
| noparse | boolean | optional | Whether Grist should store values without automatic parsing. |
| records | array | required | Records to update in the target table. |
/docs/{docId}/tables/{tableId}/records/delete
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | The Grist document identifier. |
| tableId | string | required | The Grist table identifier. |
| rowIds | array | required | Row IDs to delete from the target table. |