{ "opencollection": "1.0.0", "info": { "name": "OpenAI Assistants Containers API", "version": "2.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Containers", "type": "folder" }, "items": [ { "info": { "name": "List Containers", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/containers", "params": [ { "name": "limit", "value": "", "type": "query", "description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.\n" }, { "name": "order", "value": "", "type": "query", "description": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and `desc` for descending order.\n" }, { "name": "after", "value": "", "type": "query", "description": "A cursor for use in pagination. `after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.\n" }, { "name": "name", "value": "", "type": "query", "description": "Filter results by container name." } ] }, "docs": "Lists containers." }, { "info": { "name": "Create Container", "type": "http" }, "http": { "method": "POST", "url": "https://api.openai.com/v1/containers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a container." }, { "info": { "name": "Retrieve Container", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/containers/:container_id", "params": [ { "name": "container_id", "value": "", "type": "path" } ] }, "docs": "Retrieves a container." }, { "info": { "name": "Delete Container", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.openai.com/v1/containers/:container_id", "params": [ { "name": "container_id", "value": "", "type": "path", "description": "The ID of the container to delete." } ] }, "docs": "Delete a container." }, { "info": { "name": "List Container files", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/containers/:container_id/files", "params": [ { "name": "container_id", "value": "", "type": "path" }, { "name": "limit", "value": "", "type": "query", "description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.\n" }, { "name": "order", "value": "", "type": "query", "description": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and `desc` for descending order.\n" }, { "name": "after", "value": "", "type": "query", "description": "A cursor for use in pagination. `after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.\n" } ] }, "docs": "Lists container files." }, { "info": { "name": "Create a Container File\n\nYou can send either a multipart/form-data request with the raw file content, or a JSON request with a file ID.\n", "type": "http" }, "http": { "method": "POST", "url": "https://api.openai.com/v1/containers/:container_id/files", "params": [ { "name": "container_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a container file.\n" }, { "info": { "name": "Retrieve Container File", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/containers/:container_id/files/:file_id", "params": [ { "name": "container_id", "value": "", "type": "path" }, { "name": "file_id", "value": "", "type": "path" } ] }, "docs": "Retrieves a container file." }, { "info": { "name": "Delete Container File", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.openai.com/v1/containers/:container_id/files/:file_id", "params": [ { "name": "container_id", "value": "", "type": "path" }, { "name": "file_id", "value": "", "type": "path" } ] }, "docs": "Delete a container file." }, { "info": { "name": "Retrieve Container File Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/containers/:container_id/files/:file_id/content", "params": [ { "name": "container_id", "value": "", "type": "path" }, { "name": "file_id", "value": "", "type": "path" } ] }, "docs": "Retrieves a container file content." } ] } ], "bundled": true }