Project Tasks
Update a project task
Update a project task by its ID
put/v1/spaces/{spaceId}/projects/{projectId}/tasks/{taskId}
Path parameters
spaceIdinteger required
ID of the space
projectIdinteger required
ID of the project
taskIdinteger required
ID of the task to be updated
Headers
X-Org-Idinteger required
Organization ID
Request body
Example request
{
"taskTitle": "Implement API endpoint",
"description": "Create a REST API endpoint for user authentication",
"owners": [
1,
2,
3
],
"startDate": "2023-10-01T00:00:00.000Z",
"dueDate": "2023-10-15T00:00:00.000Z",
"noOfDays": 5,
"completion": 50,
"status": "In Progress",
"priority": "High",
"tags": [
"backend",
"api"
]
}Response
Project task updated successfully
Changes
Changed in 1 of the 10 revisions of this API.11
- ▲
removed the media type
application/hal+jsonfor the response with the statusresponse-media-type-removed
- ○
added the media type
application/vnd.hal+jsonfor the response with the statusresponse-media-type-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲