-
Connect any MCP-compliant AI tool to your Smartsheet data with the new MCP Server
March 24, 2026 The Smartsheet MCP Server is now generally available — and we're excited to see what you build with it. If you've ever wanted to ask an AI tool a question about your live Smartsheet data and get an intelligent answer back, that's exactly what this enables. The MCP Server is an open integration layer built on…
-
Sunset copy-related query parameters for Create folder and Create workspace API endpoints
March 10, 2026 If you've been using the Create folder or Create workspace API endpoints to copy resources, it's time to switch to the dedicated Copy folder and Copy workspace endpoints. We sunset the copy-related parameters (include, exclude, skipRemap) on the Create endpoints because having separate, purpose-built Copy…
-
Feature Request: API - Ability to Enable+Disable Automations
FEATURE: Add the ability to enable and disable all sheet automations via the Smartsheet API. THE REASON THIS SHOULD BE IMPLEMENTED: When a workspace or sheet is duplicated the automations all remain active. So if "Save as New" is used as a backup method, time-based automations will also duplicate. As a result, if there are…
-
New API endpoints make finding asset paths easier
February 16, 2026 Developers, we've heard your feedback! You can now retrieve the complete hierarchical path for any folder, sheet, report, or dashboard with a single API call. No more writing complex code to traverse entire workspaces — these new endpoints give you exactly what you need to display or navigate asset…
-
Smartsheet Automation Sheet Links and Bug Report
I had an automation that would copy rows to a duplicate sheet with test formulas / API connections. I moved this sheet to a new workspace with more limited permissions of other users, and the automation broke. I deleted and attempted to remake this Automation but searching the sheet name in the copy rows section it cannot…
-
Return the full set of properties for every object type in Smartsheet
Before I explain my suggestions, I would first like to give some context on how I use the Smartsheet API. I develop implementations for SQL connectivity interfaces such as JDBC, ODBC, ADO.NET, etc. for various sources (one of those sources being Smartsheet). I use the Smartsheet API to get data for the main resources in…
-
Creating Gantt via API / SDK ?
We're looking to create a Gantt chart by inserting the data and creating the chart via the API (actually via the Java SDK, but either will do). Inserting the data is fine, but cannot seem to get the setDependenciesEnabled (which believe need for the Gantt ) or setGanttEnabled() to work… We think part of this is the order…
-
Syntax: Add Row via API for Multi Select Contact Column, MULTI_CONTACT
Dropping this here in the hopes Google picks it up for future developers. At times when you cannot use the SDKs for adding rows via the API with multi-select contact columns (i.e. Bridge), the following body payload syntax is correct for posting new rows to a sheet. [ { "cells": [ { "columnId": 4532552246972292, "value":…
-
Alternative API endpoint for listing workspace templates after Feb 2026 deprecation?
With the announcement of the deprecation of "/workspaces/{workspaceId}" and the deprecation of the template listing endpoint (https://developers.smartsheet.com/api/smartsheet/changelog#template-listing-endpoints) There does not seem to be a way to retrieve a list of templates for a given workspace. Our app relies on these…
-
Smartsheet API List Workspace Children
Hello, I'm trying to use the Smartsheet API to get a list of sheets in a workspace using: https://api.smartsheet.com/2.0/workspaces/{workspaceId}/ However, my workspaces are organized with folders and this only returns the top level folder and nothing else. How can I have this return every child object in the workspace no…