POST api/HSUSer/GetHSClockInfo
Request Information
URI Parameters
None.
Body Parameters
ClockInListReq| Name | Description | Type | Additional information |
|---|---|---|---|
| Month | date |
None. |
|
| pageSize |
页大小,默认请传10 |
integer |
None. |
| pageIndex |
页索引,默认从1开始 |
integer |
None. |
| AccessKey |
(必填)基础token,RSA公钥加密(填充模式:RSA_PKCS1_OAEP_PADDING)>base64 |
string |
None. |
| SysTarget |
(必填)终端设备,WXMiniProgram=4,WX=1,ANDROID=2,IOS=3 |
integer |
None. |
| UserToken |
用户token-在指定拉取用户信息时需要提供 |
string |
None. |
| Timestamp |
(必填)时间戳,数据格式:yyyyMMddHHmmss |
string |
None. |
| Sign |
(必填)签名。步骤:1、将所有不为空字段的入参key转成大写(不含Sign)以字典序拼凑成URL键值对 2、将key=AccessKey(未RSA加密)加入到第1步拼成的字符串末尾进行MD5加密并转大写,即可得到签名 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Month": "2026-07-26 15:41:21",
"pageSize": 1,
"pageIndex": 2,
"AccessKey": "sample string 3",
"SysTarget": 4,
"UserToken": "sample string 5",
"Timestamp": "sample string 6",
"Sign": "sample string 7"
}
application/xml, text/xml
Sample:
<ClockInListReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OpenApi.Models.Req"> <AccessKey xmlns="http://schemas.datacontract.org/2004/07/OpenApi.Models">sample string 3</AccessKey> <Sign xmlns="http://schemas.datacontract.org/2004/07/OpenApi.Models">sample string 7</Sign> <SysTarget xmlns="http://schemas.datacontract.org/2004/07/OpenApi.Models">4</SysTarget> <Timestamp xmlns="http://schemas.datacontract.org/2004/07/OpenApi.Models">sample string 6</Timestamp> <UserToken xmlns="http://schemas.datacontract.org/2004/07/OpenApi.Models">sample string 5</UserToken> <pageIndex>2</pageIndex> <pageSize>1</pageSize> <Month>2026-07-26T15:41:21.9394608+08:00</Month> </ClockInListReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ClockStaticisInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| MonthCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Total": 1,
"MonthCount": 2
}
application/xml, text/xml
Sample:
<ClockStaticisInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopMallBusiness.DataEntity"> <MonthCount>2</MonthCount> <Total>1</Total> </ClockStaticisInfo>