POST Admin/Edit_User?Ticket={Ticket}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Ticket | string |
Required |
Body Parameters
User| Name | Description | Type | Additional information |
|---|---|---|---|
| USER_ID | integer |
None. |
|
| NAME | string |
None. |
|
| USERNAME | string |
None. |
|
| PASSWORD | string |
None. |
|
| IS_ACTIVE | boolean |
None. |
|
| CREATE_DATE | date |
None. |
|
| Selected_Roles | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"USER_ID": 1,
"NAME": "sample string 2",
"USERNAME": "sample string 3",
"PASSWORD": "sample string 4",
"IS_ACTIVE": true,
"CREATE_DATE": "2026-02-04T02:35:19.4833274+00:00",
"Selected_Roles": [
"sample string 1",
"sample string 2"
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result_Get_User| Name | Description | Type | Additional information |
|---|---|---|---|
| USER_ID | integer |
None. |
|
| ExceptionMsg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"USER_ID": 1,
"ExceptionMsg": "sample string 2"
}