schedule/{scheduleID}?cancel
URL
-
{HOST}/services
schedule/{scheduleID}?cancel
支持格式
HTTP 请求方式
认证方式
请求数限制
请求参数
字段名称 | 是否必选 | 字段类型 | 说明 |
auth | 是 | String | BASIC/APIKEY/ OAUTH 三种认证方式信息中的一种 |
alt | 是 | String | 通过该参数,你可以改变返回值的格式,目前支持的返回值格式包括:atom(默认) ,暂不支持json |
sendTaskId
|
是
|
String
|
发送任务ID
|
请求字符串
无
返回结果
201 表示取消成功
调用示例(Java 示例)
package cn.unisoftware.api.client.example.sendTask;
import cn.unisoftware.api.client.ApiClient;
import cn.unisoftware.api.client.utils.AtomConstants;
/**
* @Description 取消发送任务
* @author DJ
*
*/
public class CancelSendTask {
/**
* @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 taskId = "7110"; //根据QuerySendTask 查询所得
String res = apiClient.cancelSendTask(taskId);
System.out.println(res);
}
}