This is how the information about the firmware on a specific device is stored.
EngageFirmwareSpec
Field | Type | Inherited from | Description |
---|---|---|---|
Description | String | EngageFirmwareSpec | Gets or sets the Description value |
DeviceType | String | EngageFirmwareSpec | Gets or sets the DeviceType value |
ExtendedVersion | String | EngageFirmwareSpec | Gets or sets the ExtendedVersion value |
IsPublic | Boolean | EngageFirmwareSpec | Gets or sets the IsPublic value |
Links | EngageLink[] | EngageFirmwareSpec | Gets or sets the Links value |
Name | String | EngageFirmwareSpec | Gets or sets the Name value |
ReleaseDate | DateTime | EngageFirmwareSpec | Gets or sets the ReleaseDate value |
Version | String | EngageFirmwareSpec | Gets or sets the Version value |
{
"Description" : "String",
"DeviceType" : "String",
"ExtendedVersion" : "String",
"IsPublic" : "Boolean",
"Links" : "[EngageLink](/object-model/engagelink)[]",
"Name" : "String",
"ReleaseDate" : "DateTime",
"Version" : "String"
}
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'