Qubitro Documentation
SupportLog inSign Up
  • Documentation
  • Guides
  • Developers
  • Changelog
  • Qubitro REST API
  • API Reference
    • Projects
      • Create Project
      • Retrieve Projects
      • Retrieve Project by ID
      • Delete Project
      • Invite Collaborator
    • Devices
      • Create Device
      • Retrieve Devices
      • Get Device by ID
      • Delete Device
    • Storage
      • Retrieve Device Data
      • Purge Device Data
      • Retrieve Device Data Keys
      • Retrieve Device Data From Storage View
    • Aggregated View
      • Retrieve Aggregated Views
      • Retrieve Aggregated View Data
      • Retrieve Aggregated View Data Keys
      • Purge Aggregated View Data
    • Dashboards
      • Retrieve Dashboards
      • Invite Collaborator
    • Organization
      • Invite Member
      • Retrieve Groups
Powered by GitBook
On this page
Export as PDF
  1. API Reference
  2. Aggregated View

Retrieve Aggregated View Data Keys

Allows to retrieve available data keys for an aggregated view.

PreviousRetrieve Aggregated View DataNextPurge Aggregated View Data

Last updated 2 months ago

Retrieve Aggregated View Data Keys

get
Authorizations
Path parameters
PROJECT_IDstringRequired
DEVICE_IDstringRequired
AGGREGATED_VIEW_IDstringRequired
Responses
200
OK
application/json
Responseobject
401
Unauthorized
application/json
403
Forbidden
application/json
get
GET /v2/projects/{PROJECT_ID}/devices/{DEVICE_ID}/aggregated-view/{AGGREGATED_VIEW_ID}/keys HTTP/1.1
Host: api.qubitro.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "success": true,
  "action": "get device data keys",
  "status": 200,
  "message": "Device data keys retrieved successfully.",
  "data": [
    "key_avg"
  ]
}