POST api/User/SendPasswordRecoveryLink
Request Information
URI Parameters
None.
Body Parameters
PasswordRecoveryRequestViewModelName | Description | Type | Additional information |
---|---|---|---|
PasswordRecoveryFor | PasswordRecoveryFor |
Required |
|
SendPasswordRecoveryCodeBy | SendPasswordRecoveryCodeBy |
Required |
|
string |
Required |
||
IsInitiatedByAdmin | boolean |
None. |
|
AgencyId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "PasswordRecoveryFor": "User", "SendPasswordRecoveryCodeBy": "Text", "Email": "sample string 1", "IsInitiatedByAdmin": true, "AgencyId": "sample string 3" }
application/xml, text/xml
Sample:
<PasswordRecoveryRequestViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MindMe.Business.Service.Services.RequestViewModels.AccountsAndUsers"> <AgencyId>sample string 3</AgencyId> <Email>sample string 1</Email> <IsInitiatedByAdmin>true</IsInitiatedByAdmin> <PasswordRecoveryFor>User</PasswordRecoveryFor> <SendPasswordRecoveryCodeBy>Text</SendPasswordRecoveryCodeBy> </PasswordRecoveryRequestViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.