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

# Sharing

> Share apps with users, organizations, and the org app store

Apps can be shared directly with individual users, published to your organization's app store, or shared with external users outside your organization.

## Share with a user

```bash theme={null}
synthetiq entity share add <entity-id> --email colleague@acme.com
```

## Share to organization store

```bash theme={null}
synthetiq store publish <entity-id>
```

Publishes the app to your organization's app store, making it discoverable and installable by all organization members.

## Publisher access

Publishers can push new versions of an app, add other publishers, and deploy the app for their org. The creating user is automatically the first publisher.

```bash theme={null}
synthetiq entity publisher add <entity-id> --user-id <user-id>
synthetiq entity publisher list <entity-id>
synthetiq entity publisher delete <entity-id> --user-id <user-id>
```

## Managing shares

List and delete shares:

```bash theme={null}
synthetiq entity share list <entity-id>
synthetiq entity share delete <entity-id> --email dev@acme.com
synthetiq store unpublish <entity-id>
```

See the [CLI entity docs](/docs/platform-docs/cli/entity), [CLI store docs](/docs/platform-docs/cli/store), and [Platform API sharing docs](/docs/platform-docs/platform-api/sharing) for details.
