GET v1/device/{deviceIdString}/firmware
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| deviceIdString | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DeviceFirmwareInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ManufacturerId | unsigned integer |
None. |
|
| ProductId | unsigned integer |
None. |
|
| ProfileId | unsigned integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ManufacturerId": 1,
"ProductId": 2,
"ProfileId": 3
},
{
"ManufacturerId": 1,
"ProductId": 2,
"ProfileId": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfDeviceFirmwareInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kimin.Cloud.Api.Models">
<DeviceFirmwareInfo>
<ManufacturerId>1</ManufacturerId>
<ProductId>2</ProductId>
<ProfileId>3</ProfileId>
</DeviceFirmwareInfo>
<DeviceFirmwareInfo>
<ManufacturerId>1</ManufacturerId>
<ProductId>2</ProductId>
<ProfileId>3</ProfileId>
</DeviceFirmwareInfo>
</ArrayOfDeviceFirmwareInfo>