-
Notifications
You must be signed in to change notification settings - Fork 8
TaskCollection
We are creating a new REST api for tasks
Task collections represent groups of tasks. The create task collection operation provides a convenient means by which a number of tasks each with start dates differing by a specified interval can be created at the same time. The delete task collection operation provides a convenient way to delete all the tasks that were created as part of a collection.
When creating tasks by using the task collection API endpoint, all tasks will initially share the same title, description, status, owner, assignments and completed information: the only difference will be that the start dates of the individual tasks will be staggered according to a specified recurrence frequency (daily, every weekday, weekly or monthly). The number of tasks created is determined by an end date value: for example, specifying weekly tasks until a date 3 months from now will create one task per week between the specified start date and the date three months from now.
Once a task collection has been created, the tasks may be updated individually and behave as if they were created as individual tasks, with the exception that they may all be deleted by a single delete task collection operation (they may also be deleted individually as normal tasks).
Apart from the convenient creation and deletion of the tasks within a collection, the collection itself bestows no special properties on the constituent tasks.
Please note that when creating task collection, it's not possible to specify a due date: tasks created as part of a collection necessarily have no due date at the time of creation (though due dates may be added to tasks individually once they've been created).
This resource supports creating a new TaskCollection.
When retrieving a workspace calendar the resource representation in the response will include a Uri attribute. To create a task collection a POST request should be made to the URI of the workspace calendar with a representation of the task collection resource to be created.
POST /v2/calendar/workspaces/123 HTTP/1.1
Content-Type: application/xml
Accept: application/xml
Authorization: OAuth2 frootymcnooty/vonbootycherooty
<?xml version="1.0" encoding="utf-8"?>
<TaskCollection>
<Status>NotStarted</Status>
<PlannedStartDate>2013-08-10T00:00:00Z</PlannedStartDate>
<EndDate>2013-08-24T00:00:00Z</EndDate>
<CompletedDate xsi:nil="true" />
<CompletedBy xsi:nil="true" />
<CreatedDate xsi:nil="true" />
<UpdatedDate xsi:nil="true" />
<Title>Distribute weekly status report</Title>
<Description>Test description</Description>
<RecurrenceFrequency>Weekly</RecurrenceFrequency>
</TaskCollection>
If successful, this operation will return a 201 Created with a Location header pointing to the first-occurring of the new tasks, and a representation of all newly-created tasks in the response body.
<TaskCollection id="987" uri="/v2/calendar/eventcollection/987">
<Task
Id="20652"
Uri="/v2/calendar/events/20652">
<Title>Distribute weekly status report</Title>
<Description>Test description</Description>
<Status>NotStarted</Status>
<DueDate
xsi:nil="true" />
<PlannedStartDate>2013-08-10T00:00:00Z</PlannedStartDate>
<Owner
Id="446048"
Uri="/users/446048">
<DisplayName>Joe Walsh</DisplayName>
<Username>[email protected]</Username>
<LogoPath>/images/logos/avatar.jpg</LogoPath>
<Email>[email protected]</Email>
</Owner>
<Assignments />
<CompletedDate
xsi:nil="true" />
<CompletedBy
xsi:nil="true" />
<CreatedDate>2013-09-03T13:43:42.0588214Z</CreatedDate>
<UpdatedDate>2013-09-03T13:43:42.0588214Z</UpdatedDate>
<Attachments />
<Comments />
<WorkspaceSummary
Id="446057"
Uri="/workspaces/446057">
<DisplayName>Default Workspace</DisplayName>
</WorkspaceSummary>
<CustomFields />
<CollectionId>33</CollectionId>
</Task>
<Task
Id="20653"
Uri="/v2/calendar/events/20653">
<Title>Distribute weekly status report</Title>
<Description>Test description</Description>
<Status>NotStarted</Status>
<DueDate
xsi:nil="true" />
<PlannedStartDate>2013-08-17T00:00:00Z</PlannedStartDate>
<Owner
Id="446048"
Uri="/users/446048">
<DisplayName>Joe Walsh</DisplayName>
<Username>[email protected]</Username>
<LogoPath>/images/logos/avatar.jpg</LogoPath>
<Email>[email protected]</Email>
</Owner>
<Assignments />
<CompletedDate
xsi:nil="true" />
<CompletedBy
xsi:nil="true" />
<CreatedDate>2013-09-03T13:43:42.0588214Z</CreatedDate>
<UpdatedDate>2013-09-03T13:43:42.0588214Z</UpdatedDate>
<Attachments />
<Comments />
<WorkspaceSummary
Id="446057"
Uri="/workspaces/446057">
<DisplayName>Default Workspace</DisplayName>
</WorkspaceSummary>
<CustomFields />
<CollectionId>33</CollectionId>
</Task>
<Task
Id="20654"
Uri="/v2/calendar/events/20654">
<Title>Distribute weekly status report</Title>
<Description>Test description</Description>
<Status>NotStarted</Status>
<DueDate
xsi:nil="true" />
<PlannedStartDate>2013-08-24T00:00:00Z</PlannedStartDate>
<Owner
Id="446048"
Uri="/users/446048">
<DisplayName>Joe Walsh</DisplayName>
<Username>[email protected]</Username>
<LogoPath>/images/logos/avatar.jpg</LogoPath>
<Email>[email protected]</Email>
</Owner>
<Assignments />
<CompletedDate
xsi:nil="true" />
<CompletedBy
xsi:nil="true" />
<CreatedDate>2013-09-03T13:43:42.0588214Z</CreatedDate>
<UpdatedDate>2013-09-03T13:43:42.0588214Z</UpdatedDate>
<Attachments />
<Comments />
<WorkspaceSummary
Id="446057"
Uri="/workspaces/446057">
<DisplayName>Default Workspace</DisplayName>
</WorkspaceSummary>
<CustomFields />
<CollectionId>33</CollectionId>
</Task>
</TaskCollection>
You can delete a task collection by issuing a DELETE request to a task collection URI. The task collection URI is indicated by the uri attribute of the TaskCollection element that is returned upon successful creation of a task collection (see above response for an example).
DELETE /v2/calendar/eventcollection/987 HTTP/1.1
Accept: application/xml
Authorization: OAuth2 frootymcnooty/vonbootycherooty
If successful, this operation will return a 200 OK.
HTTP/1.1 200 OK
Content-Type: application/xml
Name | Description |
---|---|
@Id | A unique identifier of the task or task CollectionId. |
@Uri | The current URI of the task or task CollectionId. |
Title | The title of all tasks in a CollectionId. |
Description | Description of all tasks in a CollectionId. |
Status | The state of the tasks, one of NotStarted, InProgress or Complete. |
PlannedStartDate | The date by which the earliest task should be started. |
RecurrenceFrequency | The frequency of the recurring tasks |
Owner | The UserSummary of the creator of the tasks. |
Assignments | A collection containing the details of the assignments for the tasks. |
Assignments.Assignment.Assignee | The UserSummary of the user assigned to complete the tasks. |
Assignments.Assignment.Assigner | The UserSummary of the user who assigned the assignee to complete the tasks. |
CompletedDate | The date the tasks were marked as complete. |
CompletedBy | The UserSummary of the user who marked the tasks as complete. |
- Basic concepts
-
Resources
- Actor
- Approvals
- BulkProcess
- Calendar
- Membership
- Company
- Document
- Document library settings
- Folder
- Paged Folder
- Pins
- Integrations
- Form
- Friends
- Invitation
- Link
- Document Lock
- Folder Lock
- Localisation
- MemberAutocomplete
- Notifications
- Offline item
- PeopleBulkProcess
- Permissions
- Presence
- PublishedDocuments
- Recents
- Recommendations
- Recycle Bin
- Search
- Share
- Tasks (Todos), File Requests, Approvals
- Tasks on Documents
- Actions
- UserApprovals
- User
- VersionHistory
- Workspace
- Workspaces
- SamlPartners
- Logout
- Impersonation
- Administration
- WebHooks