Uploading Documents
Starting a Document Upload
POST
Start an upload by POST
ing the filename
and size
to /documents/init_upload
. To actually perform the upload it is then necessary to transmit the file to the provided upload_url
, with any additional_fields
as needed.
Performing the actual upload
A typical upload involves POST
ing a sample up to 20GB in size to a provided HTTPS URL. The Content-Type
should be multipart/form-data
and the additional_fields
should be included in the POST
body.
The workflow using httpie or Python requests is:
Body
application/json
The filename of the document to be uploaded, optionally gzipped (and ending in .gz
or .gzip
). Filenames should only contain alphanumeric characters, dashes, underscores, and periods.
The size of the file in bytes.
Required range:
x >= 1