pyBreezeChMS icon indicating copy to clipboard operation
pyBreezeChMS copied to clipboard

Feature request: Get attendance records of any profile

Open wickeym opened this issue 1 year ago • 1 comments

Hi, I would like to retrieve the attendance records of any particular profile. I would like the info that is available via this page also available via an API: https://.breezechms.com/people/view/<profile_id>/attendance

wickeym avatar Nov 04 '22 19:11 wickeym

Boy, that would be nice, wouldn't it?

Unfortunately, this particular Python package is apparently dead, and Breeze no longer supports the underlying API it uses. See breeze-chms-api for a more "live" version of the Python implementation, but even that can only support what the underling Breeze API supports.

It wouldn't be too, awfully hard to implement this using the the existing API, though. Basically you'd have to use list_events() to get a list of potential events, then list_attendance() for each event, and built yourself a mapping from attendees' profiles to a collection of events attended. A lot of work if you're really only interested in one profile, but that's what's possible given the existing API.

dawillcox avatar Dec 10 '23 20:12 dawillcox