Back to Resources

team

read:team
bizily://team

Get team members and their availability. Can filter by date to see who's working, or check if specific team members are available at a given time.

Parameters

Input Parameters

PropertyTypeDescription
datestringFilter by date (YYYY-MM-DD)
checkAvailabilityAtstringCheck availability at specific time (ISO 8601)
durationMinutesnumberDuration to check (15-480, required with checkAvailabilityAt)
includeSchedulesboolean(default: false)Include full schedule details

Response

Response Schema

PropertyTypeDescription
membersrequiredTeamMember[]Array of team members
datestringDate filtered by (if provided)
checkedAtstringTime availability was checked (if provided)

Example

Requestjson
{
  "type": "resource",
  "name": "team",
  "params": {
    "date": "2024-01-20",
    "checkAvailabilityAt": "2024-01-20T14:00:00Z",
    "durationMinutes": 60
  }
}
Responsejson
{
  "success": true,
  "data": {
    "members": [
      {
        "id": "member-uuid",
        "name": "Sarah Johnson",
        "email": "sarah@business.com",
        "role": "stylist",
        "isActive": true,
        "workingHours": {
          "start": "09:00",
          "end": "17:00"
        },
        "isAvailable": true
      }
    ],
    "date": "2024-01-20",
    "checkedAt": "2024-01-20T14:00:00Z"
  }
}

cURL Example

curl -X POST https://app.bizily.io/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{\n  "type": "resource",\n  "name": "team",\n  "params": {\n    "date": "2024-01-20",\n    "checkAvailabilityAt": "2024-01-20T14:00:00Z",\n    "durationMinutes": 60\n  }\n}'