/list/{listId}
URL
-
{HOST}/services
/list/{listId}
支持格式
HTTP 请求方式
认证方式
请求数限制
请求参数
字面说明
|
是否必填
|
字段类型
|
说明
|
auth
|
是
|
String
|
BASIC/APIKEY/ OAUTH 三种认证方式信息中的一种
|
alt
|
是
|
String
|
通过该参数,你可以改变返回值的格式,目前支持的返回值格式包括:atom(默认) ,暂不支持json
|
listId
|
是
|
String
|
联系人列表ID
|
请求字符串
无
202 Accepted
调用示例(Java 示例)
package cn.unisoftware.api.client.example1.contact;
import cn.unisoftware.api.client.ApiClient;
import cn.unisoftware.api.client.UnimailClient;
import cn.unisoftware.api.client.utils.AtomConstants;
/**
*
* @description 删除联系人列表
* @author DJ
* @test 【true】
*/
public class DeleteContactList {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
UnimailClient apiClient = UnimailClient.getClient(false,ApiClient.AuthMode.BASIC, new String[]{AtomConstants.userName,AtomConstants.userPwd});
Long listId = 5181l;
/**
*202 删除成功,400删除错误(1. 列表ID可能不存在, 2. 列表ID不合法)
*/
int resCode = apiClient.deleteContactList(listId);
System.out.println(resCode);
}
}