GET api/HealthyData/GetH_BloodPressure_ByMonth?UserID={UserID}&Month={Month}
获取用户数据(日统计数据__血压,取每天的最后一条数据)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID |
用户ID |
string |
Required |
| Month |
月份,时间格式为"2018-04" |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
JResultOfListOfHealthDataByMonth_BloodPressure| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Error | string |
None. |
|
| Result | Collection of HealthDataByMonth_BloodPressure |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1,
"Error": "sample string 2",
"Result": [
{
"Systolic": 1.1,
"Diastolic": 2.1,
"Date": "2026-04-30T18:58:55.8833069+08:00"
},
{
"Systolic": 1.1,
"Diastolic": 2.1,
"Date": "2026-04-30T18:58:55.8833069+08:00"
}
],
"Success": true
}