Projects
List project tasks
Retrieve a paginated list of tasks for a specific project. For example, use the following cURL command:
```bash
curl -X GET http://localhost:8000/api/projects/{id}/tasks/?page=1&page_size=10 -H 'Authorization: Token abc123'
```
get/api/projects/{id}/tasks/
Path parameters
idinteger required
A unique integer value identifying this project.
Query parameters
orderingstring
Which field to use when ordering the results.
pageinteger
[or "start"] current page
page_sizeinteger
[or "length"] tasks per page, use -1 to obtain all tasks (in this case "page" has no effect and this operation might be slow)