Update User Info
Description
- Update user information such as avatar, name, and extended fields (
Ex
). Only fields to be modified need to be provided, including zero values if necessary.
Request Method
POST
Request URL
{API_ADDRESS}/user/update_user_info_ex
Header
Header Name | Example Value | Required | Type | Description |
---|---|---|---|---|
operationID | 1646445464564 | Required | string | Used for global traceability, suggested as a unique timestamp per request |
token | eyJhbxxxx3Xs | Required | string | Admin token |
Request Parameters Example
{
"userInfo": {
"userID": "2",
"nickname": "alantestuid3",
"faceURL": "",
"ex": "123"
}
}
Field Name | Required | Type | Description |
---|---|---|---|
userInfo | Required | object | User information |
userInfo.userID | Required | string | User ID |
userInfo.nickname | Optional | string | User name |
userInfo.faceURL | Optional | string | User avatar URL |
ex | Optional | string | Extended field |
Success Response Example
{
"errCode": 0,
"errMsg": "",
"errDlt": ""
}
Success Response Parameter Description
Parameter | Type | Description |
---|---|---|
errCode | int | Error code, 0 indicates success |
errMsg | string | Brief error message, empty if successful |
errDlt | string | Detailed error information, empty if successful |
Failure Response Example
{
"errCode": 1004,
"errMsg": "RecordNotFoundError",
"errDlt": ": [1004]RecordNotFoundError"
}
Failure Response Parameter Description
Parameter | Type | Description |
---|---|---|
errCode | int | Error code; refer to global error code documentation |
errMsg | string | Brief error message |
errDlt | string | Detailed error information |