Skip to main content
PUT
/
devices
/
{deviceId}
Rename or transfer a device
curl --request PUT \
  --url https://dashboard.hologram.io/api/1/devices/{deviceId} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "orgid": 123
}
'
{
  "success": true,
  "data": {
    "id": 123,
    "name": "<string>",
    "orgid": 123,
    "type": "<string>",
    "whencreated": "<string>",
    "tags": [
      "<string>"
    ],
    "links": {
      "cellular": [
        {
          "id": 123,
          "deviceid": 123,
          "orgid": 123,
          "sim": "<string>",
          "msisdn": "<string>",
          "imsi": 123,
          "state": "<string>",
          "apn": "<string>",
          "zone": 123,
          "overagelimit": 123,
          "carrier": 123,
          "whencreated": "<string>",
          "whenexpires": "<string>"
        }
      ]
    },
    "imei": "<string>",
    "imei_sv": "<string>",
    "phonenumber": "<string>",
    "phonenumber_cost": "<string>",
    "simcardid": 123,
    "euicc_tested": "<string>",
    "is_hyper": true,
    "model": "<string>",
    "manufacturer": "<string>",
    "preflight_starttime": "<string>",
    "preflight_scheduled_endtime": "<string>"
  }
}

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

Body

application/json
name
string

New device name

orgid
integer

Transfer device to this organization

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object