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

# Company-profiles

> `gcai company-profiles` commands.

## `gcai company-profiles list`

List company profiles

```bash theme={null}
gcai company-profiles list [--limit <number>] [--offset <number>]
```

| Flag                | Type     | Required | Description                                |
| ------------------- | -------- | -------- | ------------------------------------------ |
| `--limit <number>`  | `number` |          | Max items to return (default 100, max 500) |
| `--offset <number>` | `number` |          | Number of items to skip (default 0)        |

Wraps `GET /company-profiles` — see [List company profiles](/api-reference/list-company-profiles) for full parameter semantics.

## `gcai company-profiles get`

Get a company profile

```bash theme={null}
gcai company-profiles get <id>
```

Wraps `GET /company-profiles/{id}` — see [Get a company profile](/api-reference/get-company-profile) for full parameter semantics.

## `gcai company-profiles update`

Update a company profile

```bash theme={null}
gcai company-profiles update <id> [--name <value>] [--dba-name <value>] [--industry <value>] [--size <value>] [--location <value>] [--incorporation-country <value>] [--incorporation-state <value>] [--description <value>] [--revenue <value>] [--legal-matters <value>] [--regulations <value>] [--risk-tolerance <value>] [--additional-info <value>] [--customer-types <value>…]
```

| Flag                              | Type       | Required | Description                                           |
| --------------------------------- | ---------- | -------- | ----------------------------------------------------- |
| `--name <value>`                  | `string`   |          | Company name (cannot be cleared, max 255 chars)       |
| `--dba-name <value>`              | `string`   |          | Doing-business-as name. Send null to clear.           |
| `--industry <value>`              | `string`   |          | Industry sector. Send null to clear.                  |
| `--size <value>`                  | `string`   |          | Company size band. Send null to clear.                |
| `--location <value>`              | `string`   |          | Primary office location. Send null to clear.          |
| `--incorporation-country <value>` | `string`   |          | Country of incorporation. Send null to clear.         |
| `--incorporation-state <value>`   | `string`   |          | State/province of incorporation. Send null to clear.  |
| `--description <value>`           | `string`   |          | Short company description. Send null to clear.        |
| `--revenue <value>`               | `string`   |          | Annual revenue band. Send null to clear.              |
| `--legal-matters <value>`         | `string`   |          | Typical legal matters. Send null to clear.            |
| `--regulations <value>`           | `string`   |          | Key regulations. Send null to clear.                  |
| `--risk-tolerance <value>`        | `string`   |          | Risk tolerance level. Send null to clear.             |
| `--additional-info <value>`       | `string`   |          | Free-form additional context. Send null to clear.     |
| `--customer-types <value>…`       | `string[]` |          | Types of customers served. Send null or \[] to clear. |

Wraps `PATCH /company-profiles/{id}` — see [Update a company profile](/api-reference/update-company-profile) for full parameter semantics.
