File Upload REST API Guide

Upload file in a single part

post

Uploads a file in a single part to Fiddler.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
filestring · binaryRequired

Binary file object

Responses
200

File uploaded successfully.

application/json
Responseall of
post
/v3/files/upload

Initiate multi-part upload

post

Initiates a multi-part upload process for a large file to Fiddler.

Authorizations
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
Responseall of
post
/v3/files/multipart-init

Upload file a part of the file

post

Uploads a part of a large file to Fiddler as part of a multi-part upload process.

Authorizations
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
Responseall of
post
/v3/files/multipart-upload

Complete multi-part upload

post

Completes the multi-part upload process for a large file in Fiddler.

Authorizations
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
Responseall of
post
/v3/files/multipart-complete

Last updated

Was this helpful?