GET api/lightsandheating/customers/{customerId}/gateways/{gatewayAssetId}/devices/{deviceAssetId}/reminders/{reminderId}
Get one sprecified reminder with given guid id
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 |
| reminderId |
Id of the reminder |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Reminder with given guid id
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": "4f593364-9f59-40e2-b73f-9921fb8c9801",
"IsActive": true,
"Device": {
"AssetId": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"DeviceType": 1,
"Values": [
{
"$id": "1",
"ValueCategory": 1,
"ValueTime": "2025-12-21T10:46:42.7432982+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"
}
text/html
Sample:
{"ReminderId":"4f593364-9f59-40e2-b73f-9921fb8c9801","IsActive":true,"Device":{"AssetId":1,"Name":"sample string 2","Description":"sample string 3","DeviceType":1,"Values":[{"$id":"1","ValueCategory":1,"ValueTime":"2025-12-21T10:46:42.7432982+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"}