Creating buckets

This method will create a new S3 bucket in your AWS instance. Note that S3 bucket names are unique globally across all AWS customers. If your bucket name is already taken, the API will return an error.

Create a new bucket

PUT
/buckets
REQUEST BODY
{
  "name": "{bucket name}"
}
RESPONSE BODY
{
  "message": "Bucket successfully created."
}

Next articleListing buckets