Skip to content

Adds a [Part](/docs/api-reference/uploads/part-object) to an [Upload](/docs/api-reference/uploads/object) object. A Part represents a chunk of bytes from the file you are trying to upload. Each Part can be at most 64 MB, and you can add Parts until you hit the Upload maximum of 8 GB. It is possible to add multiple Parts in parallel. You can decide the intended order of the Parts when you [complete the Upload](/docs/api-reference/uploads/complete).

POST
/uploads/{upload_id}/parts

Authorizations

Parameters

Path Parameters

upload_id
required
string
upload_abc123

The ID of the Upload.

Request Body required

object
data
required

The chunk of bytes for this Part.

string format: binary

Responses

200

OK

The upload Part represents a chunk of bytes we can add to an Upload object.

object
id
required

The upload Part unique identifier, which can be referenced in API endpoints.

string
created_at
required

The Unix timestamp (in seconds) for when the Part was created.

integer
upload_id
required

The ID of the Upload object that this Part was added to.

string
object
required

The object type, which is always upload.part.

string
Allowed values: upload.part