> ## 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 Technologies. ZoomInfo Enrich Technology reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Enrich Technologies.

<Info>
  Tool ID: `zoominfo_enrich_technology`
</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_technology',
  {
    "data": {
      "type": "TechnologyEnrich",
      "attributes": {
        "companyId": 123
      }
    }
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoominfo_enrich_technology --input '{
  "data": {
    "type": "TechnologyEnrich",
    "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": "Technology",
        "attributes": {
          "categoryParent": "example",
          "category": "example",
          "vendor": "example"
        }
      }
    ]
  }
}
```

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

## Input reference

Technology enrich request.

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

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Technology enrich request.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Technology enrich request resource.",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type of the resource",
            "default": "TechnologyEnrich",
            "pattern": "TechnologyEnrich"
          },
          "attributes": {
            "type": "object",
            "description": "Request attributes for technology 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      | —              | Technology 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      | `"Technology"` | The type of the resource Pattern: `Technology`.                               |
| `result.data.data[].attributes`                | `object`  | Yes      | —              | Technology enrich response attributes.                                        |
| `result.data.data[].attributes.categoryParent` | `string`  | No       | —              | Parent Category for the retrieved data.                                       |
| `result.data.data[].attributes.category`       | `string`  | No       | —              | Category for the retrieved data.                                              |
| `result.data.data[].attributes.vendor`         | `string`  | No       | —              | Vendor associated with the data being returned.                               |
| `result.data.data[].attributes.product`        | `string`  | No       | —              | Product associated with the data being returned.                              |
| `result.data.data[].attributes.attribute`      | `string`  | No       | —              | Attribute of the technology.                                                  |
| `result.data.data[].attributes.website`        | `string`  | No       | —              | Website associated with the data being returned.                              |
| `result.data.data[].attributes.logo`           | `string`  | No       | —              | The URL which can be used to retrieve the logo.                               |
| `result.data.data[].attributes.domain`         | `string`  | No       | —              | Domain associated with the data being returned.                               |
| `result.data.data[].attributes.createdDate`    | `string`  | No       | —              | Date when the data was created. Uses YYYY-MM-DD format. Format: `date`.       |
| `result.data.data[].attributes.modifiedDate`   | `string`  | No       | —              | Date when the data was last modified. Uses YYYY-MM-DD format. Format: `date`. |
| `result.data.data[].attributes.description`    | `string`  | No       | —              | Description of the data being returned.                                       |
| `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": "Technology enrich response.",
        "properties": {
          "data": {
            "type": "array",
            "description": "The primary data of the document",
            "items": {
              "type": "object",
              "description": "Technology enrich response resource.",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The unique identifier for the resource"
                },
                "type": {
                  "type": "string",
                  "description": "The type of the resource",
                  "default": "Technology",
                  "pattern": "Technology"
                },
                "attributes": {
                  "type": "object",
                  "description": "Technology enrich response attributes.",
                  "properties": {
                    "categoryParent": {
                      "type": "string",
                      "description": "Parent Category for the retrieved data."
                    },
                    "category": {
                      "type": "string",
                      "description": "Category for the retrieved data."
                    },
                    "vendor": {
                      "type": "string",
                      "description": "Vendor associated with the data being returned."
                    },
                    "product": {
                      "type": "string",
                      "description": "Product associated with the data being returned."
                    },
                    "attribute": {
                      "type": "string",
                      "description": "Attribute of the technology."
                    },
                    "website": {
                      "type": "string",
                      "description": "Website associated with the data being returned."
                    },
                    "logo": {
                      "type": "string",
                      "description": "The URL which can be used to retrieve the logo."
                    },
                    "domain": {
                      "type": "string",
                      "description": "Domain associated with the data being returned."
                    },
                    "createdDate": {
                      "type": "string",
                      "description": "Date when the data was created. Uses YYYY-MM-DD format.",
                      "format": "date"
                    },
                    "modifiedDate": {
                      "type": "string",
                      "description": "Date when the data was last modified. Uses YYYY-MM-DD format.",
                      "format": "date"
                    },
                    "description": {
                      "type": "string",
                      "description": "Description of the data being returned."
                    }
                  },
                  "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)
