Skip to main content
GET
/
devices
/
tags
List all tags
curl --request GET \
  --url https://dashboard.hologram.io/api/1/devices/tags \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "data": {
    "tags": [
      {
        "id": 123,
        "name": "<string>",
        "deviceids": [
          123
        ]
      }
    ]
  }
}

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.

Query Parameters

orgid
integer

Filter results to this organization ID

deviceids
string

Comma-separated list of device IDs to filter by

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object