EngageFirmwareSpec

Represents firmware specification for an Allegion Engage device

This is how the information about the firmware on a specific device is stored.

EngageFirmwareSpec Properties

EngageFirmwareSpec

Field Type Inherited from Description
Description String EngageFirmwareSpec Gets or sets the firmware description
DeviceType String EngageFirmwareSpec Gets or sets the device type this firmware applies to
ExtendedVersion String EngageFirmwareSpec Gets or sets the extended version information
IsPublic Boolean EngageFirmwareSpec Gets or sets whether this firmware is publicly available
Links EngageLink[] EngageFirmwareSpec Gets or sets the links for downloading the firmware
Name String EngageFirmwareSpec Gets or sets the firmware name
ReleaseDate DateTime EngageFirmwareSpec Gets or sets the release date of the firmware
Version String EngageFirmwareSpec Gets or sets the firmware version

JSON Structure of EngageFirmwareSpec

{
   "Description"	:	"String",
   "DeviceType"	:	"String",
   "ExtendedVersion"	:	"String",
   "IsPublic"	:	"Boolean",
   "Links"	:	"[EngageLink](/object-model/engagelink)[]",
   "Name"	:	"String",
   "ReleaseDate"	:	"DateTime",
   "Version"	:	"String"
}

Get Engage Firmware Spec Async

Example in C#

// Returns: IEnumerable<EngageFirmwareSpec>
var engageFirmwareSpec = await client.GetEngageFirmwareSpecAsync(FolderInfo folder, String deviceType);

Example in CURL



               curl -X GET \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/engagefirmwarespec/DEVICETYPE \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'