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

# Attention Change Conversation Opportunity: Inputs, Cost &

> Change Conversation Opportunity. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## 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=attention_change_conversation_opportunity:{"conversation_id":"{{conversation_id}}"}' --json
```

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

## Input Schema

| Name                                    | Type      | Required | Default | Description                                                                                                 |
| --------------------------------------- | --------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------- |
| `payload.conversation_id`               | `string`  | Yes      |         | UUID of the conversation to update                                                                          |
| `payload.opportunity_id`                | `string`  | No       |         | UUID of the opportunity to link. Required when linking or updating an opportunity.                          |
| `payload.entity_code`                   | `string`  | No       |         | CRM entity code for the opportunity (e.g., 'salesforce', 'hubspot')                                         |
| `payload.skip_intelligence_calculation` | `boolean` | No       | `false` | When true, skips recalculating CRM intelligence fields after the opportunity change. Defaults to false.     |
| `payload.remove_opportunity`            | `boolean` | No       | `false` | When true, removes the current opportunity from the conversation instead of linking one. Defaults to false. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Links, updates, or removes an opportunity associated with a conversation. When an opportunity is linked, CRM intelligence fields may be recalculated unless explicitly skipped.",
    "properties": {
      "conversation_id": {
        "type": "string",
        "description": "UUID of the conversation to update"
      },
      "opportunity_id": {
        "type": "string",
        "description": "UUID of the opportunity to link. Required when linking or updating an opportunity."
      },
      "entity_code": {
        "type": "string",
        "description": "CRM entity code for the opportunity (e.g., 'salesforce', 'hubspot')"
      },
      "skip_intelligence_calculation": {
        "type": "boolean",
        "description": "When true, skips recalculating CRM intelligence fields after the opportunity change. Defaults to false.",
        "default": false
      },
      "remove_opportunity": {
        "type": "boolean",
        "description": "When true, removes the current opportunity from the conversation instead of linking one. Defaults to false.",
        "default": false
      }
    },
    "required": [
      "conversation_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `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": "Provider response payload.",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Indicates whether the opportunity was changed successfully"
          }
        },
        "required": [
          "success"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute attention_change_conversation_opportunity --payload '{
  "conversation_id": "string"
}' --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.                      |

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