Skip to main content

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?

1

Get link IDs for devices

cURL
curl --request GET \
  'https://dashboard.hologram.io/api/1/devices?orgid={ORG_ID}' \
  -u apikey:YOUR_HOLOGRAM_API_KEY
2

Get plan details

cURL
curl --request GET \
  'https://dashboard.hologram.io/api/1/plans?orgid={ORG_ID}' \
  -u apikey:YOUR_HOLOGRAM_API_KEY
3

Change plans

cURL
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.