Skip to main content
GET
/
alerts
/
device
/
usage
List data usage threshold reached alerts
curl --request GET \
  --url https://dashboard.hologram.io/api/1/alerts/device/usage \
  --header 'Authorization: Basic <encoded-value>'
{
  "continues": false,
  "data": [],
  "limit": 50,
  "size": 0,
  "success": true
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.

You can find your API key on the Hologram Dashboard under Account Settings.

Query Parameters

acked
boolean
acked_by
integer
Example:

0

limit
integer

Maximum number of items to return in a single request. For endpoints that support pagination, use this with corresponding /pages endpoints to manage large result sets.

Example:

50

offset
integer
Example:

0

orgid
integer
Example:

144

sortBy
string
Example:

"DESC"

Response

200 - application/json

Success

continues
boolean

Displays if there is another page of results.

Example:

true

data
any[]
limit
integer

The max number of items to return in a single response

Example:

10

size
integer

The number of values returned

Example:

216

success
boolean

Whether the request was successful or not

Example:

true