GET api/security/api/GetForgotPasswordUser?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ForgotPasswordLinkModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| useremail | string |
None. |
|
| createdon | date |
None. |
|
| expirydatetime | date |
None. |
|
| password | string |
None. |
|
| ispasswordreset | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "1dcffc0b-8b60-4df5-84ca-678154d0e4a3",
"useremail": "sample string 2",
"createdon": "2026-06-03T11:59:40.4277956+02:00",
"expirydatetime": "2026-06-03T11:59:40.4277956+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-06-03T11:59:40.4277956+02:00</createdon> <expirydatetime>2026-06-03T11:59:40.4277956+02:00</expirydatetime> <id>1dcffc0b-8b60-4df5-84ca-678154d0e4a3</id> <ispasswordreset>true</ispasswordreset> <password>sample string 5</password> <useremail>sample string 2</useremail> </ForgotPasswordLinkModel>