-
Saving rich sheet as a template for new clients
I have rich workspace with multiple sheets, links, formulas, forms, reports and workflow and sample data. I want to be able to save and restore the package for new clients in their own workspaces. How can this be done? I note that Request Backup and Export does not provide this functionality.
-
Retrieving Form URL via API
I have an automation that makes a copy of a folder and moves it into another folder using Make.com. Within the new folder is a sheet with a form, and I simply want to generate a QR code for this form using the form's URL returned by the Smartsheet API. I have come to learn that, since 2018, this functionality has been…
-
Is it possible to use api to edit sheet from other organization which shared edit permission to me?
I am currently evaluating Smartsheet for my organization. We are considering a Business plan to streamline our collaboration with external partners. Specifically, I need to confirm if the Smartsheet API allows us to programmatically edit sheets owned by another organization, provided they have granted us "editor with…
-
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…
-
Zapier Connection to the Smartsheet Eu Servers
I want to connect Zapier with my smartsheet account to run some automations an online lead generation bot to be exact Zapier support team has given the following info: Currently it is not possible to connect to the smartsheet.eu with Zapier the limitation is imposed based on compliance with Smartsheet; we cannot confirm…
-
List folder children
I am attempting to use the Python example for Listing Folder Children from the API Reference Docs. No matter what I do I get the following error message: {'errorCode': 1006, 'message': 'Not Found', 'refId': 'qgsta7'} =======CODE======= import requests import os from dotenv import load_dotenv from dotenv import…
-
Bridge - How to Retrieve Data from Multiple Child Runs Given the API Depreciations
Hello Team. Given the upcoming API depreciations, what is the recommended approach in Bridge to use the lastKey to get the full set of results in order to parse them when using the Call API to Smartsheet's API and needing to call it multiple times? For example, if we have greater than 10,000 workspaces and we use the GET…
-
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.
-
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":…
-
Create a row and get the URL in the response.
Hi At https://developers.smartsheet.com/api/smartsheet/openapi/rows/rows-addtosheet the documentation says that a 'permaLink' attribute can be returned, "if the include query string parameter contains rowPermalink". So I've set my POST request to: /sheets/#{sheet_id}/rows?include=rowPermalink and sadly had no luck. I have…