GET api/Files

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of File
NameDescriptionTypeAdditional information
Name

string

None.

LastModified

date

None.

Length

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "LastModified": "2024-04-27T03:00:38.1464991+00:00",
    "Length": 2
  },
  {
    "Name": "sample string 1",
    "LastModified": "2024-04-27T03:00:38.1464991+00:00",
    "Length": 2
  }
]

application/xml, text/xml

Sample:
<ArrayOfFile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CodeOfConductFileServer.Models">
  <File>
    <LastModified xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-04-27T03:00:38.1464991Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
    </LastModified>
    <Length>2</Length>
    <Name>sample string 1</Name>
  </File>
  <File>
    <LastModified xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-04-27T03:00:38.1464991Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
    </LastModified>
    <Length>2</Length>
    <Name>sample string 1</Name>
  </File>
</ArrayOfFile>