Skip to content

Parts

Add upload part
uploads.parts.create(upload_id, **kwargs) -> UploadPart { id, created_at, object, upload_id }
POST/uploads/{upload_id}/parts
ModelsExpand Collapse
class UploadPart { id, created_at, object, upload_id }

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

id: String

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

created_at: Integer

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

object: :"upload.part"

The object type, which is always upload.part.

upload_id: String

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