POST api/Users/InsertForgetPasswordHistory
Request Information
URI Parameters
None.
Body Parameters
UserForgetPasswordHistoryDTO| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | None. | |
| UserId | integer | None. | |
| Code | string | None. | |
| CreatedOn | date | None. | |
| string | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "Id": 1,
  "UserId": 2,
  "Code": "sample string 3",
  "CreatedOn": "2025-10-30T10:00:31.9342001+04:00",
  "Mail": "sample string 5"
}
        text/html, multipart/form-data
            Sample:
        
{"Id":1,"UserId":2,"Code":"sample string 3","CreatedOn":"2025-10-30T10:00:31.9342001+04:00","Mail":"sample string 5"}
        application/xml, text/xml
            Sample:
        <UserForgetPasswordHistoryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSMChecklistFlow.DTO"> <Code>sample string 3</Code> <CreatedOn>2025-10-30T10:00:31.9342001+04:00</CreatedOn> <Id>1</Id> <Mail>sample string 5</Mail> <UserId>2</UserId> </UserForgetPasswordHistoryDTO>
application/x-www-form-urlencoded
            Sample:
    
        
Response Information
Resource Description
integerResponse Formats
application/json, text/json, text/html, multipart/form-data
            Sample:
        1
application/xml, text/xml
            Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>