Export dashboard as file stream

<< Click to Display Table of Contents >>

Current:  System Integration > WebAPI 

Export dashboard as file stream

Previous pageReturn to chapter overviewNext page

Request address

http://ip:port/bi/api?action=downloadFile&token=xxxx

Request message

Request parameter

required parameter:xmlData (required)

<?xml version="1.0" encoding="UTF-8"?>                        

<info>                        

 <user>admin</user>                        

<rptPath>api/coffee</rptPath>                        

<fileType>pdf</fileType>                        

<params>                        

 <param name="id" type="int">1</param>                        

</params>                        

</info>        

parametric description

1)user(optional):The user name of the target user that you want to view.

2)rptPath(required):The path of the dashboard.

3)fileType(required):There are five kinds of pdf、xls、png、doc、csv。ps:When csv,the extension of the saved file needs to be written zip。

4)params(optional):You may not write. If you need to write, you need to write on the param tag.

5)param(optional) You need to take two attributes, name and type.

The values of type are:string、boolean、float、double、char、byte、short、int、long、date、time、dateTime。

Note: when script assignment parameter and api conflict, first execute api, then execute script, that is, script assignment parameter, this interface is returned is byte stream, if you need to save as a file, please handle it yourself.

Sample

function downloadFile() {

      var xml = getXml();

        $.post("http://" + ip + ":" + port + "/" + project + "/api?action=downloadFile&token=xxxx",

           {xmlData : xml},

           function(result) {

              writeXml(result);

           });

     }

Response message

Response result

 

Success: return file stream to save operation.

Error:

<?xml version="1.0" encoding="UTF-8"?>

<results>

   <result>

       <level>6</level>

       <message>User ''jessica'' is not granted to visit ''api/coffee'' in ''read access''.</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.

3) If you log in to a non-administrator account to view other people's data, you will return the above error message.