See also:
List all containers for the current storage provider.
GET /api/containers
None.
Get information about specified container.
GET /api/containers/<container-name>
<container-name> - name of container for which to return information.Create a new container with the current storage provider.
POST /api/containers
Container specification in POST body.
Delete the specified container.
DELETE /api/containers/<container-name>
<container-name> - name of container to delete.List all files within a given container by name.
GET /api/containers/<container-name>/files
<container-name> - name of container for which to list files.Get information for a file within a given container by name
GET /api/containers/<container-name>/files/file-name
<container-name> - name of container.Delete specified file within specified container.
DELETE /api/containers/container-name/files/file-name
<container-name> - name of container.Upload one or more files into the given container by name. The request body should use multipart/form-data which the file input type for HTML uses.
POST /api/containers/container-name/upload
<container-name> - name of container to which to upload files.Download specified file within specified container.
GET /api/containers/container-name/download/file-name
<container-name> - name of container from which to download file.