# Get list file

#### Syntax

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

#### Example

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

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

  const data = await eueno.getObjectLists(
    {
      projectId: "id project",
      projectKey: "project key",
      path: 'dir_folder',
    },
  );
  console.log(`list file`,data.data.file);
}
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="135">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>Object</td><td>Yes</td><td>Id project eueno</td></tr><tr><td>path</td><td>String</td><td>No</td><td> path folder</td></tr></tbody></table>
