POST 1.0/{InstanceId}/FileUpload

Used as an intermediary stage for posting a new file for processing

Request Information

URI Parameters

API Parameter Details
NameDescriptionTypeAdditional information
InstanceId

The instance ID relating to a specific ADM database

string

Required

Body Parameters

None.

Response Information

Resource Description

A list of TempFileEntry objects corresponding to the uploaded files

Collection of TempFileEntry
API Parameter Details
NameDescriptionTypeAdditional information
ClientFileKey

The name / key that the client gave the file that was uploaded (could be based on the original filename, for example)

string

None.

ServerFileKey

A key representing the file uploaded to the server, used for creating a Document

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ClientFileKey": "sample string 1",
    "ServerFileKey": "sample string 2"
  },
  {
    "ClientFileKey": "sample string 1",
    "ServerFileKey": "sample string 2"
  }
]