> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.jazzhq.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.jazzhq.ai/_mcp/server.

# Vendor commands

Commands vendors use to manage their partner program. Commands are grouped by the
object they act on.

## Partners

### `jazzhq-cli invite-partner`

Invite a new partner.

| Flag                      | Required | Description                          |
| ------------------------- | -------- | ------------------------------------ |
| `--company-name`          | yes      | Partner's company name               |
| `--contact-name`          | yes      | Primary contact's full name          |
| `--contact-email-address` | yes      | Primary contact's email address      |
| `--contact-phone`         | no       | Primary contact's phone number       |
| `--type`                  | no       | One of \`\`RESELLER`, `DISTRIBUTOR\` |
| `--api-key`               | no       | Overrides `JAZZHQ_API_KEY`           |
| `--base-url`              | no       | Overrides `JAZZHQ_API_BASE_URL`      |

```bash
jazzhq-cli invite-partner \
  --company-name "Acme Inc" \
  --contact-name "Jane Doe" \
  --contact-email-address "jane@acme.com" \
  --type RESELLER
```

### `jazzhq-cli reinvite-partner`

Resend an invite email to an existing partner.

| Argument / Flag           | Required | Description                           |
| ------------------------- | -------- | ------------------------------------- |
| `partner_id` (positional) | yes      | The partner's ID                      |
| `--email-address`         | yes      | Email address to resend the invite to |
| `--api-key`               | no       | Overrides `JAZZHQ_API_KEY`            |
| `--base-url`              | no       | Overrides `JAZZHQ_API_BASE_URL`       |

```bash
jazzhq-cli reinvite-partner 1001 --email-address "jane@acme.com"
```

### `jazzhq-cli list-partners`

List partners connected to your vendor account.

| Flag         | Required | Default | Description                     |
| ------------ | -------- | ------- | ------------------------------- |
| `--page`     | no       | `0`     | Page number                     |
| `--per-page` | no       | `20`    | Results per page                |
| `--sort-by`  | no       | `id`    | Field to sort by                |
| `--api-key`  | no       |         | Overrides `JAZZHQ_API_KEY`      |
| `--base-url` | no       |         | Overrides `JAZZHQ_API_BASE_URL` |

```bash
jazzhq-cli list-partners --page 0 --per-page 20
```

## Leads, Contacts, Accounts, Deals, Commissions, Assets

Commands for these objects will appear here as they ship.