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 also tried including this value in the body JSON as below:
{
include: "rowPermalink",
cells: [
{ columnId: 111111, value: "Text" }
]
}
But again, this does not return the url.
Can anyone point me in the right direction on how to have this endpoint return the URL to the created row?
Many thanks
Scott