Juganu LMS API  V 3.0.0.5
Juganu Lighting Control API
Types
CRUD for types

Get all types

Get the list of types.

    Definition/Term Description
    Request URL {{URL-Base}}/led/type
    Method GET
    Header Authorization *required Bearer token
    Response application/json
    Example:
    [
    {
    "id": 1,
    "description": "LED"
    },
    {
    "id": 2,
    "description": "LED (No Controller)"
    },
    {
    "id": 3,
    "description": "Other LED"
    },
    {
    "id": 4,
    "description": "LED (Logic)"
    },
    {
    "id": 5,
    "description": "PM/RLY"
    },
    {
    "id": 6,
    "description": "LED (Protection)"
    },
    {
    "id": 7,
    "description": "LED (Wifi)"
    },
    {
    "id": 8,
    "description": "Smart with UVA"
    },
    {
    "id": 9,
    "description": "Smart"
    }
    ]

Get type

Get type by id.

    Definition/Term Description
    Request URL {{URL-Base}}/led/type/{idType}
    Method GET
    Header Authorization Bearer token
    {idType} *required Integer
    Response application-json
    Example:
    {
    "id": 1,
    "description": "LED"
    }