objects

objects #

Responses of the Blicker reading endpoint are structured hierarchically. General information about the request and response are returned on the top-level. The most important information in the response though is contained in the objects. This will contain the meter object, containing general information about the meter. The meter object, in turn, also holds display, serialNumber, and barcode objects.

Example response #

The following example shows the general structure. In this case the Blicker API has found two displays, one serial number, and no barcode objects.

{
    "objects": [
        {
            "meter": {
                "objects": {
                    "display": [
                        {},
                        {}
                    ],
                    "serialNumber": [
                        {}
                    ],
                    "barcode": []
                }
            }
        }
    ]
}