Created
October 21, 2025 02:23
-
-
Save simkeyur/c66b7b164833cdfb101bc24970d4ba75 to your computer and use it in GitHub Desktop.
TestForge API: tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "task_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef", | |
| "title": "Develop user authentication module", | |
| "description": "Implement secure user registration, login, and password reset functionality.", | |
| "assigned_to": "Alice Smith", | |
| "priority": "high", | |
| "status": "in_progress", | |
| "due_date": "2023-10-26", | |
| "created_date": "2023-10-20", | |
| "estimated_hours": 25, | |
| "tags": [ | |
| "authentication", | |
| "backend", | |
| "security" | |
| ] | |
| }, | |
| { | |
| "task_id": "b2c3d4e5-f6a7-8901-2345-67890abcdef1", | |
| "title": "Design landing page for new product", | |
| "description": "Create visually appealing and user-friendly designs for the marketing landing page, including mockups and wireframes.", | |
| "assigned_to": "Bob Johnson", | |
| "priority": "medium", | |
| "status": "review", | |
| "due_date": "2023-11-03", | |
| "created_date": "2023-10-22", | |
| "estimated_hours": 15, | |
| "tags": [ | |
| "design", | |
| "marketing", | |
| "frontend" | |
| ] | |
| }, | |
| { | |
| "task_id": "c3d4e5f6-a7b8-9012-3456-7890abcdef12", | |
| "title": "Fix critical bug in payment processing", | |
| "description": "Investigate and resolve the issue causing failed transactions in the payment gateway integration.", | |
| "assigned_to": "Charlie Brown", | |
| "priority": "urgent", | |
| "status": "todo", | |
| "due_date": "2023-10-24", | |
| "created_date": "2023-10-23", | |
| "estimated_hours": 8, | |
| "tags": [ | |
| "bugfix", | |
| "payment", | |
| "critical" | |
| ] | |
| }, | |
| { | |
| "task_id": "d4e5f6a7-b8c9-0123-4567-890abcdef123", | |
| "title": "Write API documentation for user endpoints", | |
| "description": "Document all available endpoints for user management, including request and response formats.", | |
| "assigned_to": "Diana Prince", | |
| "priority": "low", | |
| "status": "done", | |
| "due_date": "2023-10-18", | |
| "created_date": "2023-10-15", | |
| "estimated_hours": 10, | |
| "tags": [ | |
| "documentation", | |
| "api", | |
| "backend" | |
| ] | |
| }, | |
| { | |
| "task_id": "e5f6a7b8-c9d0-1234-5678-90abcdef1234", | |
| "title": "Optimize database query performance", | |
| "description": "Analyze and optimize slow database queries to improve application responsiveness.", | |
| "assigned_to": "Ethan Hunt", | |
| "priority": "medium", | |
| "status": "todo", | |
| "due_date": "2023-11-10", | |
| "created_date": "2023-10-21", | |
| "estimated_hours": 20, | |
| "tags": [ | |
| "database", | |
| "performance", | |
| "backend" | |
| ] | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment