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

# List FBO Account Aliases

> List alternate vault IDs for an FBO account

Returns all alternate vault IDs (aliases) associated with an FBO account, including inactive aliases.

**Permission:** `fbo_accounts:read`

## Path parameters

<ParamField path="id" type="string" required>
  The FBO account ID
</ParamField>

## Response

```json theme={null}
{
  "data": [
    {
      "id": "ja7alias123",
      "fboAccountId": "m97fbo456",
      "aliasVaultId": "1234567",
      "source": "api",
      "isActive": true,
      "updatedAt": "2025-06-15T09:00:00.000Z",
      "createdAt": "2025-06-15T09:00:00.000Z"
    }
  ]
}
```

<Note>
  Aliases are 7–20 digit identifiers that resolve to this FBO account during intake. The account's
  canonical `vaultId` (`PV-######`) is separate and is not listed here.
</Note>
