curl --location 'https://api.astravue.com/v1/tasks//subtasks' \
--header 'X-Org-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"taskTitle": "Implement user authentication",
"description": "This subtask involves implementing the user authentication module.",
"owners": [
1,
2,
3
],
"startDate": "2023-10-01T00:00:00Z",
"dueDate": "2023-10-15T00:00:00Z",
"noOfDays": 5,
"completion": 50,
"status": "In Progress",
"priority": "High",
"tags": [
"backend",
"urgent"
]
}'