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 slots for a date

GET /api/v2/calendar/availability/:date — open time slots for a specific day.

GET/api/v2/calendar/availability/:date

:date must be YYYY-MM-DD. Slot strings are HH:MM wall-clock times in the calendar timezone.

curl -s -H "Authorization: Bearer YOUR_TOKEN" \
  "https://benefitpath.com/api/v2/calendar/availability/2026-07-21"
{
  "success": true,
  "date": "2026-07-21",
  "timezone": "America/New_York",
  "agent_uuid": "...",
  "slots": ["09:00", "09:30", "10:00", "14:30"]
}

Legacy alias

GET /webhooks/book/availability/:date