POST api/N8N/UploadFile

Request Information

URI Parameters

None.

Body Parameters

N8NRequestForUploadFile
NameDescriptionTypeAdditional information
platform

string

Required

doc_link

string

Required

file_name

string

Required

file_type

string

Required

file_size

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "platform": "sample string 1",
  "doc_link": "sample string 2",
  "file_name": "sample string 3",
  "file_type": "sample string 4",
  "file_size": 5
}

application/xml, text/xml

Sample:
<N8NController.N8NRequestForUploadFile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebKimiyaAPI.Controllers">
  <doc_link>sample string 2</doc_link>
  <file_name>sample string 3</file_name>
  <file_size>5</file_size>
  <file_type>sample string 4</file_type>
  <platform>sample string 1</platform>
</N8NController.N8NRequestForUploadFile>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.