Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of cache items.
Collection of Pico.CacheItem| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Gets or sets the cache item identifier. |
string |
None. |
| value |
Gets or sets the value. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "sample String 1",
"value": "sample String 2"
},
{
"id": "sample String 1",
"value": "sample String 2"
}
]
text/html
Sample:
[{"id":"sample String 1","value":"sample String 2"},{"id":"sample String 1","value":"sample String 2"}]
application/xml, text/xml
Sample:
<ArrayOfCacheItem xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CacheItem>
<CacheItemId>sample String 1</CacheItemId>
<Value>sample String 2</Value>
</CacheItem>
<CacheItem>
<CacheItemId>sample String 1</CacheItemId>
<Value>sample String 2</Value>
</CacheItem>
</ArrayOfCacheItem>