PUT api/tasks/{id}
Update a Task
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
the unique id of the Task |
integer |
Required |
Body Parameters
Task Information
SDTaskObject| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Name\Title of the task |
string |
None. |
| description |
Description of the Task |
string |
None. |
| status |
Status of the Task |
string |
None. |
| startDate |
Start date for the task |
date |
None. |
| endDate |
End date for the task, used to calcualte due date |
date |
None. |
| assignedUsers |
List of User ID's that this task is assigned to |
Collection of integer |
None. |
| assignedGroups |
List of Group ID's that this task is assigned to |
Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"description": "sample string 2",
"status": "sample string 3",
"startDate": "2025-10-19T11:19:22.6286223+00:00",
"endDate": "2025-10-19T11:19:22.6286223+00:00",
"assignedUsers": [
1,
2
],
"assignedGroups": [
1,
2
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.