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 lifetime data usage of Thing

GET https://console.monogoto.io/thing/lifetimeDataUsage/ThingId_ICCID_{ICCID}

Path Parameters

NameTypeDescription

ICCID*

String

The ICCID of your SIM

Headers

NameTypeDescription

YOUR_TOKEN*

String

Your authentication token

Consumption value

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
}

Last updated