Smartsheet

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

modbender Updated 12 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

modbender/skill-library-mcp/tree/main/data/smartsheet commit b11846d8c8

Frequently asked questions

npx skillmds@latest add modbender/smartsheet