Query effective search blacklist records under the current appKey and specified business type with pagination.bizId is optional; if provided, an exact business object is queried
Only effective blacklist records under the current appKey are returned
pageNo defaults to 1, pageSize defaults to 20, and the maximum pageSize is 1000
Request Code Samples
curl --location 'http://open.tabcut.com:8090/api/blacklist/list?bizType=creator&bizId=1234567890&pageNo=1&pageSize=20' \
--header 'x-appKey: ' \
--header 'x-timestamp: {{x-timestamp}}' \
--header 'x-sign: {{x-sign}}'
Responses
application/json
{
"code": "200",
"message": "Success!",
"result": {
"total": 18,
"pageNo": 1,
"pageSize": 20,
"data": [
{
"bizType": "string",
"bizId": "string",
"reason": "string",
"gmtCreate": "2026-05-07T14:00:00"
}
]
},
"serverTime": "2026-05-07 14:00:00"
}
Modified at 2026-05-07 07:22:41