Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Function name

update-tasks

Parameters

  • data (Required). It is an array of task fields. For example, in case the data format is XML, you should post something like this:
                                id (Required). Integer. ID of the task.
                                All other fields are same as those for the create tasks function but all fields are optional. 

 

<data>
    <item>  <!-- update tasks  -->
      <id>101311</id>  <!-- id of the task to update  -->
      <plan_start>2010-11-02T08:00:00</plan_start>
    </item>
    <item>
      <id>100</id>  <!--id of the task to update  -->
      <summary>Task #2</summary>
      <plan_start>2010-11-03T08:00:00</plan_start>
    </item>
</data>

In case of JSON, you should submit an array of objects with the same properties.

Fields are same as those for the create tasks function but all fields are optional. In addition the following fields are required:
id (Required). Integer. ID of the task to update.

Return values

Nothing

  • No labels