Skip to content

Device Gateways

Device Gateways -

/api/DeviceGateways

Example request:

http://localhost:5288/api/DeviceGateways

Response:

[
{
"id": 1,
"name": "Gate1",
"description": "",
"iP_Address": "127.0.0.1",
"port": 4000,
"use_Certificate": true,
"is_Enabled": true,
"created": "2025-08-13T10:39:13.538926+03:00",
"updated": "2025-08-13T10:39:13.538926+03:00",
"is_Deleted": false
},
{
"id": 2,
"name": "Gate2",
"description": "",
"iP_Address": "10.10.10.10",
"port": 4000,
"use_Certificate": true,
"is_Enabled": true,
"created": "2025-10-30T12:01:59.158948+02:00",
"updated": "2025-10-30T12:01:59.158948+02:00",
"is_Deleted": false
}
]

/api/DeviceGateways/{id}

Get device gateway by id. Example request:

http://localhost:5288/api/DeviceGateways/2

Response:

{
"id": 2,
"name": "Gate2",
"description": "",
"iP_Address": "10.10.10.10",
"port": 4000,
"use_Certificate": true,
"is_Enabled": true,
"created": "2025-10-30T12:01:59.158948+02:00",
"updated": "2025-10-30T12:01:59.158948+02:00",
"is_Deleted": false
}