Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| search |
The search. |
string |
None. |
| minStartDate |
The min start date. |
date |
None. |
| maxEndDate |
The max end date. |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
A list of indices.
Collection of Pico.Index| Name | Description | Type | Additional information |
|---|---|---|---|
| endDate |
Gets or sets the end date. |
date |
None. |
| startDate |
Gets or sets the start date. |
date |
None. |
| value |
Gets or sets the value. |
decimal number |
None. |
| id |
Gets or sets the index identifier. |
integer |
None. |
| indexType |
Gets or sets the index type identifier. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"endDate": "2025-11-09T05:57:34.0239984Z",
"startDate": "2025-11-09T05:57:34.0239984Z",
"value": 1.0,
"id": "1",
"indexType": "2"
},
{
"endDate": "2025-11-09T05:57:34.0239984Z",
"startDate": "2025-11-09T05:57:34.0239984Z",
"value": 1.0,
"id": "1",
"indexType": "2"
}
]
text/html
Sample:
[{"endDate":"2025-11-09T05:57:34.0239984Z","startDate":"2025-11-09T05:57:34.0239984Z","value":1.0,"id":"1","indexType":"2"},{"endDate":"2025-11-09T05:57:34.0239984Z","startDate":"2025-11-09T05:57:34.0239984Z","value":1.0,"id":"1","indexType":"2"}]
application/xml, text/xml
Sample:
<ArrayOfIndex xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Index>
<EndDate>2025-11-09T05:57:34.0239984Z</EndDate>
<StartDate>2025-11-09T05:57:34.0239984Z</StartDate>
<Value>1</Value>
<IndexId>1</IndexId>
<IndexTypeId>2</IndexTypeId>
</Index>
<Index>
<EndDate>2025-11-09T05:57:34.0239984Z</EndDate>
<StartDate>2025-11-09T05:57:34.0239984Z</StartDate>
<Value>1</Value>
<IndexId>1</IndexId>
<IndexTypeId>2</IndexTypeId>
</Index>
</ArrayOfIndex>