Search Blacklist - Unblock
Remove objects of the specified business type from the search content blacklist in batch (soft delete: records are flagged as ineffective).bizIds: up to 1000 per request, each must be a numeric string
Only records under the current appKey with the same bizType will be affected
Idempotent: calling on objects that are not blacklisted or already removed will not raise an error; affected rows count will simply be 0
After removal, search APIs targeting this business type will no longer filter these objects out
Real-time effect: after a successful operation, local caches on each pod are refreshed via Redis broadcast
Request
Body Params application/jsonRequired
{
"bizType": "creator",
"bizIds": [
"string"
]
}
Request Code Samples
curl --location 'http://open.tabcut.com:8090/api/blacklist/unblock' \
--header 'x-appKey: ' \
--header 'x-timestamp: {{x-timestamp}}' \
--header 'x-sign: {{x-sign}}' \
--header 'Content-Type: application/json' \
--data '{
"bizType": "creator",
"bizIds": [
"string"
]
}'
Responses
application/json
{
"code": "200",
"message": "Success!",
"result": 3,
"serverTime": "2026-05-07 14:00:00"
}
Modified at 2026-05-07 07:23:00