IoT Stadium

API Documentation

LoRaWAN Gateway

LoRaWAN Gateway - GET TTN Gateway Type List

Lists supported TTN gateway types (e.g., packet forwarder, basic station). Useful during setup to ensure compatibility with your gateway device model.

Get
https://api.iotstadium.com/ext/ttn-gateway-type
{
	"key": "Content-Type",
	"value": "application/json"
},
{
	"key": "Authorization",
	"value": "Bearer {{token}}"
},
{
    "message": "success",
    "code": 200,
    "data": {
        "gateway_types": [
            {
                "id": 0,
                "ttn_gateway_type_name": "The Things Network"
            },
            {
                "id": 1,
                "ttn_gateway_type_name": "ChirpStack"
            }
        ]
    }
}
{
    "success": false,
    "error": {
        "code": 401,
        "message": "Unauthorized: Invalid token"
    }
}