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": "2025-12-30T08:30:56.8077682+00:00",
"ValidFrom": "2025-12-30T08:30:56.8077682+00:00",
"ValidTo": "2025-12-30T08:30:56.8077682+00:00",
"FailedLogins": 4,
"AccountBlocked": true,
"SkypeId": "sample string 6",
"GUID": "d3530eb7-40a4-4e04-b16f-7d2e566e038d",
"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"
}