Task Status Controller
Get task statuses with filters
get/task-status
Query parameters
searchstring
Example:To Do
Search by status name
isSystemDefinedboolean
Example:true
Filter by system defined status
sortBy'status' | 'createdAt' | 'isSystemDefined'
Example:createdAt
Field to sort by
sortType'ASC' | 'DESC'
Example:ASC
Sort direction
pagenumber required
Page number for pagination
sizenumber required
Example:10
Number of items per page
Response
Task statuses retrieved successfully
Example response
{
"totalItems": 4,
"items": [
{
"id": 1,
"status": "To Do",
"backgroundColor": "#6B7280",
"textColor": "#FFFFFF",
"borderColor": "#4B5563",
"isSystemDefined": true,
"createdByName": "John Doe"
}
],
"size": 10
}Changes
No recorded changes to this endpoint across all 1 revision of this API.