<< Click to Display Table of Contents >> Setting recipients and CC for sending mail tasks in scheduling tasks |
![]() ![]() ![]() |
Request address |
http://ip:port/bi/api?action=saveNode&type=setTaskmailAddr&token=xxxx |
|
Request message |
Request parameter |
required parameter:xmlData (required) <?xml version="1.0" encoding="UTF-8"?> <info> <name>test</name> <tomail set="true">admin;abc;</tomail> <ccmail set="true">admin;abc;</ccmail> </info> |
parametric description |
1)name(required):The name of the task. 2)tomail(optional):Recipient node. When the value is true, the content of the node is set to the recipient. 3)ccmail(optional): CC node. When the value of the set property is "true", the content of the node is set to the CC. ➢explain: When the tomail or ccmail tag does not exist, do not modify the corresponding content. If you need to set the CC to be empty, you need to include the ccmail node set property to true and leave the value of the ccmail node blank.The value of the recipient and the CC is a semicolon; "a split list in which each item can be a user name or a mailbox address, and the last semicolon may be omitted. |
|
Sample |
function setTaskMail() { var xml = getXml(); $.post("http://" + ip + ":" + port + "/" + project + "/api?action=saveNode&type=setTaskmailAddr&token=xxxx", { "xmlData": xml }, function(result){ writeXml(result); }); } |
|
Response message |
Response result
|
1)Successful operation <?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>1</level> <message>Save ''test'' successfully.</message> </result> </results> 2) Operation failure <?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>6</level> <message> C:\Yonghong\Yonghong\bihome\scheduler\test.task (the system could not find the specified file.) </message> </result> </results> |
Result description |
The response result information is xml. direct parse. 1) Level return type, different values represent different return status, see appendix. 2) Message is the interface operation result information. |