POST api/v1/user/update
Updates the specified user account.
Request Information
Headers
URI Parameters
None.
Body Parameters
The user account.
UserAccount| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The identifier |
integer |
None. |
| Username |
The user name |
string |
Required |
| Password |
The password. |
string |
Required |
| CreateDateTime |
The date when account was created |
date |
None. |
| ValidFrom |
The date when account are valid from. |
date |
None. |
| ValidTo |
The date when account are valid to |
date |
None. |
| FailedLogins |
Number of failed logins. |
integer |
None. |
| AccountBlocked |
The value indicating whether account is blocked. |
boolean |
None. |
| SkypeId |
The skype identifier. |
string |
None. |
| GUID |
The unique identifier. |
globally unique identifier |
None. |
|
The email address |
string |
Required |
|
| Status |
The status of the user. { Active, In-Active } |
string |
Required |
Request Formats
application/json
{
"Id": 1,
"Username": "sample string 2",
"Password": "sample string 3",
"CreateDateTime": "2026-03-13T22:17:07.2185976+00:00",
"ValidFrom": "2026-03-13T22:17:07.2185976+00:00",
"ValidTo": "2026-03-13T22:17:07.2185976+00:00",
"FailedLogins": 4,
"AccountBlocked": true,
"SkypeId": "sample string 6",
"GUID": "dbd60580-71f4-47b7-80d4-af6457573fa5",
"Email": "sample string 7",
"Status": "sample string 8"
}
Response Information
Headers
Resource Description
Application Status - Result, Status code, Message
Application Accept - AA, 200, OK
Application Reject - AR, 400, Failed to update user
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
Result of the response |
string |
None. |
| Message |
Additional information of the response |
string |
None. |
Response Formats
application/json
{
"Result": "sample string 1",
"Message": "sample string 2"
}