Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The project ID.
Body
Path to the files to be uploaded, e.g. @/path/to/hello_world.pdf
. Each file is a seperate multipart/form-data. PDF, DOCX, XLSX, PPT, TXT, RTF, CSV, and EML documents supported. Max size of 100 MB for all file types. A maximum of 50 files can be uploaded per API request.
"@/path/to/hello_world.pdf"
The desired folder structure for the file(s), e.g. /caselaw/usa/california/sf/hello_world.pdf
. This will be reconciled with the names in the provided files
paths.
"/caselaw/usa/california/sf/hello_world.pdf"
Determines how duplicate file names are handled. skip
will not update if a file with the same name already exists. replace
will create a new file record (with its own unique file_id
) and set its root_file_id
to the original file_id
.
skip
, replace
"skip"