IoT Stadium

API Documentation

Telemetry

Telemetry - Get Detail of BLE Gateway

Getting the detail one of the registered BLE gateway

Get
https://api.iotstadium.com/ext/ble-gateway/:id
    {
      "key": "Content-Type",
      "value": "application/json"
    },
    {
      "key": "Authorization",
      "value": "Bearer {{token}}"
    }

Parameter

Field Type Description
id Number

The ID of the BLE Gateway that you want to get the details about

{
    "message": "success",
    "code": 200,
    "data": {
        "ble_gateways": {
            "id": 50,
            "gateway_id": "4e4e4e4e4e-5555-4444-aaaa-585858323232",
            "gateway_name": "testing",
            "description": "test",
            "connectivity_type_id": 3,
            "deveui": "DECDCEDECDCEDECCE",
            "gateway_network_id": 2,
            "location_id": null,
            "created_at": "2024-05-20 09:35:45",
            "updated_at": "2024-05-20 09:35:45",
            "token": "token code",
            "connectivity_type": {
                "id": 3,
                "name": "LoRaWAN"
            },
            "device_thethings": {
                "id": 261,
                "app_key": "DE453DE536E34385536ED3D354E36E35",
                "join_eui": "666FFFED35E536DD",
                "frequency_plan_id": "EU_863_870",
                "lorawan_phy_version": "PHY_V1_0",
                "lorawan_version_mac": "MAC_V1_0",
                "dev_eui": "DECDCEDECDCEDECCE",
                "downlink_encoder": "",
                "uplink_decoder": "",
                "device_type_id": 0
            },
            "gateway_network": {
                "id": 2,
                "name": "Helium"
            },
            "gateway_image_default": [],
            "location": null,
            "location_custom_field": []
        }
    }
}
{
    "message": "data not found",
    "errors": [
        {
            "message": "data not found",
            "field": "ble_gateway"
        }
    ],
    "code": 404
}