Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
Scanned 2/10/2026
Install via CLI
openskills install openclaw/skills---
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
```bash
export SMARTSHEET_ACCESS_TOKEN="xxxxxxxxxx"
```
## List Sheets
```bash
curl "https://api.smartsheet.com/2.0/sheets" -H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN"
```
## Get Sheet
```bash
curl "https://api.smartsheet.com/2.0/sheets/{sheetId}" -H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN"
```
## Add Row
```bash
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
- Docs: https://smartsheet.redoc.ly
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.