POST api/cachemanger/getlist
Request Information
URI Parameters
None.
Body Parameters
CacheCodeSearchName | Description | Type | Additional information |
---|---|---|---|
codetype | string |
None. |
|
key | string |
None. |
|
SkipCount | integer |
None. |
|
MaxResultCount | integer |
None. |
|
PageIndex | integer |
None. |
|
PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "codetype": "sample string 1", "key": "sample string 2", "skipCount": 3, "maxResultCount": 4, "pageIndex": 5, "pageSize": 6 }
application/xml, text/xml
Sample:
<CacheCodeSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Search"> <MaxResultCount xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">4</MaxResultCount> <PageIndex xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">5</PageIndex> <PageSize xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">6</PageSize> <SkipCount xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">3</SkipCount> <codetype>sample string 1</codetype> <key>sample string 2</key> </CacheCodeSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnResultOfPagedResultOfCacheCodeName | Description | Type | Additional information |
---|---|---|---|
Status | integer |
None. |
|
Success | boolean |
None. |
|
Data | PagedResultOfCacheCode |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "status": 1, "success": true, "data": { "totalCount": 1, "items": [ { "hashKey": "sample string 1", "code": "sample string 2", "nameCn": "sample string 3", "nameEn": "sample string 4", "hgCode": "sample string 5", "hgNameCn": "sample string 6", "hgNameEn": "sample string 7", "ciqCode": "sample string 8", "ciqNameCn": "sample string 9", "ciqNameEn": "sample string 10", "customStr": "sample string 11" }, { "hashKey": "sample string 1", "code": "sample string 2", "nameCn": "sample string 3", "nameEn": "sample string 4", "hgCode": "sample string 5", "hgNameCn": "sample string 6", "hgNameEn": "sample string 7", "ciqCode": "sample string 8", "ciqNameCn": "sample string 9", "ciqNameEn": "sample string 10", "customStr": "sample string 11" } ] }, "message": "sample string 3" }
application/xml, text/xml
Sample:
<ReturnResultOfPagedResultOfCacheCodeJWrFJ9jlDN9A7J8d xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model"> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models"> <d2p1:items> <CacheCode> <CiqCode>sample string 8</CiqCode> <CiqNameCn>sample string 9</CiqNameCn> <CiqNameEn>sample string 10</CiqNameEn> <Code>sample string 2</Code> <CustomStr>sample string 11</CustomStr> <HashKey>sample string 1</HashKey> <HgCode>sample string 5</HgCode> <HgNameCn>sample string 6</HgNameCn> <HgNameEn>sample string 7</HgNameEn> <NameCn>sample string 3</NameCn> <NameEn>sample string 4</NameEn> </CacheCode> <CacheCode> <CiqCode>sample string 8</CiqCode> <CiqNameCn>sample string 9</CiqNameCn> <CiqNameEn>sample string 10</CiqNameEn> <Code>sample string 2</Code> <CustomStr>sample string 11</CustomStr> <HashKey>sample string 1</HashKey> <HgCode>sample string 5</HgCode> <HgNameCn>sample string 6</HgNameCn> <HgNameEn>sample string 7</HgNameEn> <NameCn>sample string 3</NameCn> <NameEn>sample string 4</NameEn> </CacheCode> </d2p1:items> <d2p1:totalCount>1</d2p1:totalCount> </Data> <Message>sample string 3</Message> <Status>1</Status> <Success>true</Success> </ReturnResultOfPagedResultOfCacheCodeJWrFJ9jlDN9A7J8d>