Optivize Calendar Feature

📅 Optivize Calendar Feature

This calendar helps your business stay organized by letting you manually add and manage important information.

✅ Key Functions:

  • Add Event: Manually input meetings, deadlines, or appointments to keep your team on track.
  • Add New Shipment: Record incoming or outgoing shipments to monitor your inventory and logistics.
  • Add New Task: Create and assign tasks to team members to ensure nothing gets missed.
  • Manage Employees: Input and update employee details to keep your team database current and accessible.
🎯 Designed to give you direct control over your business scheduling and operations.

Add Event

This function allows you to manually create calendar events such as meetings, deadlines, or appointments. You can enter the event details and date/time to help everyone stay informed and punctual.

POST /events
{
  "title": "Team Meeting",
  "start": "2025-06-05T14:00:00",
  "end": "2025-06-05T15:00:00"
}
      

Add New Shipment

Use this feature to log shipments, whether incoming or outgoing. You can input shipment details such as date, contents, and status to keep track of your inventory movement and supply chain activities.

POST /shipments
{
  "item": "Boxes of Cookies",
  "status": "Incoming",
  "expectedDate": "2025-06-07"
}
      

Add New Task

This section lets you add tasks that need to be completed. Assign them to employees or teams with deadlines, ensuring that everyone knows their responsibilities and priorities.

POST /tasks
{
  "description": "Clean lobby area",
  "assignedTo": "employee123",
  "dueDate": "2025-06-01"
}
      

Manage Employees

Keep an updated list of all employees, including their roles and contact information. This helps streamline communication and team management.

POST /employees
{
  "name": "Jane Doe",
  "role": "Shift Manager",
  "email": "jane@example.com"
}