Skip to main content

Admin Retrieving Created System Notification Accounts

Description

  • Allows administrators to retrieve a list of created system notification accounts, including ID, avatar, and name.

Request Method

  • POST

Request URL

  • {API_ADDRESS}/user/search_notification_account
Header NameExample ValueRequiredTypeDescription
operationID1646445464564RequiredstringUsed for global traceability, suggested as a unique timestamp per request
tokeneyJhbxxxx3XsRequiredstringAdmin token

Request Parameters Example

{
"keyword": "",
"pagination": {
"pageNumber": 1,
"showNumber": 10
}
}
Field NameRequiredTypeDescription
keywordOptionalstringUser ID or nickname to search; returns paginated system notification accounts if empty
paginationRequiredobjectPagination structure
pagination.pageNumberRequiredintCurrent page number, starting from 1
pagination.showNumberRequiredintNumber of items per page

Success Response Example

{
"errCode": 0,
"errMsg": "",
"errDlt": "",
"data": {
"total": 5,
"notificationAccounts": [
{
"userID": "1974356875",
"faceURL": "url",
"nickName": "notification1111111"
},
{
"userID": "8719627904",
"faceURL": "",
"nickName": "notification1"
},
{
"userID": "4208409642",
"faceURL": "",
"nickName": "notification1"
},
{
"userID": "2776836221",
"faceURL": "",
"nickName": "notification1"
}
]
}
}

Success Response Parameter Description

ParameterTypeDescription
errCodeintError code, 0 indicates success
errMsgstringBrief error message, empty if successful
errDltstringDetailed error information, empty if successful
dataobjectGeneral data object, structure described below
totalintTotal number of system notification accounts
notificationAccountsarrayList of system notification accounts
userIDstringSystem notification account ID
faceURLstringAvatar URL of the system notification account
nickNamestringName of the system notification account

Failure Response Example

{
"errCode": 1001,
"errMsg": "ArgsError",
"errDlt": "1001 ArgsError"
}

Failure Response Parameter Description

ParameterTypeDescription
errCodeintError code; refer to global error code documentation
errMsgstringBrief error message
errDltstringDetailed error information