/api/tasks
REST API endpoint: /api/tasks
/api/tasks
GET
Summary: List tasks
You can filter tasks using parameters specified below. For any filter field that can get multiple options, you can specify them using comma-separated string (this will return all tasks belonging to user 1 OR user 2)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| owner | array | No | Multiple values may be separated by commas. |
| assigned_to | string | No | Filter by assigned to. |
| title | string | No | Filter by name. |
| is_open | boolean | No | Filter opened tasks |
| is_overdue | boolean | No | Filter overdue tasks |
| unassigned | boolean | No | Filter unassigned tasks |
| ordering | string | No | Which field to use when ordering the results. |
| page | integer | No | A page number within the paginated result set. |
| page_size | integer | No | Number of results to return per page. |
Responses
200
POST
Summary: Create a new task
Request Body
json{
"example": "request body"
}