# Create folder

#### Syntax

#### &#x20;                                               eueno.createFolder(opts)

#### Example

```
const Eueno = require('@eueno/lib-node');

async function example() {
  const eueno = new Eueno({
    endpoint: 'https://v2-developers.eueno.io',
  });

   data = await eueno.createFolder(
    {
      projectId: 'project id',
      path: 'test',
      projectKey: 'private key of a wallet',
    },
  );
}

example();

```

## Parameters

<table><thead><tr><th width="135">Name</th><th width="107">Type</th><th width="119">Required</th><th>Description</th></tr></thead><tbody><tr><td>opts</td><td>Object</td><td>Yes</td><td>Initialization parameter</td></tr></tbody></table>

## Properties <a href="#properties" id="properties"></a>

**opts**

<table><thead><tr><th width="176">Name</th><th width="107">Type</th><th width="119">Required</th><th>Description</th></tr></thead><tbody><tr><td>projectKey</td><td>String</td><td>Yes</td><td>project key to authenticate client and eueno server</td></tr><tr><td>projectId</td><td>String</td><td>Yes</td><td>ID of Eueno project</td></tr><tr><td>path</td><td>String</td><td>Yes</td><td>name folder</td></tr></tbody></table>
