Description
Get items across all buckets. The returned items will include only items from buckets for which the user is authorized. If the user is not authorized to any buckets, an empty list will be returned.
GET /items
Get items across all buckets. The returned items will include only items from buckets for which the user is authorized. If the user is not authorized to any buckets, an empty list will be returned.
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< BucketItem > array |
401 |
Client could not be authenticated. |
No Content |
/
application/json
Type | Name |
---|---|
apiKey |
Authorization |
Request path
/items
Response 200
[ {
"link" : {
"href" : "string",
"params" : {
"string" : "string"
}
},
"identifier" : "string",
"name" : "string",
"description" : "string",
"bucketIdentifier" : "string",
"bucketName" : "string",
"createdTimestamp" : 0,
"modifiedTimestamp" : 0,
"type" : "string",
"permissions" : {
"canRead" : true,
"canWrite" : true,
"canDelete" : true
}
} ]