POST /prod/bill-internal/tasks

Example
{
  "title": "Fix hole",
  "description": "The hole in the study is gapeing and needs to be fixed.",
  "date": "2024-02-25 10:00"
}

Response
- 201 Created - Task successfully scheduled
- 400 Bad Request - Invalid request body

Example Response

{
  "id": "123456",
  "title": "Fix hole",
  "description": "The hole in the study is gapeing and needs to be fixed.",
  "date": "2024-02-25 10:00",
  "assigned_to": "Bill",
  "status": "Scheduled"
}