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: Guestbook

Guestbook entries in any status.

Calling the Endpoint
HTTP Request TypeGET
Calling URIhttps://www.YourDepartment.com/apps/api/guestbook/
Request HeaderAuthorization: Bearer {access_token}
Parameters
ParameterDescription
ID Optional. A single entry ID.
StartDate Optional. Only entries on or after this date (yyyy-mm-dd).
EndDate Optional. Only entries on or before this date (yyyy-mm-dd).
Response Properties
PropertyDescription
id Entry ID (number)
created Entry date/time (string)
status Status: 0 = Pending, 1 = Offline, 2 = Online (number)
name Visitor name (string)
email Visitor email address (string)
rank Visitor rank or title (string)
location Visitor location (string)
website Visitor website (string)
text Entry text (string)
Sample Request
GET https://www.YourDepartment.com/apps/api/guestbook/?MaxRows=1
Authorization: Bearer {access_token}
Sample Response
{
    "status": 200,
    "endpoint": "guestbook",
    "domain": "www.YourDepartment.com",
    "generated": "2026-09-06 09:15:00",
    "startRow": 1,
    "maxRows": 1,
    "count": 1,
    "totalCount": 128,
    "items": [
        {
            "id": 305,
            "created": "2026-09-02 19:47:00",
            "status": 2,
            "name": "Bob Wilson",
            "email": "bwilson@example.com",
            "rank": "Retired Captain",
            "location": "Peoria, IL",
            "website": "",
            "text": "Great website! Proud to see my old company doing so well."
        }
    ]
}

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