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-10-31T05:45:16.1379323+00:00",
  "ValidFrom": "2025-10-31T05:45:16.1379323+00:00",
  "ValidTo": "2025-10-31T05:45:16.1379323+00:00",
  "FailedLogins": 4,
  "AccountBlocked": true,
  "SkypeId": "sample string 6",
  "GUID": "f2e46bd0-d39a-4a72-8ccb-67b914abba7e",
  "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"
}