GET Auth Required

Get Task

Get task details by ID.

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

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