GET api/monitor/gateways/{id}
Get information about a gateway. For use by monitor applications.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of the gateway |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Information about the gateway
GatewayResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| GatewayId | globally unique identifier |
None. |
|
| TelemetryUrl | string |
None. |
|
| TelemetrySAStoken | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"GatewayId": "5fc37919-bddb-4d8c-a088-0987eb25dff6",
"TelemetryUrl": "sample string 2",
"TelemetrySAStoken": "sample string 3"
}
application/xml, text/xml
Sample:
<GatewayResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eSmart.Backend.Service.IoTManagement.Models"> <GatewayId>5fc37919-bddb-4d8c-a088-0987eb25dff6</GatewayId> <TelemetrySAStoken>sample string 3</TelemetrySAStoken> <TelemetryUrl>sample string 2</TelemetryUrl> </GatewayResponse>