I need to be able to add a row wherever I want by connecting a logic app to the built in connector to Smart Sheets. I've got the package formatted correctly to actually insert the row into the correct sheet with the correct information, but it adds it to a random row. How can I dictate which row it gets inserted into using my current package.
I have tried using parentID and toTop as parameters in the body.
The package I'm sending now looks like this:
{
"method": "post",
"path": "/sheets/*sheetID*/rows",
"host": {
"connection": {
"name": *Authentication Info*
}
},
"body": {
"Tasks": "Column Data",
"Work Item Title": "Column Data"
}
}