Slatis

Team Members

List team members, check their availability, and assign bookings to specific members.

List team members

GET /team/members

Optional filter: ?isActive=true

Response includes each member's role, skills, and workload capacity.

Get a specific member

GET /team/members/{id}

Get available members

Returns team members who are available during a given time window:

GET /team/members/available?startTime={ISO}&endTime={ISO}&eventTypeId={id}

Useful for pre-filtering the member list before showing assignment options.

Assign a booking to a specific member

Pass assignTo (team member ID) when creating a booking to bypass the routing algorithm:

{
  "eventTypeId": "evt_01abc",
  "attendee": { ... },
  "requestedTime": "2026-05-01T14:00:00Z",
  "assignTo": "mem_01xyz"
}

The specified member's calendar availability is still validated.

On this page