/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

NameTypeRequiredDescription
ownerarrayNoMultiple values may be separated by commas.
assigned_tostringNoFilter by assigned to.
titlestringNoFilter by name.
is_openbooleanNoFilter opened tasks
is_overduebooleanNoFilter overdue tasks
unassignedbooleanNoFilter unassigned tasks
orderingstringNoWhich field to use when ordering the results.
pageintegerNoA page number within the paginated result set.
page_sizeintegerNoNumber of results to return per page.

Responses

200

POST

Summary: Create a new task

Request Body

json
{
  "example": "request body"
}

Responses

200

/api/tasks | LogZilla Documentation