SyncAPI


Click here for a complete list of operations.

FileShareGetItems

This method retrieves a list of files and folders for a given path in a FileShare link.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /api/syncapp/syncapi.asmx HTTP/1.1
Host: syncapi.filesanywhere.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://api.filesanywhere.com/FileShareGetItems"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FileShareGetItems xmlns="http://api.filesanywhere.com/">
      <FSToken>string</FSToken>
      <FileID>string</FileID>
      <FolderPath>string</FolderPath>
      <IncludeComments>string</IncludeComments>
    </FileShareGetItems>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FileShareGetItemsResponse xmlns="http://api.filesanywhere.com/">
      <FileShareItemResult>
        <ErrorMessage>string</ErrorMessage>
        <FileShareItems>
          <FileShareItem>
            <Type>string</Type>
            <Name>string</Name>
            <Size>string</Size>
            <DateLastModified>string</DateLastModified>
            <Path>string</Path>
            <FileID>string</FileID>
            <Comments>string</Comments>
            <CommentsDate>string</CommentsDate>
          </FileShareItem>
          <FileShareItem>
            <Type>string</Type>
            <Name>string</Name>
            <Size>string</Size>
            <DateLastModified>string</DateLastModified>
            <Path>string</Path>
            <FileID>string</FileID>
            <Comments>string</Comments>
            <CommentsDate>string</CommentsDate>
          </FileShareItem>
        </FileShareItems>
      </FileShareItemResult>
    </FileShareGetItemsResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /api/syncapp/syncapi.asmx HTTP/1.1
Host: syncapi.filesanywhere.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <FileShareGetItems xmlns="http://api.filesanywhere.com/">
      <FSToken>string</FSToken>
      <FileID>string</FileID>
      <FolderPath>string</FolderPath>
      <IncludeComments>string</IncludeComments>
    </FileShareGetItems>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <FileShareGetItemsResponse xmlns="http://api.filesanywhere.com/">
      <FileShareItemResult>
        <ErrorMessage>string</ErrorMessage>
        <FileShareItems>
          <FileShareItem>
            <Type>string</Type>
            <Name>string</Name>
            <Size>string</Size>
            <DateLastModified>string</DateLastModified>
            <Path>string</Path>
            <FileID>string</FileID>
            <Comments>string</Comments>
            <CommentsDate>string</CommentsDate>
          </FileShareItem>
          <FileShareItem>
            <Type>string</Type>
            <Name>string</Name>
            <Size>string</Size>
            <DateLastModified>string</DateLastModified>
            <Path>string</Path>
            <FileID>string</FileID>
            <Comments>string</Comments>
            <CommentsDate>string</CommentsDate>
          </FileShareItem>
        </FileShareItems>
      </FileShareItemResult>
    </FileShareGetItemsResponse>
  </soap12:Body>
</soap12:Envelope>