Controller: Vault Management: GetFileserverUsers
GetFileserverUsers
This API method is accessable when using ams or emailpassword authentication
Authentication Methods
- With a username and password
- With AMS username and password
Input Parameter | Type | Description |
---|---|---|
Token* | String | Security token |
FileserverName* | String | FileServer name |
Output Parameter | Type | Description |
---|---|---|
Accounts | Account[] | A list of accounts with the path(s) that have access to on this Vault |
*=required
EXAMPLES
curl 'https://secure.nomadesk.com/ctrller/api.php?Token=rrc1d3ntb53tt6b2vhail6rdtrsxov3v&Task=GetFileserverUsers&FileserverName=nmsa000000000001'
RESPONSE
<?xml version="1.0" encoding="utf-8" ?>
<Response>
<Status>1</Status>
<Message>Success</Message>
<Users>
<User>
<FirstName>Firstname001</FirstName>
<LastName>Lastname001</LastName>
<Email>example001@example.com</Email>
<Path></Path>
<Status>Admin</Status>
</User>
<User>
<FirstName>Firstname002</FirstName>
<LastName>Lastname002</LastName>
<Email>example002@example.com</Email>
<Path>my/subdir/</Path>
<Status>Guest</Status>
</User>
</Response>