added

Tasks API endpoint

Introduced a new /api/v2/tasks endpoint for creating, retrieving, updating, and deleting tasks.

GET /api/v2/tasks — List all tasks with optional filtering and pagination.

POST /api/v2/tasks — Create a new task.

GET /api/v2/tasks/:id — Retrieve details for a specific task.

PATCH/PUT /api/v2/tasks/:id — Update an existing task.

DELETE /api/v2/tasks/:id — Delete a task.

Supports filtering and includes related entity references.