POST api/User/CheckPasswordUpdate
Request Information
URI Parameters
None.
Body Parameters
UserPasswordEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| Password | string |
None. |
|
| UpdatedBy | integer |
None. |
|
| UpdatedDatetime | date |
None. |
|
| UpdatedTimestamp | Collection of byte |
None. |
|
| AutoGenerated | boolean |
None. |
|
| ChangePassword | boolean |
None. |
|
| EmailAddress | string |
None. |
|
| UserEmailAddress | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"Password": "sample string 2",
"UpdatedBy": 1,
"UpdatedDatetime": "2026-02-04T20:49:39.1120343-05:00",
"UpdatedTimestamp": "QEA=",
"AutoGenerated": true,
"ChangePassword": true,
"EmailAddress": "sample string 4",
"UserEmailAddress": "sample string 5"
}
application/xml, text/xml
Sample:
<UserPasswordEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model"> <AutoGenerated>true</AutoGenerated> <ChangePassword>true</ChangePassword> <EmailAddress>sample string 4</EmailAddress> <Password>sample string 2</Password> <UpdatedBy>1</UpdatedBy> <UpdatedDatetime>2026-02-04T20:49:39.1120343-05:00</UpdatedDatetime> <UpdatedTimestamp>QEA=</UpdatedTimestamp> <UserEmailAddress>sample string 5</UserEmailAddress> <UserId>1</UserId> </UserPasswordEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"UserId":1,"Password":"sample string 2","UpdatedBy":1,"UpdatedDatetime":"2026-02-04T20:49:39.1120343-05:00","UpdatedTimestamp":"QEA=","AutoGenerated":true,"ChangePassword":true,"EmailAddress":"sample string 4","UserEmailAddress":"sample string 5"}
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>