SDKs & CLIs
Postman Collection

Postman

Prerequisites

Before you can use AIOZ W3S with Postman, you must install Postman and configure it.

  1. Install Postman (opens in a new tab)
  2. Configure credentials.
  • Create a new request.
  • In Authorization tab, select AWS Signature.
  • Fill in the Access Key and Secret Key fields.
  • In Advanced settings, fill in the Service Name field with s3 and the Region field with us-east-1.

After you have installed and configured Postman, the following sections show you how to use it. For completed examples, see the Amazon S3 API Reference (opens in a new tab).

Create A Bucket

PUT / HTTP/1.1
Host: s3.w3s.aioz.network/bucket-name
 

List Buckets

GET / HTTP/1.1
Host: s3.w3s.aioz.network
 

List Objects

GET /bucket-name HTTP/1.1
Host: s3.w3s.aioz.network

Upload Object

PUT /bucket-name/object-name HTTP/1.1
Host: s3.w3s.aioz.network
 

Get Object

GET /bucket-name/object-name HTTP/1.1
Host: s3.w3s.aioz.network
 

Delete Object

DELETE /bucket-name/object-name HTTP/1.1
Host: s3.w3s.aioz.network
 

Delete Multiple Objects

POST /?delete HTTP/1.1
Host: s3.w3s.aioz.network
  

Delete Bucket

DELETE /bucket-name HTTP/1.1
Host: s3.w3s.aioz.network
 

Copy Object

PUT /dest-bucket-name/dest-object-name HTTP/1.1
Host: s3.w3s.aioz.network
x-amz-copy-source: /bucket-name/object-name