Planfix API userGroup.getHeads
From Planfix
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:
<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>