> ## 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.

# ZoomInfo: Action Doc

> Enrich Hashtags. ZoomInfo Enrich Hashtag reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Enrich Hashtags.

<Info>
  Tool ID: `zoominfo_enrich_hashtag`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'zoominfo_enrich_hashtag',
  {
    "data": {
      "type": "HashtagEnrich",
      "attributes": {
        "companyId": 123
      }
    }
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute zoominfo_enrich_hashtag --input '{
  "data": {
    "type": "HashtagEnrich",
    "attributes": {
      "companyId": 123
    }
  }
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "data": [
      {
        "id": "id_123",
        "type": "Hashtag",
        "attributes": {
          "searchString": "software companies hiring engineers",
          "displayLabel": "example",
          "description": "Example description"
        }
      }
    ]
  }
}
```

Use `deepline tools get zoominfo_enrich_hashtag --json` for the latest machine-readable contract.

## Input reference

Hashtag enrich request.

| Name           | Type     | Required | Default | Details                          |
| -------------- | -------- | -------- | ------- | -------------------------------- |
| `payload.data` | `object` | Yes      | —       | Hashtag enrich request resource. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Hashtag enrich request.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Hashtag enrich request resource.",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type of the resource",
            "default": "HashtagEnrich",
            "pattern": "HashtagEnrich"
          },
          "attributes": {
            "type": "object",
            "description": "Request attributes for hashtag enrich.",
            "properties": {
              "companyId": {
                "type": "integer",
                "description": "Unique ZoomInfo Identifier for the company.",
                "format": "int64"
              }
            },
            "additionalProperties": false
          }
        },
        "required": [
          "type",
          "attributes"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                            | Type      | Required | Default     | Details                                                                      |
| ----------------------------------------------- | --------- | -------- | ----------- | ---------------------------------------------------------------------------- |
| `result.data`                                   | `object`  | Yes      | —           | Hashtag enrich response.                                                     |
| `result.data.data`                              | `array`   | Yes      | —           | The primary data of the document                                             |
| `result.data.data[].id`                         | `string`  | Yes      | —           | The unique identifier for the resource                                       |
| `result.data.data[].type`                       | `string`  | Yes      | `"Hashtag"` | The type of the resource Pattern: `Hashtag`.                                 |
| `result.data.data[].attributes`                 | `object`  | Yes      | —           | Hashtag enrich response Attributes.                                          |
| `result.data.data[].attributes.searchString`    | `string`  | No       | —           | Search string for a hashtag.                                                 |
| `result.data.data[].attributes.displayLabel`    | `string`  | No       | —           | Display label for a hashtag.                                                 |
| `result.data.data[].attributes.description`     | `string`  | No       | —           | Description of the data being returned.                                      |
| `result.data.data[].attributes.group`           | `string`  | No       | —           | Group associated with the hashtag.                                           |
| `result.data.data[].attributes.priority`        | `integer` | No       | —           | Priority of the hashtag. Format: `int32`.                                    |
| `result.data.data[].attributes.parentCategory`  | `string`  | No       | —           | Parent Category for the retrieved data.                                      |
| `result.data.data[].attributes.displayScore`    | `string`  | No       | —           | Display score for the hashtag.                                               |
| `result.data.data[].attributes.hidden`          | `boolean` | No       | —           | Indicates whether the hashtag is hidden.                                     |
| `result.data.data[].attributes.categorizedFlag` | `boolean` | No       | —           | Indicates whether the hashtag is categorized.                                |
| `result.data.data[].attributes.label`           | `string`  | No       | —           | Label for the hashtag.                                                       |
| `result.data.meta`                              | `object`  | No       | —           | Metadata for non-paginated results, including the total number of results    |
| `result.data.meta.totalResults`                 | `integer` | Yes      | —           | The total number of results based on the specified filters Format: `uint32`. |
| `result.meta`                                   | `object`  | No       | —           | Additional response metadata (status, paging).                               |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Hashtag enrich response.",
        "properties": {
          "data": {
            "type": "array",
            "description": "The primary data of the document",
            "items": {
              "type": "object",
              "description": "Hashtag enrich response resource.",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The unique identifier for the resource"
                },
                "type": {
                  "type": "string",
                  "description": "The type of the resource",
                  "default": "Hashtag",
                  "pattern": "Hashtag"
                },
                "attributes": {
                  "type": "object",
                  "description": "Hashtag enrich response Attributes.",
                  "properties": {
                    "searchString": {
                      "type": "string",
                      "description": "Search string for a hashtag."
                    },
                    "displayLabel": {
                      "type": "string",
                      "description": "Display label for a hashtag."
                    },
                    "description": {
                      "type": "string",
                      "description": "Description of the data being returned."
                    },
                    "group": {
                      "type": "string",
                      "description": "Group associated with the hashtag."
                    },
                    "priority": {
                      "type": "integer",
                      "description": "Priority of the hashtag.",
                      "format": "int32"
                    },
                    "parentCategory": {
                      "type": "string",
                      "description": "Parent Category for the retrieved data."
                    },
                    "displayScore": {
                      "type": "string",
                      "description": "Display score for the hashtag."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Indicates whether the hashtag is hidden."
                    },
                    "categorizedFlag": {
                      "type": "boolean",
                      "description": "Indicates whether the hashtag is categorized."
                    },
                    "label": {
                      "type": "string",
                      "description": "Label for the hashtag."
                    }
                  },
                  "additionalProperties": false
                }
              },
              "required": [
                "id",
                "type",
                "attributes"
              ],
              "additionalProperties": false
            }
          },
          "meta": {
            "type": "object",
            "description": "Metadata for non-paginated results, including the total number of results",
            "properties": {
              "totalResults": {
                "type": "integer",
                "description": "The total number of results based on the specified filters",
                "format": "uint32"
              }
            },
            "required": [
              "totalResults"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "data"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

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

## Related documentation

* [ZoomInfo provider guide](/docs/providers/zoominfo/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
