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 to deactivate SIMs using the REST API

Use the cellular state endpoint to deactivate one or more SIMs by linkid.
Danger: SIM deactivation is permanent and irreversible once completed. If you plan to reuse SIMs, do not deactivate them, pause them instead.
Limited access: Deactivation is limited to Owner, Admin, and Manager roles.

Send a request to set state=deactivate using cURL

cURL
curl --request POST \
  'https://dashboard.hologram.io/api/1/links/cellular/state' \
  -u apikey:YOUR_HOLOGRAM_API_KEY \
  --header 'Content-Type: application/json' \
  --data-raw '{
    "linkids": [1111111, 2222222],
    "state": "deactivate"
  }'

Send a request to set state=deactivate using HTTP

cURL
curl --request POST \
  'https://dashboard.hologram.io/api/1/links/cellular/state' \
  -u apikey:YOUR_HOLOGRAM_API_KEY \
  --header 'Content-Type: application/json' \
  --data-raw '{
    "linkids": [1111111, 2222222],
    "state": "deactivate"
  }'

Deactivate SIMs in your dashboard

Deactivate SIMs in your dashboard. Limited to 10 SIMs at a time.

REST API endpoint

Deactivate SIMs (bulk) POST /links/cellular/state