GET Auth Required

List Tasks

List tasks with filtering and pagination.

https://hoodsly-moc-api.wppool.dev/api/v1/tasks

Query Parameters

ParameterTypeDescription
statusstringFilter by status (pending, in_progress, completed, cancelled)
assigned_tointFilter by assignee user ID
order_idstringFilter by order ID
limitintResults per page (default: 100)
offsetintSkip N results

Response

200 OK
{
    "success": true,
    "data": [
        {
            "id": 1,
            "order_id": "WC-12345",
            "title": "Process order #12345",
            "description": "Verify measurements and prepare for production",
            "status": "in_progress",
            "assigned_to": {
                "id": 2,
                "name": "Jane Smith",
                "email": "jane@hoodslyhub.com"
            },
            "assigned_by": {
                "id": 1,
                "name": "Admin User",
                "email": "admin@hoodslyhub.com"
            },
            "deadline": "2026-01-15T17:00:00Z",
            "completed_at": null,
            "created_at": "2026-01-04T10:00:00Z",
            "updated_at": "2026-01-05T09:30:00Z"
        }
    ],
    "message": null
}
Request
GET /api/v1/status
Response