# Library

Source: https://docs.elnora.ai/docs/cli/library
Last modified: 2026-09-08T22:34:42-06:00

> Manage your organization's shared library.

Manage your organization's shared library.

## elnora library createFolder

Create a folder in the organization library

```bash
elnora library createFolder [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | yes | Folder name |
| `orgId` | uuid | yes | Organization ID |
| `parent` | uuid | no | Parent folder ID |

## elnora library deleteFolder

Delete a folder from the organization library

*Destructive*

```bash
elnora library deleteFolder [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `folderId` | uuid | yes | Folder ID to delete |
| `orgId` | uuid | yes | Organization ID |

## elnora library files

List files in the organization library

*Read-only*

```bash
elnora library files [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `orgId` | uuid | yes | Organization ID |
| `page` | integer | no | Page number Default: `1`. |
| `pageSize` | integer | no | Results per page Default: `25`. |

## elnora library folders

List folders in the organization library

*Read-only*

```bash
elnora library folders [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `orgId` | uuid | yes | Organization ID |

## elnora library renameFolder

Rename a folder in the organization library

```bash
elnora library renameFolder [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `folderId` | uuid | yes | Folder ID to rename |
| `name` | string | yes | New folder name |
| `orgId` | uuid | yes | Organization ID |
