GET api/lightsandheating/customers/{customerId}/gateways/{gatewayAssetId}/devices/{deviceAssetId}/reminders
Get all reminders for given device.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId |
Customer who is connected to gateway and devices |
integer |
Required |
| gatewayAssetId |
Gateway which is connected to device |
integer |
Required |
| deviceAssetId |
Device where reminder is storred |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Reminders created for the device
Collection of ReminderSettings| Name | Description | Type | Additional information |
|---|---|---|---|
| ReminderId | globally unique identifier |
None. |
|
| IsActive | boolean |
None. |
|
| Device | DeviceResponse |
None. |
|
| TemperatureSettings | TemperatureSettings |
None. |
|
| MovementSettings | time interval |
None. |
|
| MeterNo | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ReminderId": "578dbf4d-1068-49da-b3c2-d49cdc08a4c6",
"IsActive": true,
"Device": {
"AssetId": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"DeviceType": 1,
"Values": [
{
"$id": "1",
"ValueCategory": 1,
"ValueTime": "2025-12-24T00:34:03.9184281+00:00",
"ValueSubCategory": 1,
"Value": 1.1,
"ValueUnit": 0
},
{
"$ref": "1"
}
]
},
"TemperatureSettings": {
"CompareType": 0,
"Value": 1.1
},
"MovementSettings": "00:00:00.1234567",
"MeterNo": "sample string 3"
},
{
"ReminderId": "578dbf4d-1068-49da-b3c2-d49cdc08a4c6",
"IsActive": true,
"Device": {
"AssetId": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"DeviceType": 1,
"Values": [
{
"$ref": "1"
},
{
"$ref": "1"
}
]
},
"TemperatureSettings": {
"CompareType": 0,
"Value": 1.1
},
"MovementSettings": "00:00:00.1234567",
"MeterNo": "sample string 3"
}
]
text/html
Sample:
[{"ReminderId":"578dbf4d-1068-49da-b3c2-d49cdc08a4c6","IsActive":true,"Device":{"AssetId":1,"Name":"sample string 2","Description":"sample string 3","DeviceType":1,"Values":[{"$id":"1","ValueCategory":1,"ValueTime":"2025-12-24T00:34:03.9184281+00:00","ValueSubCategory":1,"Value":1.1,"ValueUnit":0},{"$ref":"1"}]},"TemperatureSettings":{"CompareType":0,"Value":1.1},"MovementSettings":"00:00:00.1234567","MeterNo":"sample string 3"},{"ReminderId":"578dbf4d-1068-49da-b3c2-d49cdc08a4c6","IsActive":true,"Device":{"AssetId":1,"Name":"sample string 2","Description":"sample string 3","DeviceType":1,"Values":[{"$ref":"1"},{"$ref":"1"}]},"TemperatureSettings":{"CompareType":0,"Value":1.1},"MovementSettings":"00:00:00.1234567","MeterNo":"sample string 3"}]