POST Message/addRemindForUser

根据用户发送提醒

Request Information

URI Parameters

None.

Body Parameters

单用户提醒参数

RemindForUserPars
NameDescriptionTypeAdditional information
doctor_id

医生ID

integer

None.

dtType

时间参数(1or7)

integer

None.

brushtype

刷牙类型参数(1没刷,2刷的不好,3刷的好)

integer

None.

family_id

账户ID

integer

None.

family_detail_id

成员ID

integer

None.

msg_content

自定义消息

string

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": {
    "doctor_id": 1,
    "dtType": 2,
    "brushtype": 3,
    "family_id": 4,
    "family_detail_id": 5,
    "msg_content": "sample string 6"
  },
  "msg": null
}

application/xml, text/xml

Sample:
<RemindForUserPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter">
  <brushtype>3</brushtype>
  <doctor_id>1</doctor_id>
  <dtType>2</dtType>
  <family_detail_id>5</family_detail_id>
  <family_id>4</family_id>
  <msg_content>sample string 6</msg_content>
</RemindForUserPars>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

根据用户发送提醒

boolean

Response Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": true,
  "msg": null
}

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>