POST api/Users/InsertForgetPasswordHistory

Request Information

URI Parameters

None.

Body Parameters

UserForgetPasswordHistoryDTO
NameDescriptionTypeAdditional information
Id

integer

None.

UserId

integer

None.

Code

string

None.

CreatedOn

date

None.

Mail

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UserId": 2,
  "Code": "sample string 3",
  "CreatedOn": "2025-05-25T18:56:14.1594947+04:00",
  "Mail": "sample string 5"
}

text/html, multipart/form-data

Sample:
{"Id":1,"UserId":2,"Code":"sample string 3","CreatedOn":"2025-05-25T18:56:14.1594947+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-05-25T18:56:14.1594947+04:00</CreatedOn>
  <Id>1</Id>
  <Mail>sample string 5</Mail>
  <UserId>2</UserId>
</UserForgetPasswordHistoryDTO>

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 'UserForgetPasswordHistoryDTO'.

Response Information

Resource Description

integer

Response 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>