This API is used by the admin to delete all tags for users. Each request can delete all tags for a maximum of 100 users.
This feature can only be applied for by Ultimate Edition users (but not by Pro Edition users). You can apply for this feature by submitting a ticket, and we will evaluate your needs for approval. If we determine that this feature suits your needs, we will approve your application so that you can use the feature.
https://console.tim.qq.com/v4/all_member_push/im_remove_all_tags?usersig=xxx&identifier=admin&sdkappid=88888888&random=99999999&contenttype=json
Parameter | Description |
---|---|
https | The request protocol is HTTPS, and the request method is POST. |
console.tim.qq.com | Fixed domain name. |
v4/all_member_push/im_remove_all_tags | Request API |
usersig | The signature generated by the app admin account. For more information, see UserSig backend API. |
identifier | It must be the app admin account. |
sdkappid | The SDKAppID assigned by the IM console when the app is created. |
random | A random 32-bit unsigned integer. |
contenttype | Fixed value: JSON |
100 times/second
{
"To_Account": [
"xiaojun012",
"xiaojun013"
]
}
Field | Type | Required | Description |
---|---|---|---|
To_Account | String | Required | Target user account |
{
"ActionStatus": "OK",
"ErrorInfo": "",
"ErrorCode": 0
}
Field | Type | Description |
---|---|---|
ActionStatus | String | The processing result of the request. OK: succeeded. FAIL: failed. |
ErrorCode | Integer | Error code |
ErrorInfo | String | Error information |
The HTTP return code for this API is 200 unless a network error such as error 502 occurs. The actual error code and error information are indicated by ErrorCode and ErrorInfo in the response packet. For public error codes 60000 to 79999, see Error Codes.
The list below contains only error codes specific to this API:
Error Code | Description |
---|---|
90001 | Failed to parse the JSON format. Check whether the JSON request packet meets JSON specifications. |
90009 | The request requires the app admin’s permissions. |
90018 | The number of accounts requested exceeds the limit. |
91000 | An internal service error occurs. Please try again. |
To debug this API, you can use the Online RESTful API Debugging Tool.
Was this page helpful?