Questions tagged [smartsheet-api-2.0]

131 questions
0
votes
1 answer

Smartsheet Callback

I have integrated Smartsheet api in PHP, i am able to create the webhook and enable it. When a change is made in the sheet it hits the callback url. I am not receiving any data related to the change. I have logged the data as $_POST which is…
r93
  • 1
  • 1
0
votes
1 answer

Populating/Amending the Options of a "PICK LIST" column type in Smartsheet

I am contemplating using the Smartsheet API to address some of the background activities I need to happen on the sheets that I have access to. I am not committed to any specific Code/language at this stage but have been trying to get my head round…
0
votes
2 answers

Smartsheet Webhook error

i am trying to create a webhook from one of my applications in php using curl here is the piece of code i am using (my token is correct and i own the 6642490389358468 sheet) function setWebHook($token){ // API Url //…
helloworld
  • 11
  • 1
0
votes
3 answers

Nodejs Smartsheet API Error when trying to move row to another sheet

I have been working on a simple production management process based around smartsheet. The code that I have been running has been working fine on my Ubuntu machine, then I copied it over to my Parrot Linux machine running the same node version and…
Adam
  • 15
  • 4
0
votes
1 answer

Smartsheet API Bulk Update Multiple Sheets

I have had a lot of success with the SS REST API. I am currently trying to perfect the "Work at Scale" component of a few of my integrations. As the subject suggests I am trying to figure out if it is possible to construct a single JSON payload that…
Hacksaw
  • 1
  • 5
0
votes
1 answer

Smart Sheet API 2.1.1, Download attachment but url is missing

Download attachement to Local drive ## for(Row r : rows){ PagedResult attachments = smartsheet.sheetResources().rowResources().attachmentResources().getAttachments(sheetId, r.getId(), null); …
0
votes
2 answers

How can you get all the smartsheet attachments with one request

Using my current code I need to make a separate curl request for on each row of the smartsheet to get the attachment id, then send another request with that id to get the download url. This will occur for each row of the smartsheet and is very…
StoneLight
  • 27
  • 2
  • 8
0
votes
1 answer

upload JSON from Google Drive to smartheet via api

I am trying to have JSON files that are created by form software (Prontoforms) adn saved in a google drive, automatically insert new rows on existing sheet into Smartsheet via API. I am new to API so don't know where to start. Can anyone help
-1
votes
1 answer

Smartsheet function is UNPARSEABLE

On the Sheet Summary I'm trying to write a function that will track Past Due tasks below is the format : =COUNTIF([Is Past Due?]:[Is Past Due?], "Yes") The formula doesn't work as it says "UNPARSEABLE". Below is the Past Due column name
agega
  • 157
  • 3
  • 13
-1
votes
1 answer

How to update link attachments using smartsheet c# sdk?

I have a smartsheet with a bunch of link attachments. I'd like to replace the beginning of the links with a different substring. I am new to smartsheet and have not been able to find much sample code. Sheet setup, SmartsheetClient smartsheet = new…
-1
votes
1 answer

API Call Returns Numerous Sheets but None That I Need

My use case at high level is - get the sheet out of Smartsheet via API (with GET), transform data in a ETL tool and load into a relational db for further manipulation and reporting. All I'm trying to do is retrieve data for sheets that have been…
Vlad
  • 267
  • 1
  • 3
  • 3
1 2 3
8
9