Products informations

You can use EvoApi to obtain configuration informations about your products but also use simple requests to monitor your product fleet.

List of products

Returns the list of all your products.

curl -b "evoapi-cookie.txt" -X POST "https://rest.evoweb.elancite.fr/v1/products"
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{
    "products": [
        {
            "prod_identification": "001EC087F7E1",
            "name": "KAL105",
            "city": "Hull",
            "street_1": "Corner of Main and Bridge Streets",
            "street_2": "Near the baker shop",
            "longitude": 1.64391210,
            "latitude": 47.26069800
        }
    ]
}

Note

Each product has a unique prod_identification. You should use this id for future requests.

Product monitoring

Returns hardware status of a product (or all of your products).

curl -b "evoapi-cookie.txt" -X POST "https://rest.evoweb.elancite.fr/v1/monitoring/001EC08273B8"
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{
  "products": [
    {
      "lastConnection": "2022-06-14 03:56:12",
      "prod_identification": "001EC08273B8",
      "status": {
        "antenna": 0,
        "battery": 0,
        "clock": 0,
        "memory": 4,
        "numericDisplay": 0,
        "textDisplay": 0
      }
    }
  ],
  "updated": "2022-06-15 15:20:42"
}

Note

Just replace the product identification string (001EC08273B8 in our example) by the keyword all to obtain the same information for all your products.

Warning

Research is limited to the events that have appeared on the last 24 hours.