Personal Subtasks
Update a subtask for a personal task
Update an existing subtask for a given personal task
put/v1/tasks/{parentTaskId}/subtasks/{subtaskId}
Path parameters
parentTaskIdinteger required
ID of the parent task
subtaskIdinteger required
ID of the subtask to update
Headers
X-Org-Idinteger required
Organization ID
Request body
Example request
{
"taskTitle": "Update user authentication",
"description": "This subtask involves updating the user authentication module.",
"owners": [
1,
2,
3
],
"startDate": "2023-10-01T00:00:00.000Z",
"dueDate": "2023-10-15T00:00:00.000Z",
"noOfDays": 5,
"completion": 75,
"status": "Completed",
"priority": "Medium",
"tags": [
"frontend",
"low-priority"
]
}Response
Subtask updated successfully
Example response
{
"success": true,
"message": "Operation completed successfully",
"code": 200,
"timestamp": "2023-01-01T12:00:00Z"
}Changes
Changed in 2 of the 10 revisions of this API.12
- ▲
the
data/customFields/items/fieldValue/items/valueresponse's property type/format changed fromobject/to/for status200response-property-type-changed
- ○
added the optional property
data/internalto the response with the200statusresponse-optional-property-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
- ○
endpoint added
endpoint-added
- ○