Smartsheet

Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.

dvcrn Updated 32 repo stars

File contents

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

dvcrn/openclaw-skills-marketplace/tree/main/plugins/mrgoodb--smartsheet/skills/smartsheet commit 07bf7ab724

Frequently asked questions

npx skillmds@latest add dvcrn/smartsheet-2