POST api/Customer/GetRemindPasswordOption
Request Information
URI Parameters
None.
Body Parameters
GetRemindPasswordOptionRequestName | Description | Type | Additional information |
---|---|---|---|
UserName | string |
None. |
|
IsRedirectNewPasswordChangeUrl | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserName": "sample string 1", "IsRedirectNewPasswordChangeUrl": true }
application/xml, text/xml
Sample:
<GetRemindPasswordOptionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <IsRedirectNewPasswordChangeUrl>true</IsRedirectNewPasswordChangeUrl> <UserName>sample string 1</UserName> </GetRemindPasswordOptionRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetRemindPasswordOptionResponseName | Description | Type | Additional information |
---|---|---|---|
Multioption | string |
None. |
|
Success | boolean |
None. |
|
Code | GetRemindPasswordOptionResponseCode |
None. |
|
Options | Collection of RemindPasswordOptionItem |
None. |
|
UserType | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Multioption": "sample string 1", "Success": true, "Code": 11000, "Options": [ { "IsTriggered": true, "Type": "sample string 2", "UserName": "sample string 3", "RemainingSeconds": 4, "IsEnable": true, "Code": 6, "EmailThresholdTime": 1, "EmailThresholdCount": 1 }, { "IsTriggered": true, "Type": "sample string 2", "UserName": "sample string 3", "RemainingSeconds": 4, "IsEnable": true, "Code": 6, "EmailThresholdTime": 1, "EmailThresholdCount": 1 } ], "UserType": 1 }
application/xml, text/xml
Sample:
<GetRemindPasswordOptionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Code>CustomerNotFound</Code> <Multioption>sample string 1</Multioption> <Options> <GetRemindPasswordOptionResponse.RemindPasswordOptionItem> <Code>6</Code> <EmailThresholdCount>1</EmailThresholdCount> <EmailThresholdTime>1</EmailThresholdTime> <IsEnable>true</IsEnable> <IsTriggered>true</IsTriggered> <RemainingSeconds>4</RemainingSeconds> <Type>sample string 2</Type> <UserName>sample string 3</UserName> </GetRemindPasswordOptionResponse.RemindPasswordOptionItem> <GetRemindPasswordOptionResponse.RemindPasswordOptionItem> <Code>6</Code> <EmailThresholdCount>1</EmailThresholdCount> <EmailThresholdTime>1</EmailThresholdTime> <IsEnable>true</IsEnable> <IsTriggered>true</IsTriggered> <RemainingSeconds>4</RemainingSeconds> <Type>sample string 2</Type> <UserName>sample string 3</UserName> </GetRemindPasswordOptionResponse.RemindPasswordOptionItem> </Options> <Success>true</Success> <UserType>1</UserType> </GetRemindPasswordOptionResponse>