Scan All available items
POST/valuestore/scan
Scans available items in the valuestore. Can return max 100 items per call.
Request
- application/json
Body
filter objectrequired
namespace objectrequired
scope stringrequired
Possible values: [global
, node
]
id string
orderby stringrequired
Possible values: [namespace
, key
, created
]
order string
Possible values: [asc
, desc
]
limit integer
offset integer
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
success boolean
error string
errorcode integer
count integer
data object[]
namespace string
key string
type string
size integer
next integer
{
"success": true,
"error": "string",
"errorcode": 0,
"count": 0,
"data": [
{
"namespace": "string",
"key": "string",
"type": "string",
"size": 0
}
],
"next": 0
}
Loading...