Example – Signal Strength History

  • GET /api/v2/devices/(serial or UUID)/signal_strength
    • Returns history of cell radio signal strength.
      • Parameters:
        • start_date – defaults to 10 days ago
        • end_date – defaults to tomorrow (so as to get all data)
        • dates must be YYYY-MM-DD formatted
        {
          "id": "MTS-JP-501",
          "type": "devices",
          "attributes": {
            "signal_strength": [
              {
                "timestamp": "2017-01-09T16:02:18.626+00:00",
                "rssi": -77,
                "fer": null
              },
              {
                "timestamp": "2017-01-26T16:02:15.918+00:00",
                "rssi": -71,
                "fer": null
              }
            ],
            "description": "",
            "product_id": "MTR-G3",
            "vendor_id": "MultiTech",
            "device_id": "MTS-JP-501"
          }
        }