List objects from a storage configuration
Returns objects from the configured object store with optional filtering by path prefix, file extensions, and pagination support. Use `delimiter=true` for directory-style listing.
Authorization
BearerAuth Security scheme for OpenAPI endpoints. Validates both JWT tokens and API keys.
In: header
Path Parameters
uuidQuery Parameters
Prefix/path to filter objects (e.g., "data/raw/")
Comma-separated file extensions to filter (e.g., "csv,pdf,txt")
Maximum number of results to return (max: 1000, default: 100)
uint32Opaque token for pagination
Enable directory-style listing
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/storages/configs/497f6eca-6276-4993-bfeb-53cbbbba6f08/objects"{ "objects": [ { "path": "string", "name": "string", "extension": "string", "size": 0, "lastModified": "string", "etag": "string", "isDirectory": true } ], "commonPrefixes": [ "string" ], "nextContinuationToken": "string", "hasMore": true, "count": 0}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}Upload files to a storage path
Uploads one or more files to the specified path within the user's connected object store. The request body must be `Content-Type: multipart/form-data` with: - A **`path`** text field — the destination directory (e.g. `"data/raw/2024/"`). - One or more **`files`** binary parts — the files to upload. **Required scope:** `storage:write`
Delete an object from a storage configuration
Permanently removes the specified object from the object store.