/folder/update
URL
-
PUT {HOST}/services
/folder/update POST {HOST}/services
/folder/update
支持格式
HTTP 请求方式
认证方式
请求数限制
请求参数
字段名称 | 是否必选 | 字段类型 | 说明 |
auth | 是 | String | BASIC/APIKEY/ OAUTH 三种认证方式信息中的一种 |
alt | 是 | String | 通过该参数,你可以改变返回值的格式,目前支持的返回值格式包括:atom(默认) ,暂不支持json |
title |
是 |
String |
邮件件夹名称(更新后的邮件夹名称)
|
title
|
是 |
String |
<link href="http://services.unimarketing.com.cn/folder/广告/DJ测试分类" rel="related"></link>
DJ测试分类 待修改的邮件夹名称
|
请求字符串
<?xml version="1.0" encoding="GBK"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>DJ正式分类</title>
<link href="http://services.unimarketing.com.cn/folder/广告/DJ测试分类" rel="related"></link>
</entry>
返回结果
<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<id>http://services.unimarketing.com.cn/folder/4795</id>
<link href="http://services.unimarketing.com.cn/folder/广告/DJ正式分类_更新" rel="related"></link>
</entry>
字段说明
字段名称 | 意义 | 数据类型 | 备注 |
id
|
邮件夹ID
|
Number
|
|
link
|
DJ正式分类_更新 (更新后的邮件夹名称 )
|
String
|
|
调用示例(Java 示例)
package cn.unisoftware.api.client.example.mail;
import org.apache.abdera.Abdera;
import org.apache.abdera.model.Entry;
import cn.unisoftware.api.client.ApiClient;
import cn.unisoftware.api.client.utils.AtomConstants;
import cn.unisoftware.api.client.utils.XmlUtil;
/**
* @description 更新邮件分类
* @author DJ
* @test 【true】
*/
public class UpdateMailClassify {
/**
* @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});
Abdera abdera = Abdera.getInstance();
Entry entry = abdera.newEntry();
/**
* 表示在将 广告 分类下子分类 DJ测试分类 修改为 DJ正式分类
*/
entry.addSimpleExtension(AtomConstants.TITLE, "DJ正式分类");
entry.addLink("http://services.unimarketing.com.cn/folder/广告/DJ测试分类")
.setAttributeValue("rel", "related");
XmlUtil.displayEncodeXml(entry);
Entry res = apiClient.updateMailClassify(entry);
System.out.println(res.toString());
}
}