<< Click to Display Table of Contents >> Running schedule tasks and schedule task folders |
![]() ![]() ![]() |
Request address |
http://ip:port/bi/api?action=runJobs&token=xxxxx |
|
Request message |
Request parameter |
required parameter:xmlData (required) <?xml version="1.0" encoding="UTF-8"?> <info> <path>test</path> <isForder>true</isForder> <isOnlyJob>false</isOnlyJob> <params> <param name="Short" type="int">1</param> </params> </info> |
parametric description |
1)path(required):job path. 2)isForder(required)True if path is a folder. False if it is a single job. 3)isOnlyJob(required):True if path is a folder and only wants to run jobs in the first level directory under the folder. False if you want to run all the jobs under the folder. 4)param(required) Need to take two One is name. the other is type. The values of type are:string、boolean、float、double、char、byte、short、int、long、time、dateTime。If you want to run the job in the root directory, write the path as null. eg:<path></path>。 |
|
Sample |
function runJobs () { var xml = getXml(); $.post("http://" + ip + ":" + port + "/" + project + "/api?action= runJobs&token=xxxx", {xmlData : xml}, function(result) { writeXml(result); }); } |
|
Response message |
Response result
|
<?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>1</level> <message>''1'' jobs is started.</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. |