创建新的用药提醒
请求地址: v1/medicationReminders/createNewRemindersRecord/{userId}
HTTP请求方式: post application/json
请求参数说明
| 参数名称 | 参数类型 | 参数说明 |
|---|---|---|
| userId | long | 用户id |
请求示例
{
"startDate":1463011200000,
"endDate":1463011200000,
"remindersTime":"10:00",
"medicationUsages":[
{
"medicationName":"感冒药",
"medicationNum":3,
"pharmaceuticalUnit":"粒"
}
],
"remindersDesc":"记得提醒我啊"
}
响应结果示例
{
"ret_code": 0,
"ret_values": {},
"message": "创建成功"
}