Planfix API userGroup.getHeads

From Planfix
Revision as of 11:25, 11 March 2024 by Dmitri (talk | contribs) (Created page with "The function of obtaining a list of group supervisors. Request format: <source lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <request method="userGroup.getHeads"> <account></account> <sid></sid> <userGroup> <id></id> </userGroup> <signature></signature> </request> </source> {| class="wikitable" style="margin-top: 1em; width:100% " !width="150"|Name !!width="200"| Type !!width="50%"| Value !! Note |- |userGroup.id ||int ||group identifier || |- |signatu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The function of obtaining a list of group supervisors. Request format:

<?xml version="1.0" encoding="UTF-8"?>
<request method="userGroup.getHeads">
  <account></account>
  <sid></sid>
  <userGroup>
    <id></id>
  </userGroup>
  <signature></signature>
</request>
Name Type Value Note
userGroup.id int group identifier
signature string(32) signature


Ответ:

<response status="ok">
  <users count="count" totalCount="totalCount">
    <user>
      <!-- ... -->
    </user>
    <user>
      <!-- ... -->
    </user>
    <!-- ... -->
  </users>
</response>
Name Type Value Note
users Supervisor list
users.user user description, see the full description of the structure in the user.get section


Otherwise, a response with an error will be returned:

<?xml version="1.0" encoding="UTF-8"?>
<response status="error">
  <code></code>
</response>


Go To