/contact/{contactID}
URL
-
{HOST}/services
/contact/{contactID}
支持格式
HTTP 请求方式
认证方式
请求数限制
请求参数
|
是否必选
|
类型及范围
|
说明
|
auth
|
true
|
String
|
BASIC/APIKEY/ OAUTH 三种认证方式信息中的一种
|
alt
|
true
|
String
|
通过该参数,你可以改变返回值的格式,目前支持的返回值格式包括:atom(默认) ,暂不支持json
|
contactID
|
true
|
String
|
联系人ID
|
请求字符串
无
返回结果
202 表示删除成功。
400 表示该用户不存在 .
调用示例(Java 示例)
package cn.unisoftware.api.client.example.contact;
import cn.unisoftware.api.client.ApiClient;
import cn.unisoftware.api.client.utils.AtomConstants;
/**
* @description 删除联系人
* @author DJ
* @test 【true】
*/
public class DeleteContact {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
ApiClient apiClient = ApiClient.getApiClient(false,ApiClient.AuthMode.APIKEY, new String[]{AtomConstants.apikey,AtomConstants.apisecret});
String contactId = "5152703"; //可以根据查询所得
/**
* 将对应 的状态修改为0,已删除
*/
String res = apiClient.deleteContact(contactId);
System.out.println(res);
}
}