# Hubspot Tickets

> Use when the user wants to manage HubSpot CRM tickets (support cases, service desk issues, customer requests) via the `hubspot` command-line tool.

- **Type:** Skill
- **Install:** `agentstack add skill-dipankar-hubspot-cli-hubspot-tickets`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [dipankar](https://agentstack.voostack.com/s/dipankar)
- **Installs:** 0
- **Category:** [Developer Tools](https://agentstack.voostack.com/c/developer-tools)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [dipankar](https://github.com/dipankar)
- **Source:** https://github.com/dipankar/hubspot-cli/tree/main/assets/skills/hubspot-tickets

## Install

```sh
agentstack add skill-dipankar-hubspot-cli-hubspot-tickets
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# HubSpot Tickets (via `hubspot` CLI)

Tickets represent customer service cases. They live in a ticket pipeline and move through stages (New → Waiting on contact → Waiting on us → Closed).

## Auth

Set `HUBSPOT_ACCESS_TOKEN`. Optional `--profile `.

## Canonical commands

| Intent | Command |
| --- | --- |
| List open tickets | `hubspot crm tickets list --limit 20 --properties subject,hs_pipeline_stage,hs_ticket_priority` |
| Get by ID | `hubspot crm tickets get 12345` |
| Create | `hubspot crm tickets create --subject "Login broken" --content "User reports 500" --priority HIGH` |
| Create from JSON | `hubspot crm tickets create --properties '{"subject":"Login broken","hs_pipeline":"0","hs_pipeline_stage":"1","hs_ticket_priority":"HIGH"}'` |
| Update stage | `hubspot crm tickets update 12345 --properties '{"hs_pipeline_stage":"4"}'` |
| Close | `hubspot crm tickets update 12345 --properties '{"hs_pipeline_stage":"4","hs_resolution":"RESOLVED"}'` |
| Delete | `hubspot crm tickets delete 12345 --yes` |
| Search by priority | `hubspot crm tickets search --filter-groups '[{"filters":[{"propertyName":"hs_ticket_priority","operator":"EQ","value":"HIGH"}]}]'` |
| Open tickets only | `hubspot crm tickets search --filter-groups '[{"filters":[{"propertyName":"hs_pipeline_stage","operator":"NEQ","value":"4"}]}]'` |

## Pipelines and stages

```bash
hubspot crm pipelines list tickets
hubspot crm pipelines stages tickets 
```

Ticket stage IDs are numeric strings (`"1"`, `"2"`, `"3"`, `"4"`), unlike deal stages which are named.

## Common properties

`subject`, `content`, `hs_pipeline`, `hs_pipeline_stage`, `hs_ticket_priority` (`LOW|MEDIUM|HIGH`), `hs_ticket_category`, `hubspot_owner_id`, `source_type`, `createdate`.

## Associating tickets

```bash
hubspot crm associations create tickets 12345 contacts 67890
hubspot crm associations create tickets 12345 companies 54321
hubspot crm associations create tickets 12345 deals 11111
```

## Scopes

- Read: `tickets`
- Write: `tickets`

## Tips

- If `hs_pipeline` is omitted on create, HubSpot uses the default ticket pipeline — fine for most cases.
- `hs_resolution` is free text; standardize on values the team already uses.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [dipankar](https://github.com/dipankar)
- **Source:** [dipankar/hubspot-cli](https://github.com/dipankar/hubspot-cli)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-dipankar-hubspot-cli-hubspot-tickets
- Seller: https://agentstack.voostack.com/s/dipankar
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
