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.
How do I use the REST API to change data plans in bulk?
Get link IDs for devices
curl --request GET \
'https://dashboard.hologram.io/api/1/devices?orgid={ORG_ID}' \
-u apikey:YOUR_HOLOGRAM_API_KEY
Get plan details
curl --request GET \
'https://dashboard.hologram.io/api/1/plans?orgid={ORG_ID}' \
-u apikey:YOUR_HOLOGRAM_API_KEY
Change plans
curl --request POST \
'https://dashboard.hologram.io/api/1/links/cellular/changeplan' \
-u apikey:YOUR_HOLOGRAM_API_KEY \
--header 'Content-Type: application/json' \
--data-raw '{
"linkids": [LINKID_1, LINKID_2],
"plan": PLAN_ID,
"tier": "{PLAN_ZONE}",
"orgid": ORG_ID
}'
Dashboard bulk actions
Change data plans in your dashboard. Limited to 10 SIMs at a time.