Rename portalcell folder

<< Click to Display Table of Contents >>

Current:  System Integration > WebAPI 

Rename portalcell folder

Previous pageReturn to chapter overviewNext page

Supported version: 8.5.1 and later

Request address

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

Request message

Request parameter

required parameter : xmlData(required)

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

<info>

    <from>

            <path>test3</path>

            <type>portalCellFolder</type>

     </from>

    <to>

            <path>test5</path>

            <type>portalCellFolder</type>

   </to>

</info>

parametric description

Parameter is node information:

1)from(required): Corresponds to the original path where you want to modify the portalcell folder.

2)from(required): Corresponds to the target path where you want to modify the portalcell folder.

3)path(required): The path of the portalcell folder.

4)type(required): The type of the portalcell folder that you added does not need to be modified.

Sample

function renamePortalCellFolder() {

        var xml = getXml();

        $.post("http://" + ip + ":" + port + "/" + project + "/api?action=renamePortalCellFolder&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>Update successfully.</message>

  </result>

</results>

2)Operation failure

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

<results>

  <result>

     <level>6</level>

     <message>Folder not found: test3.</message>

  </result>

</results>

Result description

The response result information is xml, direct parse.

Level return type, different values represent different return status, 1 indicates success, 6 indicates failure.