| name | smartsheet |
| description | Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows. |
| metadata | {"clawdbot":{"emoji":"📋","requires":{"env":["SMARTSHEET_ACCESS_TOKEN"]}}} |
Smartsheet
Work management and collaboration.
Environment
export SMARTSHEET_ACCESS_TOKEN="xxxxxxxxxx"
List Sheets
curl "https://api.smartsheet.com/2.0/sheets" -H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN"
Get Sheet
curl "https://api.smartsheet.com/2.0/sheets/{sheetId}" -H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN"
Add Row
curl -X POST "https://api.smartsheet.com/2.0/sheets/{sheetId}/rows" \
-H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"toBottom": true, "cells": [{"columnId": 123, "value": "New Row"}]}'
Links