I use google tasks api, Patch ().
This request not work:
{
"status": "needsAction",
}
But this request is ok:
{
"status": "needsAction",
"completed": null
}
I use .NET and if I do so
var task = new Google.Apis.Tasks.v1.Data.Task ()
{
Status = "needsAction",
Completed = null
};
then, he just ignores "Completed" and I get an error.
The same problem: https://www.lima-city.de/thread/google-api-tasks