Skip to main content

Overview

The Staffing API manages team workload distribution and capacity planning. Base Path: /api/staffing

Endpoints

Get Team Workload

GET /api/staffing/workload
Response:
{
  "team_members": [
    {
      "user_id": "user-1",
      "name": "John Doe",
      "active_deals": 8,
      "total_deal_value": 2000000,
      "capacity": 75
    }
  ]
}

Assign Deal

POST /api/staffing/assign
Request Body:
{
  "deal_id": "deal-uuid",
  "assignee_id": "user-uuid"
}

Next Steps