Pardon our mess These API docs are a work in progress. Endpoints, examples, and behavior may change as we continue to develop the Partner API v2.

Partner API

List available dates

GET /api/v2/calendar/availability — dates with at least one open slot in a range.

GET/api/v2/calendar/availability

Returns dates in the inclusive range that have at least one open slot. Times are evaluated in the booking calendar timezone.

Query parameters

NameRequiredDescription
fromYesYYYY-MM-DD start date
toYesYYYY-MM-DD end date
agent_uuidNoOptional team member (fixed-mode calendars)
curl -s -H "Authorization: Bearer YOUR_TOKEN" \
  "https://benefitpath.com/api/v2/calendar/availability?from=2026-07-20&to=2026-07-27"
{
  "success": true,
  "timezone": "America/New_York",
  "agent_uuid": "...",
  "available_dates": ["2026-07-21", "2026-07-22"]
}

Legacy alias

GET /webhooks/book/availability