File Upload REST API Guide
Uploads a file in a single part to Fiddler.
Binary file object
File uploaded successfully.
Bad Request
Internal Server Error
POST /v3/files/upload HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: multipart/form-data
Accept: */*
Content-Length: 17
{
"file": "binary"
}
{
"api_version": "3.0",
"kind": "NORMAL",
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"filename": "text",
"type": "CSV",
"status": "INITIATED",
"created_by": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"full_name": "text",
"email": "[email protected]"
},
"updated_by": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"full_name": "text",
"email": "[email protected]"
},
"created_at": "2025-08-11T22:24:26.356Z",
"updated_at": "2025-08-11T22:24:26.356Z"
}
}
Initiates a multi-part upload process for a large file to Fiddler.
Name of the file uploaded by the user.
Multi-part upload request initiated successfully.
Bad Request
Internal Server Error
POST /v3/files/multipart-init HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"filename": "text"
}
{
"api_version": "3.0",
"kind": "NORMAL",
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"filename": "text",
"type": "CSV",
"status": "INITIATED",
"created_by": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"full_name": "text",
"email": "[email protected]"
},
"updated_by": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"full_name": "text",
"email": "[email protected]"
},
"created_at": "2025-08-11T22:24:26.356Z",
"updated_at": "2025-08-11T22:24:26.356Z"
}
}
Uploads a part of a large file to Fiddler as part of a multi-part upload process.
Binary file object
Unique file identifier
Part number of the file in multi-part upload process.
File part uploaded successfully.
Bad Request
Resource not found
Internal Server Error
POST /v3/files/multipart-upload HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: multipart/form-data
Accept: */*
Content-Length: 82
{
"file": "binary",
"file_id": "123e4567-e89b-12d3-a456-426614174000",
"part_number": 1
}
{
"api_version": "3.0",
"kind": "NORMAL",
"data": {
"part_id": 1
}
}
Completes the multi-part upload process for a large file in Fiddler.
Unique file identifier
Multi-part upload request completed successfully.
Bad Request
Resource not found
Internal Server Error
POST /v3/files/multipart-complete HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 85
{
"file_id": "123e4567-e89b-12d3-a456-426614174000",
"parts": [
{
"id": "text",
"number": 1
}
]
}
{
"api_version": "3.0",
"kind": "NORMAL",
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"filename": "text",
"type": "CSV",
"status": "INITIATED",
"created_by": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"full_name": "text",
"email": "[email protected]"
},
"updated_by": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"full_name": "text",
"email": "[email protected]"
},
"created_at": "2025-08-11T22:24:26.356Z",
"updated_at": "2025-08-11T22:24:26.356Z"
}
}
Last updated
Was this helpful?