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

# Hubspot List Ticket Pipelines: Inputs, Cost & CLI Example

> List HubSpot ticket pipelines and stages to discover internal stage IDs before creating or moving tickets. Includes inputs, outputs, and CLI examples.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=hubspot_list_ticket_pipelines:{}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Required Fields

No required fields documented.

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute hubspot_list_ticket_pipelines --payload '{}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Provider API Context

<details>
  <summary>Show provider reference (optional)</summary>

  Source: [https://developers.hubspot.com/docs/apps/developer-platform/add-features/ui-extensibility/ui-components/standard-components/list](https://developers.hubspot.com/docs/apps/developer-platform/add-features/ui-extensibility/ui-components/standard-components/list)

  Learn about the List component for use in UI extensions.

  The `List` component renders a list of items. Each item in `List` will be wrapped in `<li>` tags. A list can be styled as inline, ordered, or unordered with the `variant` prop.

  <Frame>
    <img alt="ui-components-list-example" />
  </Frame>

  ```jsx theme={null} theme={null}
  import { List } from '@hubspot/ui-extensions';

  const Extension() {
    return (
      <List variant="unordered-styled">
        <Link href="www.hubspot.com">List item 1</Link>
        <Link href="www.developers.hubspot.com">List item 2</Link>
        <Link href="www.knowledge.hubspot.com">List item 3</Link>
      </List>
     );
  }
  ```

  | Prop      | Type                                                                                                                     | Description                                                                       |
  | --------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------- |
  | `variant` | `'unordered'` (default) \| `'unordered-styled'` \| `'ordered'` \| `'ordered-styled'` \| `'inline'` \| `'inline-divided'` | The type of list to render. See [variants section](#variants) below for examples. |

  ## Variants

  By default, lists will be configured as vertically stacked list items without bullets. To customize the styling, use the `variant` prop, as shown below.

  To create a bulleted unordered list:

  <Frame>
    <img alt="ui-components-list-variants_2" />
  </Frame>

  ```jsx theme={null} theme={null}
  <List variant="unordered-styled">
    <Link href="www.hubspot.com">List item 1</Link>
    <Link href="www.developers.hubspot.com">List item 2</Link>
    <Link href="www.knowledge.hubspot.com">List item 3</Link>
  </List>;
  ```

  To create a numbered list without styling:

  <Frame>
    <img alt="ui-components-list-variants_3" />
  </Frame>

  ```jsx theme={null} theme={null}
  <List variant="ordered">
    <Link href="www.hubspot.com">List item 1</Link>
    <Link href="www.developers.hubspot.com">List item 2</Link>
    <Link href="www.knowledge.hubspot.com">List item 3</Link>
  </List>;
  ```

  To create a numbered list with styling:

  <Frame>
    <img alt="ui-components-list-variants_4" />
  </Frame>

  ```jsx theme={null} theme={null}
  <List variant="ordered-styled">
    <Link href="www.hubspot.com">List item 1</Link>
    <Link href="www.developers.hubspot.com">List item 2</Link>
    <Link href="www.knowledge.hubspot.com">List item 3</Link>
  </List>;
  ```

  To stack list items horizontally:

  <Frame>
    <img alt="ui-components-list-variants_5" />
  </Frame>

  ```jsx theme={null} theme={null}
  <List variant="inline">
    <Link href="www.hubspot.com">List item 1</Link>
    <Link href="www.developers.hubspot.com">List item 2</Link>
    <Link href="www.knowledge.hubspot.com">List item 3</Link>
  </List>;
  ```

  To stack list items horizontally with a divider between each item:

  <Frame>
    <img alt="ui-components-list-variants_6" />
  </Frame>

  ```jsx theme={null} theme={null}
  <List variant="inline-divided">
    <Link href="www.hubspot.com">List item 1</Link>
    <Link href="www.developers.hubspot.com">List item 2</Link>
    <Link href="www.knowledge.hubspot.com">List item 3</Link>
  </List>;
  ```

  ## Related components

  * [Text](/apps/developer-platform/add-features/ui-extensibility/ui-components/standard-components/text)
  * [Accordion](/apps/developer-platform/add-features/ui-extensibility/ui-components/standard-components/accordion)
  * [DescriptionList](/apps/developer-platform/add-features/ui-extensibility/ui-components/standard-components/description-list)
</details>

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
