Scan and List all keys
POST/v1/valuestore/scan
This API lists all keys in devices self
namespace.
note
Please note that global
namespace keys can not be listed by devices. This allows you to keep certain Global Namespaces to secret from the device you don't want
to share data with.
MQTT Topic
$anedya/device/{deviceid}/valuestore/scan/json
Request
- application/json
Body
reqId string
limit integer
offset integer
Responses
- 2XX
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
reqId string
success boolean
error string
errorcode integer
keys object[]
key string
type string
count integer
next integer
{
"reqId": "string",
"success": true,
"error": "string",
"errorcode": 0,
"keys": [
{
"key": "string",
"type": "string"
}
],
"count": 0,
"next": 0
}
Loading...