Admin Modifying System Notification Account Information
Description
- Update system notification account information, including avatar and name.
 
Request Method
POST
Request URL
{API_ADDRESS}/user/update_notification_account
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
{
  "userID": "1974356875",
  "nickName": "notification1",
  "faceURL": "url"
}
| Field Name | Required | Type | Description | 
|---|---|---|---|
| userID | Required | string | System notification account ID | 
| nickName | Required | string | Name of the system notification account | 
| faceURL | Required | string | Avatar URL of the system notification account | 
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": 1001,
  "errMsg": "ArgsError",
  "errDlt": "1001 ArgsError"
}
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 |