Controller: Vault Management: GetFileserversForUser
GetFileserversForUser
Returns a list of vaults with their access for a user on a specific Vault.
The user making the request must be the group manager.
Authentication Methods
- With a username and password
Input Parameter | Type | Description |
---|---|---|
Token* | String | Security token |
Name* | String | FileServer name |
Output Parameter | Type | Description |
---|---|---|
Fileservers | 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=GetFileserversForUser&Name=nmua000000000001'
RESPONSE
<?xml version="1.0" encoding="utf-8" ?>
<Response>
<Status>1</Status>
<Message>Success</Message>
<Fileservers>
<Fileserver>
<Name>nmsa000000000001</Name>
<Label>vault-001</Label>
<Path></Path>
<StorageApiUrl>secure001.nomadesk.com</StorageApiUrl>
<Owner>nmua000001</Owner>
<OwnerEmail>example01@example.com</OwnerEmail>
<Admin>nmua000001</Admin>
<AdminEmail>example01@example.com</AdminEmail>
<Access>
<ReadOnly>false</ReadOnly>
<AllowInvite>true</AllowInvite>
<AllowFolderLink>true</AllowFolderLink>
<AllowEmail2Folder>true</AllowEmail2Folder>
<AllowWidget>true</AllowWidget>
</Access>
</Fileserver>
<Fileserver>
<Name>nmsa000000000002</Name>
<Label>vault-002</Label>
<Path></Path>
<StorageApiUrl>secure001.nomadesk.com</StorageApiUrl>
<Owner>nmua000001</Owner>
<OwnerEmail>example01@example.com</OwnerEmail>
<Admin>nmua000002</Admin>
<AdminEmail>example02@example.com</AdminEmail>
<Access>
<ReadOnly>false</ReadOnly>
<AllowInvite>true</AllowInvite>
<AllowFolderLink>true</AllowFolderLink>
<AllowEmail2Folder>true</AllowEmail2Folder>
<AllowWidget>true</AllowWidget>
</Access>
</Fileserver>
</Fileservers>
</Response>