This guide reviews how to view a device tunneling key using the Hologram REST API. Spacebridge allows you to remotely access your devices using secure authenticated tunnels.
To see your keys, make the following request:
GET https://dashboard.hologram.io/api/1/tunnelkeys?withdisabled=0&orgid=[YOUR_ORG_ID]
Response
{
"success": true,
"data": [
{
"id": 12345,
"userid": 12345,
"disabled": 0,
"public_key": "YOUR_PUBLIC_KEY_HERE"
}
]
}