POST api/member/SendFindPwdLink

發送找回密碼邮件

Request Information

URI Parameters

None.

Body Parameters

SendFindPwdContract
NameDescriptionTypeAdditional information
addresses

收件人

Collection of string

None.

subject

郵件主題

string

None.

isbodyhtml

BODY是否為HTML

boolean

None.

calllbackurl

回调地址

string

None.

expiremins

有效时间

integer

None.

sitename

網站名稱

string

None.

createip

客戶端IP

string

None.

lang

語言

string

None.

Request Formats

application/json, text/json

Sample:
{
  "addresses": [
    "sample string 1",
    "sample string 2"
  ],
  "subject": "sample string 1",
  "isbodyhtml": true,
  "calllbackurl": "sample string 3",
  "expiremins": 4,
  "sitename": "sample string 5",
  "createip": "sample string 6",
  "lang": "sample string 7"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SendFindPwdContract'.

Response Information

Resource Description

發送找回密碼邮件

ReturnResultOfBoolean
NameDescriptionTypeAdditional information
data

boolean

None.

code

状态码:100成功,其他自定义

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": true,
  "code": 2,
  "message": "sample string 3"
}