Reads the entire list of all Virtual File Systems (VFS) available to a virtual server.

 

Request

Method

URL

POST

/smserver-default/sms.readVFSlist

RAW

POST /smserver-default/sms.readVFSlist HTTP/1.1

Cache-Control: no-cache

Connection: Keep-Alive

Pragma: no-cache

Content-Type: application/json; charset=UTF-8

Accept: */*

Authorization: Bearer XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX

 

[

{}

]

Explained

Retrieves the list of all virtual file systems (VFS) available to the current virtual server.

 

Payload: one-element JSON array containing an empty object

 

Response

Method

URL

RAW

Accept-Encoding: synlz,gzip

Content-Type: application/json; charset=UTF-8

 

 

{"result":[

[

       {

           "_id" : "K4EP2GNQXV3E3CXTXRR63DL4MI",

           "VFSName" : "SA",

           "TargetType" : "Disk",

           "Target" : "C:\\ProgramData\\Syncplify.me\\ServerV4\\WebRootSA\\",

           "EncryptionPass" : "",

           "SoftQuota" : 0,

           "HardQuota" : 0

       },

       {

           "_id" : "RJJOMPCFLB6UZNNXPX2FEUY35I",

           "VFSName" : "ADM",

           "TargetType" : "Disk",

           "Target" : "C:\\ProgramData\\Syncplify.me\\ServerV4\\WebRootADM",

           "EncryptionPass" : "",

           "SoftQuota" : 0,

           "HardQuota" : 0

       }

   ]

],"id":772674711}

Explained

List of all VFS items available to the current virtual server, with all details.

 

VFSName: friendly name of the VFS

TargetType: "Disk", "DiskAES256", ... (type of this specific VFS)

Target: the target path (depends on the VFS type)

EncryptionPass: Scrambled password used to encrypt the VFS contents at-rest

SoftQuota: soft quota in KB

HardQuota: hard quota in KB