ProjectActivities
Queryable, Introduced in version 2.36
GET https://localhost:8001/sv/001.1/api/v1/Common/ProjectActivities
Represents a project activity.
GUID
C123B7F8-1455-4384-9267-17FE59F28A1A
Required permission
Show Activity list – Project
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
Id | Int64 | The business key identifier of the project activity. |
|
Number | Int64 | The number of the project activity. |
|
ReportedTimeInHours | Decimal | The reported time in hours of the project activity. |
|
RestTimeInHours | Decimal | The rest time in hours of the project activity. |
|
PlannedTimeInHours | Decimal | The planned time in hours of the project activity. |
|
ShowInProjectReport | Boolean | Specifies if the project activity should be shown in the project report. |
|
ParentId | Int64 | The business key identifier of the activity's parent. References ProjectPhases. |
|
LockedDelegateWork | Boolean | Specifies if the activity's delegate work is locked. |
|
ActivityTypeId | Int64 | The business key identifier of the activity's type. References ProjectActivityTypes. |
|
ActivityType | ProjectActivityTypes | The type of the project activity.
|
|
CompletedByUserId | Int64? | The business key identifier of the application user that has completed the activity. References ApplicationUsers. |
|
ResponsibleUserId | Int64 | The business key identifier of the application user that is responsible for the activity. References ApplicationUsers. |
|
Description | String | The description of the activity. |
|
CommentId | Int64? | The business key identifier of the activity's comment. References Comments. |
|
Comment | Comments | The comment of the activity.
|
|
Status | Int32 | The status of the activity.
|
|
ReminderId | Int64? | The business key identifier of the activity's reminder. References Reminder. |
|
PlannedCompletionDate | DateTimeOffset | The planned completion date of the activity. |
|
CompletionDate | DateTimeOffset? | The completion date of the activity. |
|
PlannedStartDate | DateTimeOffset? | The planned start date of the activity. |
|
ActualStartDate | DateTimeOffset? | The actual start date of the activity. |
|
Mandatory | Boolean | Whether or not the activity is mandatory. |
Introduced in version 2.50 |
CalendarAppointmentId | String | The unique calendar appointment identifier of the activity.
|
Introduced in version 2.50 |
Example
{
"Id": 0,
"Number": 0,
"ReportedTimeInHours": 0.0,
"RestTimeInHours": 0.0,
"PlannedTimeInHours": 0.0,
"ShowInProjectReport": false,
"ParentId": 0,
"LockedDelegateWork": false,
"ActivityTypeId": 0,
"ActivityType": null,
"CompletedByUserId": null,
"ResponsibleUserId": 0,
"Description": null,
"CommentId": null,
"Comment": null,
"Status": 0,
"ReminderId": null,
"PlannedCompletionDate": "0001-01-01T00:00:00+00:00",
"CompletionDate": null,
"PlannedStartDate": null,
"ActualStartDate": null,
"Mandatory": false,
"CalendarAppointmentId": null
}