POST api/v1/files/upload

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of File
NameDescriptionTypeAdditional information
id

globally unique identifier

Required

name

string

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "b4c551cc-ddbd-4877-8d16-f73f052016d7",
    "name": "sample string 2"
  },
  {
    "id": "b4c551cc-ddbd-4877-8d16-f73f052016d7",
    "name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IO.Swagger.Models">
  <File>
    <id>b4c551cc-ddbd-4877-8d16-f73f052016d7</id>
    <name>sample string 2</name>
  </File>
  <File>
    <id>b4c551cc-ddbd-4877-8d16-f73f052016d7</id>
    <name>sample string 2</name>
  </File>
</ArrayOfFile>