POST api/Login/CheckPassword
驗證重設密碼頁面
Request Information
URI Parameters
None.
Body Parameters
CheckPassword_Input| Name | Description | Type | Additional information |
|---|---|---|---|
| userId |
帳號(電子信箱) |
string |
Required |
| memCode |
驗證碼 |
string |
Required |
| Ticket |
身份票據 |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"userId": "sample string 1",
"memCode": "sample string 2",
"Ticket": "sample string 3"
}
text/html
Sample:
{"userId":"sample string 1","memCode":"sample string 2","Ticket":"sample string 3"}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
驗證重設密碼頁面
CheckPassword_Output| Name | Description | Type | Additional information |
|---|---|---|---|
| status |
驗證狀態 值範圍 0:系統錯誤1:驗證通過 2:連結已失效 |
integer |
None. |
| ticketVerified |
驗證是否通過 |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"ticketVerified": true
}
text/html
Sample:
{"status":1,"ticketVerified":true}