Get device shadow
GET http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/shadow
Get device shadow state from the DB using the DB stored proto definition from the parent fleet
Path Parameters
- project_id string required
Project ID
- fleet_id string required
Fleet ID
- device_id string required
Device ID
Responses
- 200
- 400
Success" {"ok":1,"data":{"data":{}}}
- application/json
- Schema
- Example (from schema)
Schema
{}
Bad Request" {"ok":0,"error":{"code":400,"message":"Failed to fetch device shadow for the device"}}
- application/json
- Schema
- Example (from schema)
Schema
{}
Request
Request
curl / cURL
curl -L -X GET 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/shadow' \
-H 'Accept: application/json'
python / requests
curl -L -X GET 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/shadow' \
-H 'Accept: application/json'
go / native
curl -L -X GET 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/shadow' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X GET 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/shadow' \
-H 'Accept: application/json'