标识注销
## 接口名称
标识注销接口
## 接口描述
注销标识。
## 接口地址
https://api.gdsinsing.com/safety/api/remove-identifier
## 调用方式
|方法|数据类型|
|-|-|
|[ ] GET|[ ] form-data|
|[X] POST|[X] x-www-form-urlencoded|
|[ ] PUT|[ ] raw|
|[ ] DELETE||
## 参数说明
|参数名|类型|必填|说明|
|-|-|-|-|
|handle|String|是|需要注销的标识码
## 返回结果
详见:[API接口返回接口](doc:tueghrw2)
#### 成功返回
|参数名|类型|说明|
|-|-|-|
|result|Int|调用结果(0:失败,1:成功)|
|data|String||
#### 失败返回
详见:[API接口失败返回](doc:mue86lPL)
## 调用例子
``` JavaScript
var settings = {
"url": "https://api.gdsinsing.com/safety/api/remove-identifier",
"method": "POST",
"timeout": 0,
"headers": {
"Content-Type": "application/x-www-form-urlencoded"
},
"data": {
"handle": "88.168.89/1234567890"
}
};
$.ajax(settings).done(function (response) {
console.log(response);
});
```