# uip solution feeds

> Syntax and options for `uip solution feeds`, which lists the publish locations available to the current user.

`uip solution feeds` lists solution feeds — publish locations: the tenant feed, your Personal Workspace, and folder feeds you have access to. Use a feed's name or key with [`uip solution publish --feed`](./uip-solution-publish.md).

## Synopsis

```
uip solution feeds list [--login-validity <minutes>]
```

## list

List the feeds you can publish or deploy to. Personal Workspaces you're only exploring (not your own) are never listed.

### Options

| Long | Value | Default | Description |
|---|---|---|---|
| `--login-validity` | minutes | `10` | Minimum minutes before token expiration to trigger a refresh. |

### Examples

```bash
uip solution feeds list
```

### Data shape (--output json)

```json
{
  "Code": "SolutionFeedsList",
  "Data": [
    { "Name": "Tenant", "Key": "a1b2c3d4-0000-0000-0000-000000000001", "Type": "Tenant", "IsMyPersonalWorkspace": false },
    { "Name": "alice@uipath.com", "Key": "a1b2c3d4-0000-0000-0000-000000000002", "Type": "PersonalWorkspace", "IsMyPersonalWorkspace": true },
    { "Name": "Finance", "Key": "a1b2c3d4-0000-0000-0000-000000000003", "Type": "Folder", "IsMyPersonalWorkspace": false }
  ]
}
```

## Exit codes

See [Exit codes](./exit-codes.md) for the shared contract.

## Related commands

- [`uip solution publish`](./uip-solution-publish.md) — publish to a feed found here via `--feed <name-or-key>` or `--personal-workspace`.

## See also

- [Global options](./global-options.md) and [Exit codes](./exit-codes.md) — contracts shared by every verb.
