This is an archive version of the document. To get the most up-to-date information, see the current version.

Creating Folders

You can create a new folder in an S3 Compatible or IBM object storage container.

Creating Folders Note

If an object storage uses a self-signed SSL certificate, you must add this certificate to the trusted root of the server that runs Veeam Backup for Microsoft Office 365 REST API service. Otherwise, this method will not work.

Request

POST https://<hostname>:4443/v5/S3CompatibleResources/buckets/{bucketName}/folders?accountId=<accountId>&servicePoint=<servicePoint>&customRegionId=<customRegionId>

Request Headers

The request header must contain an authorization token of the current session.

Request Parameters

The following parameters must be specified in the URL of the request:

Parameter

Type

Description

bucketName

string

Specifies the bucket name. For more information on how to get this parameter, see Getting Buckets.

accountId

string

Specifies the identification number of a cloud account. For more information on how to get this parameter, see Getting Accounts.

servicePoint

string

An endpoint address of the host server.

customRegionId

string

A region type of the object storage.

Request Body

The following table lists available request properties:

Property

Type

Description

name

string

Specifies the name for a new folder.

Request Example

Request:

POST https://abc.tech.local:4443/v5/S3CompatibleResources/buckets/bucket1/folders?accountId=ebacce24-e6a3-494b-b29c-24d0d588f35e&servicePoint=abc.tech.local:9000&customRegionId=us-east-1

 

Request Header:

Authorization: Bearer <Access-Token>

Request Body:

{

    "name": "RESTStorageFolder"

}

Response

The server returns the following response to the client.

Response Codes

A successfully completed operation returns a response code 201 Created.

Response Headers

The response to this request contains the following headers. The response may also include additional standard HTTPS headers.

Header

Description

Content-length

The length of the response body.

Content-type

The media type and syntax of the response body message: application/json; charset=utf-8

Response Body

The response contains the following information:

Property

Type

Description

path

string

A folder path.

name

string

A folder name.

_links

Dictionary of string [key] and Object [value]

Links to related resources (navigation property).

Response Example

Response:

201 Created

 

Response Body:

{

  "path": "Veeam/Backup365/RESTStorageFolder/",

  "name": "RESTStorageFolder",

  "links":    {

     "self": {"href": "https://abc.tech.local:4443/v5/S3CompatibleResources/buckets/bucket1/folders/RESTStorageFolder?accountId=ebacce24-e6a3-494b-b29c-24d0d588f35e&ServicePoint=172.17.186.13:9000&CustomRegionId=us-east-1"},

     "account": {"href": "https://abc.tech.local:4443/v5/accounts/ebacce24-e6a3-494b-b29c-24d0d588f35e"},

     "bucket": {"href": "https://abc.tech.local:4443/v5/S3CompatibleResources/buckets/bucket1?accountId=ebacce24-e6a3-494b-b29c-24d0d588f35e&ServicePoint=172.17.186.13:9000&CustomRegionId=us-east-1"}

  }

}