POST api/DeleteFile

Request Information

URI Parameters

None.

Body Parameters

Peticion
NameDescriptionTypeAdditional information
Filename

string

None.

NewPath

string

None.

FileContent

string

None.

Overwrite

boolean

None.

EntryNo

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Filename": "sample string 1",
  "NewPath": "sample string 2",
  "FileContent": "sample string 3",
  "Overwrite": true,
  "EntryNo": 5
}

application/xml, text/xml

Sample:
<Peticion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api_FileHandler.Models">
  <EntryNo>5</EntryNo>
  <FileContent>sample string 3</FileContent>
  <Filename>sample string 1</Filename>
  <NewPath>sample string 2</NewPath>
  <Overwrite>true</Overwrite>
</Peticion>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Respuesta
NameDescriptionTypeAdditional information
Status

string

None.

Error

string

None.

FileContent

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Error": "sample string 2",
  "FileContent": "sample string 3"
}

application/xml, text/xml

Sample:
<Respuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api_FileHandler.Models">
  <Error>sample string 2</Error>
  <FileContent>sample string 3</FileContent>
  <Status>sample string 1</Status>
</Respuesta>