0


I am working on Google task api
When i update task status from needAction to complete it change perfectly.
But when change from completed to anything(Pending/needAction)
It gives error means status not change when once it set to completed.
any solution?

Nick Johnson
  • 100,655
  • 16
  • 128
  • 198
Ashvin
  • 4,010
  • 8
  • 23
  • 26

1 Answers1

0

You can create an new Task, exactly same as current, and put into queue.

Igor Artamonov
  • 35,450
  • 10
  • 82
  • 113
  • 3
    solved : when i search i found if we first get task object.we get it in dictionary format.than delete "completed" element from task dictionary ,and change status "needsAction" after this changes update that task. – Ashvin Sep 29 '11 at 09:14
  • Did you tested it in production system? – Igor Artamonov Sep 29 '11 at 14:42