GET api/RBPartIndex/GetRecordingPeriodList/{id}?t={t}&d1={d1}&d2={d2}
Retrieve available RBPART recording period list.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The index id. |
integer |
Required |
t |
Authentication token |
string |
Required |
d1 |
Period starting date lower bound. |
integer |
Default value is 0 |
d2 |
Period starting date uppper bound. |
integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
List of tuples of two with starting and ending dates.
Collection of TupleOfInt32AndInt32Name | Description | Type | Additional information |
---|---|---|---|
Item1 | integer |
None. |
|
Item2 | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "m_Item1": 1, "m_Item2": 2 }, { "m_Item1": 1, "m_Item2": 2 } ]
application/xml, text/xml
Sample:
<ArrayOfTupleOfintint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System"> <TupleOfintint> <m_Item1>1</m_Item1> <m_Item2>2</m_Item2> </TupleOfintint> <TupleOfintint> <m_Item1>1</m_Item1> <m_Item2>2</m_Item2> </TupleOfintint> </ArrayOfTupleOfintint>