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

# talkvalue path company

> Manage companies in Path: list, get, update, and page through people grouped by company.

`talkvalue path company` groups the commands you need to inspect and edit companies, plus the read that drills from a company into its people. The Companies dashboard reads the same data, so edits made here appear there too.

## Subcommands

| Command                                                         | Description                                                                              |
| --------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| [`company list`](/cli/commands/path/company/list)               | Page through companies with a keyword filter                                             |
| [`company get`](/cli/commands/path/company/get)                 | Fetch a single company by ID                                                             |
| [`company update`](/cli/commands/path/company/update)           | Update a company's display name                                                          |
| [`company person list`](/cli/commands/path/company/person-list) | Page through the people in a company with keyword, channel, event, and job-title filters |

## Typical workflow

Find a company, inspect it, then drill into the people behind the headcount:

```bash theme={null}
talkvalue path company list --keyword "acme"
talkvalue path company get 88
talkvalue path company person list 88 --sort "joinedAt,desc" --page-size 25
```

Every read prints a table by default and respects `--json` for piping into `jq`. `company update` is the only mutating command in the group. It patches the display name in-place and returns the updated record so you can confirm the write succeeded.

## See also

* [Companies](/path/manage/companies). The dashboard surface this group mirrors.
* [`path person`](/cli/commands/path/person/index). The workspace-wide people group that `--company-id` filters tie back to.
* [Recipe: Scripting with jq](/cli/recipes/scripting-with-jq). Patterns for piping `--json` output.
