# 短信黑名单接口说明文档 ## 接口1: 黑名单查询接口 ```http POST HTTP://127.0.0.1:12086/sms/blacklist/api/query/ Content-Type: application/json { "phoneNumber": "13231899751", "fromSystem": "test" } ``` ## 接口2: 黑名单解除接口 ```http POST HTTP://127.0.0.1:12110/sms/blacklist/api/remove/ Content-Type: application/json { "phoneNumber": "13231899751", "fromSystem": "test", "operatorId": "test01" } ``` ```json HTTP/1.1 200 Content-Type: application/json Transfer-Encoding: chunked Date: Mon, 01 Aug 2022 02:18:48 GMT Connection: close { "success": true, "code": 200, "message": "成功", "data": { "delBlkSuccess": true, "delBlkMessage": "成功解除黑名单" } } ```