Back to Resources
team
read:teambizily://teamGet 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
| Property | Type | Description |
|---|---|---|
date | string | Filter by date (YYYY-MM-DD) |
checkAvailabilityAt | string | Check availability at specific time (ISO 8601) |
durationMinutes | number | Duration to check (15-480, required with checkAvailabilityAt) |
includeSchedules | boolean(default: false) | Include full schedule details |
Response
Response Schema
| Property | Type | Description |
|---|---|---|
membersrequired | TeamMember[] | Array of team members |
date | string | Date filtered by (if provided) |
checkedAt | string | Time 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}'