Questions tagged [smartsheet-java-sdk-v2]

22 questions
0
votes
1 answer

cURL command in smartsheet

when I use the following curl command: (the tokens are invalid don't worry) curl https://api.smartsheet.com/2.0/sheets/5848367060424580 -H "Authorization: Bearer 21txb6n2silf6dhsil8g9jxtdu" | python -m json.tool I get a bunch of data looking like…
Jsant
  • 11
  • 1
  • 4
0
votes
2 answers

Reading sheet contents using SmartSheet Java SDK

I am trying to read data using the Smartsheet API from Java to create different formats, such as reports & labels with the data from one row. I've set up my IDE (NetBeans) so that the API samples work for me, but they are all about creating new…
0
votes
1 answer

Smartsheet- List collaborators of a sheet

After reading the documentation I dint find any api to get list of collaborators(the users the sheet is shared with) apart from the detail of the sheet's owner. If I miss out on some api, do point out ?
akgaur
  • 755
  • 1
  • 6
  • 21
0
votes
1 answer

Error redirecting to specfic page after Smartsheet Auth

@RequestMapping(value = "/smartsheet.htm", method= RequestMethod.GET) public void smartSheetAuth(HttpServletRequest req,HttpServletResponse resp,HttpSession session){ String userEmail = ************; StringBuilder authUrl = new…
akgaur
  • 755
  • 1
  • 6
  • 21
0
votes
1 answer

Error in connecting to Smartsheet using Java API

I am trying to connect to the smartsheet api using the java sdk they have provided. I am only a beginner in java and programming and completely new to smartsheet. Here is my code (taken from…
mahacoder
  • 895
  • 3
  • 14
  • 29
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
0
votes
1 answer

How to update a row of cells in Smartsheet API 2.0

I recently wrote a program using the API 1.1 to automatically update a sheet and it uses the line smartsheet.rows().updateCells(rowId, cells); to update a row of cells in the sheet. In the 2.0 version rows() has been deprecated but I still can't…
T A
  • 63
  • 1
  • 6
1
2