Skip to main content
GET
/
csr
/
data
/
{recordId}
Single cloud message
curl --request GET \
  --url https://dashboard.hologram.io/api/1/csr/data/{recordId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "limit": 123,
  "size": 123,
  "continues": true,
  "lastid": 123,
  "data": {
    "id": 123,
    "logged": "<string>",
    "expires": "<string>",
    "orgid": 123,
    "deviceid": 123,
    "record_id": "<string>",
    "device_metadata": "<string>",
    "data": "<string>",
    "tags": [
      "<string>"
    ],
    "matched_rules": [
      {
        "ruleid": 123,
        "error": true,
        "result_data": "<string>"
      }
    ]
  }
}

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

recordId
integer
required

Record ID

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

limit
integer
size
integer
continues
boolean
lastid
integer

ID of the last record returned, for cursor-based pagination

data
object

A Cloud Services Router device data message.