Skip to main content

Vault | C# SDK | Folders Endpoints

Folders Endpoints

Create

VaultClient.FolderCreate(FolderCreateRequest)

Creates a folder.

required parameters

FolderCreateRequest

The request parameters to send to the '/folder/create' endpoint.

Response Object

Task<Response<FolderCreateResult>>

The response containing the created folder information.

var request = new FolderCreateRequest
    (
        "folder_name",
        "parent/folder/name")
    ;
var response = await client.FolderCreate(request);