Skip to main content

Emergency Mgmt Catalog Events

List of Catalogs

CatalogDescription
ERO CatalogEmergency Response Officer details.
Ambulance CatalogDetails about the Ambulance.


"Required Catalog Fields"

Some catalog fields can be marked as optional below but may be required for your app. Please refer to your integration notes to verify which fields are required for your use-case.

ERO Catalog

Below are the ERO Catalog values.

Format

ParamUsabilityFormatDescription
statusREQUIREDSTRINGCurrent status of the ERO user, active or disabled provided by the partner
joining_dateOPTIONALSTRINGJoining date for the ERO in ISO 8601 format
employee_typeOPTIONALSTRINGEmployee type of the ERO user, active or disabled provided by the partner
zoneOPTIONALSTRINGZone of the ERO user, active or disabled provided by the partner
site_id_listOPTIONALARRAY(STRING)List of sites for the ERO user, provided by the partner.
supervisor_id_lstOPTIONALARRAY(STRING)List of supervisors for the ERO user, provided by the partner.

Usage

     let eroCatalog = {
joining_date: "2025-02-01T12:00:27.87+02:00",
status: "active",
site_id_list: ["value1", "value2"],
}

EmergencyMgmt.logCatalogEvent("John_EMS_TEST", EmergencyMgmtCatalogType.ERO, eroCatalog)

=== "Web Application (JS/TS)"

=== "JSON"



Ambulance Catalog

Below are the Ambulance Catalog values.

Format

ParamUsabilityFormatDescription
typeREQUIREDSTRINGtype of the ambulance, provided by the partner.
base_site_idOPTIONALSTRINGBase site id for the ambulance, provided by the partner.
base_site_nameOPTIONALSTRINGBase site name for the ambulance, provided by the partner.
base_site_districtOPTIONALSTRINGBase site district for the ambulance, provided by the partner.

Usage

     let ambulanceCatalog = {
type: "active",
base_site_id: "value1"
}

EmergencyMgmt.logCatalogEvent("John_AMB_TEST", EmergencyMgmtCatalogType.Ambulance, ambulanceCatalog)