POST api/User/SendPasswordRecoveryLink

Request Information

URI Parameters

None.

Body Parameters

PasswordRecoveryRequestViewModel
NameDescriptionTypeAdditional information
PasswordRecoveryFor

PasswordRecoveryFor

Required

SendPasswordRecoveryCodeBy

SendPasswordRecoveryCodeBy

Required

Email

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

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.