We introduced a new process where our team needs to fill in a bunch of summary fields for every smartsheet.
I'm trying to update the data for summary fields using APIs for existing smartsheets as a backfill. I have all the data in a google sheet. I'm using Zapier to make the API call for every row in the google sheet.
I want to use the "Put" method but it doesn't seem to support TEXT_NUMBER.
curl https://api.smartsheet.com/2.0/sheets/{sheetid}/summary/fields -H "Authorization: Bearer <token>" -H "Content-Type: application/json" -X PUT -d '[{
"id": {SummaryfieldID},
"objectValue": {
"objectType": "TEXT_NUMBER",
"value": "Vishnu Test"
},
"index": 0,
"title": "Account Name"
}]'
I'm getting an unsupported type error as shown below.
I'm from the Operations team and I used to be a developer (not that good as you can see).
What am I missing here? Or is this not possible at all?