v2
latestOpenAPI 3.0.12026-07-31690160432.4 KBProject Subtasks
Update a subtask
Update an existing subtask for a given parent task
put/v1/spaces/{spaceId}/projects/{projectId}/tasks/{taskId}/subtasks/{subtaskId}
Path parameters
spaceIdinteger required
ID of the space
projectIdinteger required
ID of the project
taskIdinteger 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": "Implement user authentication",
"description": "This subtask involves implementing the user authentication module.",
"owners": [
1,
2,
3
],
"startDate": "2023-10-01T00:00:00Z",
"dueDate": "2023-10-15T00:00:00Z",
"noOfDays": 5,
"completion": 50,
"status": "In Progress",
"priority": "High",
"tags": [
"backend",
"urgent"
]
}Response
Subtask updated successfully
Example response
{
"success": true,
"message": "Operation completed successfully",
"code": 200,
"timestamp": "2023-01-01T12:00:00Z"
}