Adds a Part to an Upload
Adds a Part to an Upload 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.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the Upload.
"upload_abc123"
Body
The chunk of bytes for this Part.
Response
OK
The upload Part represents a chunk of bytes we can add to an Upload object.
The upload Part unique identifier, which can be referenced in API endpoints.
The Unix timestamp (in seconds) for when the Part was created.
The ID of the Upload object that this Part was added to.
The object type, which is always upload.part.
upload.part