--- id: minio title: MinIO --- ToolJet can connect to minio and perform various operation on them.
:::tip
Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations)
:::
### Read Object
Retrieve an object from a bucket.
#### Required Parameter:
- **Bucket**
- **Object Name**
### Put Object
Upload or update an object in a bucket.
#### Required Parameter:
- **Bucket**
- **Object Name**
- **Upload data**
#### Optional Parameter:
- **Content Type**
### Remove Object
Delete an object from a bucket.
#### Required Parameter:
- **Bucket**
- **Object Name**
### List Buckets
Retrieve a list of all buckets.
### List Objects in a Bucket
List objects within a specified bucket.
#### Required Parameters
- **Bucket**
#### Optional Parametes
- **Prefix**
### Presigned URL for Download
Generate a presigned URL for downloading an object.
#### Required Parameter:
- **Bucket**
- **Object Name**
#### Optional Parameter:
- **Expires in**
### Presigned URL for Upload
Generate a presigned URL for uploading an object.
#### Required Parameter:
- **Bucket**
- **Object Name**
#### Optional Parameter:
- **Expires in**