Task

Find tasks on a project

get/v1/workspaces/{workspaceId}/projects/{projectId}/tasks

Path parameters

projectIdstring required

Represents a project identifier across the system.

Example:25b687e29ae1f428e7ebe123

Represents a project identifier across the system.

workspaceIdstring required

Represents a workspace identifier across the system.

Example:64a687e29ae1f428e7ebe303

Represents a workspace identifier across the system.

Query parameters

namestring

If provided, you'll get a filtered list of tasks that matches the provided string in their name.

Example:Bugfixing

If provided, you'll get a filtered list of tasks that matches the provided string in their name.

strict-name-searchboolean

Flag to toggle on/off strict search mode. When set to true, search by name only will return tasks whose name exactly matches the string value given for the 'name' parameter. When set to false, results will also include tasks whose name contain the string value, but could be longer than the string value itself. For example, if there is a task with the name 'applications', and the search value is 'app', setting strict-name-search to true will not return that task in the results, whereas setting it to false will.

Flag to toggle on/off strict search mode. When set to true, search by name only will return tasks whose name exactly matches the string value given for the 'name' parameter. When set to false, results will also include tasks whose name contain the string value, but could be longer than the string value itself. For example, if there is a task with the name 'applications', and the search value is 'app', setting strict-name-search to true will not return that task in the results, whereas setting it to false will.

is-activeboolean

Filters search results whether task is active or not.

Filters search results whether task is active or not.

pageinteger

Page number.

Example:1

Page number.

page-sizeinteger

Page size.

Example:50

Page size.

sort-column'ID' | 'NAME'

Represents the column as criteria for sorting tasks.

sort-order'ASCENDING' | 'DESCENDING'

Sorting mode.

Response

OK

TaskDtoV1[] required— unresolved $ref

Changes