Skip to main content
GET
/
devices
/
{deviceId}
Get device by ID
curl --request GET \
  --url https://dashboard.hologram.io/api/1/devices/{deviceId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "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>",
          "async_change_requests": [
            {
              "id": 123,
              "parent_id": 123,
              "orgid": 123,
              "userid": 123,
              "reference_id": 123,
              "start_time": "<string>",
              "update_time": "<string>",
              "metadata": {}
            }
          ]
        }
      ]
    },
    "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>",
    "async_change_requests": [
      {
        "id": 123,
        "parent_id": 123,
        "orgid": 123,
        "userid": 123,
        "reference_id": 123,
        "start_time": "<string>",
        "update_time": "<string>",
        "metadata": {}
      }
    ]
  }
}

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

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object