> ## 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 Send Super Agent Message: Inputs, Cost & CLI

> Send Super Agent Message. Attention Attention Send Super Agent Message docs include request fields, response shape, pricing notes, and Deepline 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=attention_send_super_agent_message:{"content":"{{content}}"}' --json
```

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

## Input Schema

| Name                   | Type     | Required | Default | Description                                                                        |
| ---------------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------- |
| `payload.callback_url` | `string` | No       |         | Optional webhook URL to receive the assistant's response when processing completes |
| `payload.session_id`   | `string` | No       |         | Optional session ID. If not provided, a new session will be created.               |
| `payload.content`      | `string` | Yes      |         | The message content to send to the super agent                                     |
| `payload.timezone`     | `string` | No       |         | Optional user timezone for timestamp formatting (e.g., 'America/New\_York')        |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Sends a message to the super agent. If session_id is not provided, creates a new session. Returns synchronously if completed within 15 seconds, otherwise returns 202 Accepted with session ID for polling. Optionally accepts a callback_url for webhook notification when the assistant response is ready.",
    "properties": {
      "callback_url": {
        "type": "string",
        "description": "Optional webhook URL to receive the assistant's response when processing completes",
        "format": "uri"
      },
      "session_id": {
        "type": "string",
        "description": "Optional session ID. If not provided, a new session will be created."
      },
      "content": {
        "type": "string",
        "description": "The message content to send to the super agent"
      },
      "timezone": {
        "type": "string",
        "description": "Optional user timezone for timestamp formatting (e.g., 'America/New_York')"
      }
    },
    "required": [
      "content"
    ],
    "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": {
          "session_id": {
            "type": "string",
            "description": "The session ID"
          },
          "user_message": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Unique identifier of the message"
              },
              "session_id": {
                "type": "string",
                "description": "ID of the session this message belongs to"
              },
              "content": {
                "type": "string",
                "description": "The message content"
              },
              "role": {
                "type": "string",
                "description": "The role of the message sender",
                "enum": [
                  "user",
                  "assistant"
                ]
              },
              "timestamp": {
                "type": "string",
                "description": "When the message was created",
                "format": "date-time"
              },
              "metadata": {
                "type": "object",
                "description": "Additional metadata associated with the message",
                "properties": {},
                "additionalProperties": false
              }
            },
            "additionalProperties": false
          },
          "assistant_message": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Unique identifier of the message"
              },
              "session_id": {
                "type": "string",
                "description": "ID of the session this message belongs to"
              },
              "content": {
                "type": "string",
                "description": "The message content"
              },
              "role": {
                "type": "string",
                "description": "The role of the message sender",
                "enum": [
                  "user",
                  "assistant"
                ]
              },
              "timestamp": {
                "type": "string",
                "description": "When the message was created",
                "format": "date-time"
              },
              "metadata": {
                "type": "object",
                "description": "Additional metadata associated with the message",
                "properties": {},
                "additionalProperties": false
              }
            },
            "additionalProperties": false
          }
        },
        "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_send_super_agent_message --payload '{
  "content": "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`.
