Skip to main content
API version 2024.0 The representation of an upload session chunk.
This resource has a few variations that can be encountered when using the API.The fields that are part of the standard variant are generally returned when the resource is requested via its own API endpoints. For example, when retrieving a file by ID, it will return these fields unless the fields parameter has been specified.
offset
integer(int64)
example: 16777216The offset of the chunk within the file in bytes. The lower bound of the position of the chunk within the file.
part_id
string
example: 6F2D3486The unique ID of the chunk.
sha1
string
example: 134b65991ed521fcfe4724b7d814ab8ded5185dcThe SHA1 hash of the chunk.
size
integer(int64)
example: 3222784The size of the chunk in bytes.
{
  "offset": 16777216,
  "part_id": "6F2D3486",
  "sha1": "134b65991ed521fcfe4724b7d814ab8ded5185dc",
  "size": 3222784
}