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: Document Library

Documents in any status with their categories and attached files.

Calling the Endpoint
HTTP Request TypeGET
Calling URIhttps://www.YourDepartment.com/apps/api/documents/
Request HeaderAuthorization: Bearer {access_token}
Parameters
ParameterDescription
ID Optional. A single document ID.
CategoryID Optional. Limit to one category (the categoryId value).
Public Optional. 1 = only documents marked public.
StartDate Optional. Only documents posted on or after this date (yyyy-mm-dd).
EndDate Optional. Only documents posted on or before this date (yyyy-mm-dd).
Response Properties
PropertyDescription
id Document ID (number)
title Document title (string)
text Document body, may contain HTML (string)
status Status: 0 = Pending, 1 = Offline, 2 = Online (number)
public 1 = visible on the public website (number)
categoryId Category ID (number)
category Category name (string)
created Posted date/time (string)
createdBy Posting member's name (string)
modified Last modified date/time; empty if never modified (string)
modifiedBy Modifying member's name; empty if never modified (string)
files Array of {id, fileName, extension, fileSize} attached files
Sample Request
GET https://www.YourDepartment.com/apps/api/documents/?MaxRows=1
Authorization: Bearer {access_token}
Sample Response
{
    "status": 200,
    "endpoint": "documents",
    "domain": "www.YourDepartment.com",
    "generated": "2026-09-06 09:15:00",
    "startRow": 1,
    "maxRows": 1,
    "count": 1,
    "totalCount": 34,
    "items": [
        {
            "id": 52,
            "title": "Standard Operating Guidelines",
            "text": "Current SOGs for all fireground operations. See the attached PDF.",
            "status": 2,
            "public": 0,
            "categoryId": 2,
            "category": "Operations",
            "created": "2026-06-12 09:00:00",
            "createdBy": "Chief Miller",
            "modified": "2026-08-20 16:40:00",
            "modifiedBy": "Jane Doe",
            "files": [
                {
                    "id": 77,
                    "fileName": "SOG2026.pdf",
                    "extension": "pdf",
                    "fileSize": 482113
                }
            ]
        }
    ]
}

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