# rip.pds.admin.listOwners

> Published by [pds.rip](https://lexicon.garden/identity/did:plc:w24v65i3bcsxk6mbbgfdukve)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:w24v65i3bcsxk6mbbgfdukve/rip.pds.admin.listOwners)
- [Documentation](https://lexicon.garden/lexicon/did:plc:w24v65i3bcsxk6mbbgfdukve/rip.pds.admin.listOwners/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:w24v65i3bcsxk6mbbgfdukve/rip.pds.admin.listOwners/examples)

## Definitions

### `rip.pds.admin.listOwners`

**Type**: `query`

Everyone who holds or has held accounts on this server, busiest first. Operators only.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `owners` | `array` | Yes |  |
| `defaults` | `ref` → `#defaults` | Yes | The configured limits, so the panel can show what an override is departing from. |

#### Errors

- **NotAnOperator**: The calling account does not operate this server.

### `rip.pds.admin.listOwners#defaults`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `quotaPerOwner` | `integer` | Yes |  |
| `maxLifetimeDays` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "rip.pds.admin.listOwners",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "NotAnOperator",
          "description": "The calling account does not operate this server."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "owners",
            "defaults"
          ],
          "properties": {
            "owners": {
              "type": "array",
              "items": {
                "ref": "rip.pds.admin.defs#ownerView",
                "type": "ref"
              }
            },
            "defaults": {
              "ref": "#defaults",
              "type": "ref",
              "description": "The configured limits, so the panel can show what an override is departing from."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 200,
            "maximum": 500,
            "minimum": 1
          }
        }
      },
      "description": "Everyone who holds or has held accounts on this server, busiest first. Operators only."
    },
    "defaults": {
      "type": "object",
      "required": [
        "quotaPerOwner",
        "maxLifetimeDays"
      ],
      "properties": {
        "quotaPerOwner": {
          "type": "integer"
        },
        "maxLifetimeDays": {
          "type": "integer"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
