Skip to main content

Activity

published Getting when submitting RSVPs in Questions
posted 2015-11-04 08:53:59 -0800
commented on Reports dashboard with number count of prospects in a filter?
A Workaround for some folks:

I was looking into a similar issue. We wanted an API endpoint to grab supporter_count and volunteer_count. I couldn’t find an endpoint that would allow me to grab this data, but since the page templates do, I created a page and overrode the default template so the page would simple return some JSON. My template:
{
"supporter_count": {{ settings.supporters_count }},
"volunteer_count": {{ settings.volunteers_count }}
}
posted 2015-03-01 18:17:46 -0800