Links

Get Thing Lifetime Data Usage

This guide will show you how you can see Thing whole lifetime data usage via API. The usage will be shown in Bytes
get
https://console.monogoto.io
/thing/lifetimeDataUsage/ThingId_ICCID_{ICCID}
Get lifetime data usage of Thing
Add your Thing ICCID and Token in the GET request to successfully obtain the Thing info.

Example using cURL:

curl -X GET \
--url "https://console.monogoto.io/thing/lifetimeDataUsage/ThingId_ICCID_{ICCID}" \
-H "accept: application/json" \
-H "Authorization: Bearer {TOKEN_HERE}"
Example response (data shown in Bytes):
{
"Consumption": 1043738757
}