> ## Documentation Index
> Fetch the complete documentation index at: https://docs.glam.systems/llms.txt
> Use this file to discover all available pages before exploring further.

# Manager Operations

Commands for vault managers to operate tokenized vaults, including pricing, fulfillment, and fee management.

## Price Vault

Update the pricing for vault assets. This is for debugging purpose only and you don't need to call it manually before performing fulfillment of subscriptions and redemptions (relevant instructions are automatically included in those transactions).

```bash theme={null}
glam-cli manage price
```

## Fulfill Requests

Fulfill queued subscription and redemption requests from investors.

```bash theme={null}
glam-cli manage fulfill
```

## Claim Fees

Claim management and performance fees collected by the tokenized vault.

```bash theme={null}
glam-cli manage claim-fees
```

## List Requests

List pending subscription and redemption requests in the queue. Displays each request's user, type, amounts, status, and creation date.

```bash theme={null}
glam-cli manage list-requests
```

## Cancel for User

Cancel a queued subscription or redemption request on behalf of a user.

* `pubkey`: Public key of the user whose request to cancel

```bash theme={null}
glam-cli manage cancel-for-user <pubkey> [--yes]
```

## Claim for User

Claim a fulfilled subscription or redemption request on behalf of a user.

* `pubkey`: Public key of the user to claim for

```bash theme={null}
glam-cli manage claim-for-user <pubkey> [--yes]
```

## Update Minimums

### Update Minimum Subscription

Set the minimum subscription amount for the vault.

```bash theme={null}
glam-cli manage update-min-subscription <amount> [--yes]
```

### Update Minimum Redemption

Set the minimum redemption amount for the vault.

```bash theme={null}
glam-cli manage update-min-redemption <amount> [--yes]
```

## Pause/Unpause Operations

### Pause

Pause subscription or redemption operations.

* `action`: Either `subscription` or `redemption`

```bash theme={null}
glam-cli manage pause <subscription|redemption> [--yes]
```

### Unpause

Resume subscription or redemption operations.

```bash theme={null}
glam-cli manage unpause <subscription|redemption> [--yes]
```
