curl --request GET \
--url https://dashboard.hologram.io/api/1/devices/count \
--header 'Authorization: Basic <encoded-value>'{
"value": {
"data": 6,
"success": true
}
}Get the number of devices that match given parameters.
The linkids, states, sims, and simrange query parameters are checked against a SIM’s profiles (links). If an associated device has more than 1 link and one of the parameters matches with more than 1 of the device’s links, the device will still be counted once.
The states filter is only applied on the device’s enabled (active) link.
curl --request GET \
--url https://dashboard.hologram.io/api/1/devices/count \
--header 'Authorization: Basic <encoded-value>'{
"value": {
"data": 6,
"success": true
}
}Documentation Index
Fetch the complete documentation index at: https://docs.hologram.io/llms.txt
Use this file to discover all available pages before exploring further.
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.
Single tag ID.
101
Comma-separated list of tag IDs.
"101,102,103"
Comma-separated list of link (profile) IDs.
"5389720,5608542"
Comma-separated list of network states.
"LIVE, LIVE-PENDING, PAUSED-USER, PAUSED-SYS, PAUSED-PENDING-USER, PAUSED-PENDING-SYS, INACTIVE, TEST-ACTIVATE, TEST-ACTIVATE-PENDING, DEAD, DEAD-PENDING"
Comma-separated list of profile ICCIDs.
"89131300001234567890,89131300001234567891"
Range of profile ICCIDs, separated by a hyphen.
"89131300001234567890-89131300001234568000"
Was this page helpful?