-
API Shares
Hello - I am trying to update my APIs due to the deprecation announced. I am having trouble with the new share API for sharing a workspace. Below is what I have in my HTTP request, and the error I am receiving. I have tried a few things, but I can't get past this error. Share asset { "assetType": "workspace", "assetId":…
-
API Issue with list_sheets
I script in python. I need to explain some things about how we use Smartsheet. We have a master sheet that has all of our current orders on it. We have around 200 projects, and each project has its own project sheet. When an order is placed via update request, a daily script picks up the info and creates the order on the…
-
New API header to track traffic sources
July 31, 2025 This release introduces a header called smartsheet-integration-source that can be inserted by API users and AI partners to classify API calls to better track traffic. Learn more and read the changelog entry. Environments availability: Commercial US, Commercial EU, Commercial AU Plan availability: Business,…
-
Download attachments from a report
Hi, is there a way to automatically download each attachment of a report for each row? I need to get the attachment for each row and put them in a different folder, rather than download ALL of them at once, as I need to distinguish what item they correspond to. Thanks for your help!
-
Smartsheet API - Add sheets to existing sheets.
Hello, Is there a way via the API to be able to add existing sheets to another sheet under a different folder. We are currently doing this manually.
-
Can't get a simple API request to work ("An unexpected error has occurred.")
I would like to start working with the SmartSheet API, but I'm having difficulty getting even simple requests to work. Having generated an API token, if I try: curl -i -H "Authorization: Bearer $SMARTSHEET_API_TOKEN" https://api.smartsheet.com/2.0/sheets/ I get: HTTP/2 500 date: Tue, 05 Aug 2025 14:21:24 GMT content-type:…
-
Merged: Copy Collections
This discussion has been merged.
-
Provide API Access to Upgrade or Downgrade Users under User Subscription Model (USM)
We recently switched over to using USM for license management. This broke our automated scripts that gave users a license. We have a number of non-member employees who we cannot automatically update via the API. I'm told there is no solution for this and we are left manually updating our free users to a licensed member.…
-
Copy Automation Workflows
When copying a workspace via API, I would like it to copy the automation workflows for each sheet, as it does when copying in the UI.
-
Fetching comments from a Smartsheet : Getting Error
unction comments() { const apiKey = 'API KEY'; // Your Smartsheet API token const sheetId = 'SHEET ID'; // Your Smartsheet sheet ID const baseOptions = { method: 'GET', headers: { 'Authorization': 'Bearer ' + apiKey }, muteHttpExceptions: true // Allows us to inspect error responses }; let allComments = []; // Array to…