POST api/security/api/InsertForgotPasswordEntry

Request Information

URI Parameters

None.

Body Parameters

ForgotPasswordLinkModel
NameDescriptionTypeAdditional information
id

globally unique identifier

None.

useremail

string

None.

createdon

date

None.

expirydatetime

date

None.

password

string

None.

ispasswordreset

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "6aeebad0-669f-4620-a624-479064b21382",
  "useremail": "sample string 2",
  "createdon": "2026-04-08T14:54:22.3446965+02:00",
  "expirydatetime": "2026-04-08T14:54:22.3446965+02:00",
  "password": "sample string 5",
  "ispasswordreset": true
}

application/xml, text/xml

Sample:
<ForgotPasswordLinkModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuoteEngineDta.Models.Security">
  <createdon>2026-04-08T14:54:22.3446965+02:00</createdon>
  <expirydatetime>2026-04-08T14:54:22.3446965+02:00</expirydatetime>
  <id>6aeebad0-669f-4620-a624-479064b21382</id>
  <ispasswordreset>true</ispasswordreset>
  <password>sample string 5</password>
  <useremail>sample string 2</useremail>
</ForgotPasswordLinkModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ForgotPasswordLinkModel'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>