Firehouse Solutions
Web Design and Data Management for Firefighters, Rescue Techs, EMTS, Medics, and All Others Who Save Lives
Phone 301.475.1900
Web Design and Data Management for Firefighters, Rescue Techs, EMTS, Medics, and All Others Who Save Lives Phone 301.475.1900   
Firehouse Solutions Firehouse Solutions


September 21, 2026:
What's New: Upgraded HTML Editor and the Firehouse Solutions API
August 15, 2026:
Training Center Now Available
April 20, 2026:
Release of AI Writing Tool and Two-Factor Authentication
October 30, 2025:
Schedule News Posts for Automated Go Live and Come Down
August 30, 2025:
Light and Dark Mode, Calendar Email Reminders, Emoji Support, and Video Galleries
October 17, 2024:
Why Your Organization Needs Email Archiving
API: Public Events

Public events in any status. Without a date range, returns current and upcoming events; All=1 lists every event past and future.

Calling the Endpoint
HTTP Request TypeGET
Calling URIhttps://www.YourDepartment.com/apps/api/events/
Request HeaderAuthorization: Bearer {access_token}
Parameters
ParameterDescription
ID Optional. A single event ID.
All Optional. 1 = list every event past and future.
StartDate Optional. Start of the date range; events overlapping the range are returned.
EndDate Optional. End of the date range.
Response Properties
PropertyDescription
id Event ID (number)
title Event title (string)
status Status: 0 = Pending, 1 = Offline, 2 = Online (number)
location Location (string)
contact Point of contact (string)
text Event details (string)
startDate Event start date (string, yyyy-mm-dd)
endDate Event end date (string, yyyy-mm-dd)
allDay 1 = all-day event (number)
startTime Start time when not all-day (string)
endTime End time when not all-day (string)
created Created date/time (string)
createdBy Creating member's name (string)
modified Last modified date/time; empty if never modified (string)
modifiedBy Modifying member's name; empty if never modified (string)
Sample Request
GET https://www.YourDepartment.com/apps/api/events/?MaxRows=1
Authorization: Bearer {access_token}
Sample Response
{
    "status": 200,
    "endpoint": "events",
    "domain": "www.YourDepartment.com",
    "generated": "2026-09-06 09:15:00",
    "startRow": 1,
    "maxRows": 1,
    "count": 1,
    "totalCount": 5,
    "items": [
        {
            "id": 31,
            "title": "Community Open House",
            "status": 2,
            "location": "Station 1",
            "contact": "Lt. Brown",
            "text": "Join us for truck tours, live demonstrations, food, and fire prevention activities for the kids.",
            "startDate": "2026-10-11",
            "endDate": "2026-10-11",
            "allDay": 0,
            "startTime": "11:00:00",
            "endTime": "15:00:00",
            "created": "2026-08-30 12:10:00",
            "createdBy": "Jane Doe",
            "modified": "",
            "modifiedBy": ""
        }
    ]
}

Records are returned in the items array. count is the number of records in this response; totalCount is all matching records regardless of paging. Page with StartRow and MaxRows (default 100, maximum 1000) until count + startRow exceeds totalCount.


Back to the API Documentation