File Upload REST API Guide
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
filestring · binaryRequired
Binary file object
Responses
200
File uploaded successfully.
application/json
400
Bad Request
application/json
500
Internal Server Error
application/json
post
/v3/files/uploadAuthorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
filenamestringRequired
Name of the file uploaded by the user.
Responses
200
Multi-part upload request initiated successfully.
application/json
400
Bad Request
application/json
500
Internal Server Error
application/json
post
/v3/files/multipart-initAuthorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
filestring · binaryRequired
Binary file object
file_idstring · uuidRequired
Unique file identifier
part_numberinteger · min: 1 · max: 1000Required
Part number of the file in multi-part upload process.
Responses
200
File part uploaded successfully.
application/json
400
Bad Request
application/json
404
Resource not found
application/json
500
Internal Server Error
application/json
post
/v3/files/multipart-uploadAuthorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
file_idstring · uuidOptional
Unique file identifier
Responses
200
Multi-part upload request completed successfully.
application/json
400
Bad Request
application/json
404
Resource not found
application/json
500
Internal Server Error
application/json
post
/v3/files/multipart-completeLast updated
Was this helpful?