Skip to main content
POST
/
devices
/
{deviceId}
/
changeplan
Change data plan for device
curl --request POST \
  --url https://dashboard.hologram.io/api/1/devices/{deviceId}/changeplan \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "planid": 4,
  "zone": "global",
  "orgid": 45,
  "overage_limit": 123,
  "useacctbalance": true,
  "priority": 123
}
'
{
  "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.

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.

Path Parameters

deviceId
integer
required

ID of the device

Query Parameters

preview
boolean

If true, simulate the operation without making changes

Body

application/json
planid
integer
required
Example:

4

zone
string
required
Example:

"global"

orgid
integer
required
Example:

45

overage_limit
integer

Data overage limit in bytes. -1 for unlimited.

useacctbalance
boolean

Apply account balance credit to this order

priority
integer

Carrier backend priority for this plan change (super admin only)

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true