Returns all activities of the task with the specified id.

The activities contain information about the type of the activity, which property was changed and by whom. This contains changes to first-level properties of the task, like name, description, status, etc., as well as several related entities, such as tags, assignments, etc. This does not include activities of sub-entities, like tasks of a project or comments on a task. <Check title="Required Permissions" icon="key">Any authenticated user.</Check>

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

taskIdstringRequiredformat: "uuid"
The id of the task.

Query parameters

pageintegerOptionalDefaults to 1
Page number for pagination
pageSizeintegerOptionalDefaults to 10
Number of items per page
orderbystringOptional
The properties to order by
filterbystringOptional
The filter expression to filter by

Response

OK
idstringformat: "uuid"
entityTypestring or null
The type of the entity
entityIdstringformat: "uuid"
entityobject
createdBystringformat: "uuid"
updatedBystringformat: "uuid"
createdOndatetime
updatedOndatetime
eventTypestring or null

The type of the event of this activity log (e.g: added, updated, deleted)

eventDatedatetime
changedPropertystring or null
The name of the property that has changed.
oldPropertyValuestring or null

The previous value of the updated property (as string).

newPropertyValuestring or null

The new value for the property (as string).

oldPropertyany or null
The old property value, if the property is a complex object. This is used to store the old value of the property when it is an object, like a user or a task.
newPropertyany or null
The new property value, if the property is a complex object. This is used to store the new value of the property when it is an object, like a user or a task.
userIdstring or nullformat: "uuid"
The id of the user that performed the action that created this activity log entry.
userobject
parentIdstring or nullformat: "uuid"
projectIdstring or nullformat: "uuid"
projectobject
taskIdstring or nullformat: "uuid"
taskobject
assignedUserIdstring or nullRead-onlyformat: "uuid"
assignedUserobject
unassignedUserIdstring or nullRead-onlyformat: "uuid"
unassignedUserobject
dueDatedatetime or null
durationinteger or null
memberIdstring or nullRead-onlyformat: "uuid"
memberobject

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error