Modify user

<< Click to Display Table of Contents >>

Current:  System Integration > WebAPI 

Modify user

Previous pageReturn to chapter overviewNext page

Request address

http://ip:port/bi/api?action=saveNode&type=user&updateUser=true&resetPass=false&token=xxxx

matters need attention

resetPass Indicates whether the password is reset when the parameter pass is null,For example: true means to reset the original password to g5;false means preserving the original password;

Request message

 

Request parameter

 

required parameter :xmlData(required)

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

<info>

   <ouser>

     <name>test2</name>

  </ouser>

  <user>

     <name>hunk1</name>

     <alias></alias>

     <pass></pass>

     <email>test@qq.com</email>

     <parent></parent>

     <roles></roles>

  </user>

</info>

parametric description

 

The request parameters are new user information and old user information:

1)ouser(required):Old user information,Only name parameters are filled in ouser and must be filled in.

2)user(required):New user information. The name,email parameter in user must be filled in, the alias, parent parameter is optional.When parameters are not filled in, they are regarded as empty option values; when parameters are filled in, they are regarded as setting option values. Parent can be added multiple, separated by commas.

3)Select the pass parameter in user. When resetPass=true, filling in pass parameter means setting password, not filling in pass parameter means resetting password to g5; when resetPass=false, filling in pass parameter means setting password, not filling in pass parameter means retaining original password.

4)The roles parameter in user can be removed or optionally filled. When the roles parameter is removed, the original role is retained; when the roles parameter is not filled, the role is not set; and when the roles parameter is filled in, the role. Roles can be added, separated by commas

Sample

 

function addUser() {

  var xml = getXml();

  $.post("http://" + ip + ":" + port + "/" + project + "/api?action=saveNode&type=user&updateUser=true&resetPass=false&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>Operates successfully.</message>

  </result>

</results>

2) Operation failure

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

<results>

  <result>

     <level>6</level>

     <message>Name already exists.</message>

  </result>

</results>

or

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

<results>

  <result>

     <level>6</level>

     <message>Folder not found: g3.</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.