Skip to main content
GET
/
csr
/
tags
Get matching cloud messaging topics/tags
curl --request GET \
  --url https://dashboard.hologram.io/api/1/csr/tags \
  --header 'Authorization: Basic <encoded-value>'
{
  "continues": true,
  "data": [
    "_SMS_DT_",
    "_IMEI_FIRST_",
    "_IMEI_CHANGE_",
    "_SMS_DT_DELIVERED_",
    "_IMEI_TAC_CHANGE_",
    "_API_DT_",
    "_API_RESP_",
    "asd",
    "_DEVICE_1031048_",
    "_DEVICE_1141044_",
    "I am a topic"
  ],
  "lastid": "I am a topic",
  "limit": 25,
  "links": {
    "base": "staging.teamhologram.ninja",
    "next": "/api/1/csr/tags?orgid=52390&startafter=I am a topic",
    "path": "/api/1/csr/tags"
  },
  "size": 25,
  "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.

Query Parameters

limit
integer

Maximum number of items to return in a single request. For endpoints that support pagination, use this with corresponding /pages endpoints to manage large result sets.

Example:

50

orgid
integer
Example:

144

startafter
integer
Example:

102544

Response

200 - application/json

List of tags

continues
boolean

Displays if there is another page of results.

Example:

true

data
string[]
lastid
string
limit
integer

The max number of items to return in a single response

Example:

10

size
integer

The number of values returned

Example:

216

success
boolean

Whether the request was successful or not

Example:

true