Uploads
Create upload
Complete upload
Cancel upload
ModelsExpand Collapse
Upload = object { id, bytes, created_at, 6 more } The Upload object can accept byte chunks in the form of Parts.
The Upload object can accept byte chunks in the form of Parts.
The Upload unique identifier, which can be referenced in API endpoints.
The intended number of bytes to be uploaded.
The Unix timestamp (in seconds) for when the Upload was created.
The Unix timestamp (in seconds) for when the Upload will expire.
The name of the file to be uploaded.
The intended purpose of the file. Please refer here for acceptable values.
status: "pending" or "completed" or "cancelled" or "expired"The status of the Upload.
The status of the Upload.
The File object represents a document that has been uploaded to OpenAI.
The object type, which is always "upload".
UploadsParts
Add upload part
ModelsExpand Collapse
UploadPart = object { id, created_at, object, upload_id } The upload Part represents a chunk of bytes we can add to an Upload object.
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 object type, which is always upload.part.
The ID of the Upload object that this Part was added to.