GET api/user/alarmlist?startDT={startDT}&endDT={endDT}&pageNo={pageNo}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startDT | string |
Required |
|
| endDT | string |
Required |
|
| pageNo | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 10 |
Body Parameters
None.
Response Information
Resource Description
ApiResultList| Name | Description | Type | Additional information |
|---|---|---|---|
| ResultCode | string |
None. |
|
| ResultMsg | string |
None. |
|
| TotalCnt | integer |
None. |
|
| List | Collection of Dictionary of string [key] and string [value] |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResultCode": "sample string 1",
"ResultMsg": "sample string 2",
"TotalCnt": 3,
"List": [
{
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
{
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<ApiResultList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FinUp.Stock.Api.Models">
<List xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:ArrayOfKeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</d2p1:ArrayOfKeyValueOfstringstring>
<d2p1:ArrayOfKeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</d2p1:ArrayOfKeyValueOfstringstring>
</List>
<ResultCode>sample string 1</ResultCode>
<ResultMsg>sample string 2</ResultMsg>
<TotalCnt>3</TotalCnt>
</ApiResultList>