POST Doctor/Check

医生验证

Request Information

URI Parameters

None.

Body Parameters

-2表示验证码不正确 -1未关联到医生 -3该医生已经绑定其他微信 0表示成功

DoctorCheckPars
NameDescriptionTypeAdditional information
phone

string

None.

code

string

None.

openid

string

None.

platKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": {
    "phone": "sample string 1",
    "code": "sample string 2",
    "openid": "sample string 3",
    "platKey": "sample string 4"
  },
  "msg": null
}

application/xml, text/xml

Sample:
<DoctorCheckPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter">
  <code>sample string 2</code>
  <openid>sample string 3</openid>
  <phone>sample string 1</phone>
  <platKey>sample string 4</platKey>
</DoctorCheckPars>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

医生验证

string

Response Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": "sample string 1",
  "msg": null
}

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>