POST api/ForgotPassword

Used for handling forgotten password

Request Information

URI Parameters

None.

Body Parameters

ForgotPasswordDTO
NameDescriptionTypeAdditional information
Email

Email ID to initiate forgot password for

string

None.

captchaId

Captcha ID used for the service

string

None.

instanceId

INstance ID used for the service

string

None.

captchaInput

Captcha response automatically generated by the ReCaptcha process on successful captcha validation. Normally is a large alphanumeric string such as 03AGdBq26TwSwj6WOUB3A3rMM54ZAAdpqMQMbVZOUkh59T9P96sR-FJqM7PvqgUYxwu9lPV7l9a0Cb1u4UI0G1wNJ_ZsFI6MhAfkfTWC1t2pyuGjGpk2ZPvmK1FN2Mx5t_BPQ305pXwB7nBp8rkl0Wk4gtIQdL2AH22oZHCMeGF6N4lV2SPGYGlrkzzB3_MrVpAVJ2jZIJPt1fGZCuaq1WzHt4o2KsorlpPtDSOK2sC3gLgoD75coKvKQMx0YGiCyRi7-LjVIdFlHwxLMBlQYbqwJF9kryGwXxgbvvFlvha7AQoENQdmtIVNUTkTg3nGH-cjI8ROrMpDrzhRwPWt3uKqetNf50QiU9GHhRMEKCNqTGGEqvBvDdLgmUjQRAvC20OzYY_tvlnPs8-"

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "captchaId": "sample string 2",
  "instanceId": "sample string 3",
  "captchaInput": "sample string 4"
}

text/xml

Sample:
<ForgotPasswordDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <Email>sample string 1</Email>
  <captchaId>sample string 2</captchaId>
  <captchaInput>sample string 4</captchaInput>
  <instanceId>sample string 3</instanceId>
</ForgotPasswordDTO>

multipart/form-data

Sample:
<ForgotPasswordDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><Email>sample string 1</Email><captchaId>sample string 2</captchaId><captchaInput>sample string 4</captchaInput><instanceId>sample string 3</instanceId></ForgotPasswordDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

text/xml, multipart/form-data

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>