Hello community,
Just getting started and trying to leverage Curl to proof a few things out. When I issue the following example command, I get a list of my sheets successfully:
curl -X GET -H "Authorization: Bearer " "https://api.smartsheet.com/2.0/sheets"
When I issue a more specific command listing one of the sheet ID's returned in the above results:
curl -X GET -H "Authorization: Bearer XXXXXXXXXXXX" "https://api.smartsheet.com/2.0/sheets/6141831453927300"
I get the following error:
{
"errorCode" : 1004,
"message" : "You are not authorized to perform this action.",
"refId" : "1w34sp5pw1k00"
}
I was trying to add a column to a sheet I owned and it gave me the same error, so I started with the simplest command and built upon it to find out when this error occurred. Hopefully it is something simple I am missing.
Many thanks in advance.
-Mike