Skip to main content

upload_parts

Creates, updates, deletes, gets or lists a upload_parts resource.

Overview

Nameupload_parts
TypeResource
Idopenai.uploads.upload_parts

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
add_upload_partINSERTupload_id

INSERT example

Use the following StackQL query and manifest file to create a new upload_parts resource.

/*+ create */
INSERT INTO openai.uploads.upload_parts (
upload_id
)
SELECT
'{{ upload_id }}'
;