<< Click to Display Table of Contents >> Get Dashboard List |
![]() ![]() ![]() |
Request address |
http://ip:port/bi/api?action=updateTree&token=xxxx |
|
Request message |
Request parameter |
required parameter:xmlData (required) <?xml version="1.0" encoding="UTF-8"?> <info> <opens>dianxinggongnengyanshi/baobiaojiantiaozhuan</opens> <folders>dianxinggongnengyanshi/baobiaojiantiaozhuan</folders> </info> |
parametric description |
The parameter is node information: 1)Opens (optional) is the folder in the list that you want to open. 2)Folders (optional) are designated folders, and dashboards are obtained from the specified folders. Example 1: hangyeanli,hangyeanli/test,hangyeanli/test1 <?xml version="1.0" encoding="UTF-8"?> <info> <opens>hangyeanli/test</opens> <folders>hangyeanli</folders> </info> Result description: Only the industry case and test of industry case dashboard will be obtained, and the dashboard under the test 1 of industry case will not be available. |
|
Sample |
function getDB() { var xml = getXml(); $.post("http://" + ip + ":" + port + "/" + project + "/api?action=updateTree&token=xxxx", {xmlData : xml}, function(result) { writeXml(result); }); } |
|
Response message |
Response result
|
Successful operation <?xml version="1.0" encoding="UTF-8"?> <results> <result> <assetref> <name>baobiaojiantiaozhuan</name> <path>dianxinggongnengyanshi/baobiaojiantiaozhuan</path> <type>folder</type> <fstatus>folder-opened</fstatus> <children> <result><assetref><name>gexinghuaTooltip</name><path>dianxinggongnengyanshi/baobiaojiantiaozhuan/gexinghuaTooltip</path><type>db</type></assetref></result> <result><assetref><name>gexinghuaTooltip_neirong</name><path>dianxinggongnengyanshi/baobiaojiantiaozhuan/gexinghuaTooltip_neirong</path><type>db</type></assetref></result> <result><assetref><name>tiaozhuan_mubiaobiao</name><path>dianxinggongnengyanshi/baobiaojiantiaozhuan/tiaozhuan_mubiaobiao</path><type>db</type></assetref></result> <result><assetref><name>tiaozhuan_yuanbaio</name><path>dianxinggongnengyanshi/baobiaojiantiaozhuan/tiaozhuan_yuanbaio</path><type>db</type></assetref></result> </children> </assetref> </result> </results> |
Result description |
The response result information is xml, which can be directly parse. 1) Assetref: the node corresponds to the dashboard list. 2) Name: the node name. 3) Path: the node path. 4) Type: node type, including two types, folder is a folder, and db is a dashboard. 5) Children: the children node under the node. |