标識注銷

## 接口名稱 标識注銷接口 ## 接口描述 注銷标識。 ## 接口地址 https://api.gdsinsing.com/safety/api/remove-identifier ## 調用方式 |方法|數(shù)據類型| |-|-| |[ ] GET|[ ] form-data| |[X] POST|[X] x-www-form-urlencoded| |[ ] PUT|[ ] raw| |[ ] DELETE|| ## 參數(shù)說明(míng) |參數(shù)名|類型|必填|說明(míng)| |-|-|-|-| |handle|String|是|需要注銷的标識碼 ## 返回結果 詳見:[API接口返回接口](doc:tueghrw2) #### 成功返回 |參數(shù)名|類型|說明(míng)| |-|-|-| |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); }); ```