I am trying to update some data items in a Project Online task. I have successfully updated Task Name and Percent Complete. I want to update the Notes column but that isn't working. Not getting an error, just doesn't update. Here is the json package I am sending:
{
'Name':'@{triggerBody()['PWA_TaskName']}',
'PercentComplete':'@{triggerBody()['PWA_PercentComplete']}',
'Notes':'@{triggerBody()['PWA_Notes']}'
}
Is it as simple as using the wrong name, 'Notes'? Any help would be appreciated. Is there documentation of the fields for updating tasks?
Thank you.