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

# Emailbison List Email Accounts With Warmup Stats: Inputs,

> Retrieves a collection of email accounts associated with the authenticated workspace, along with their warmup stats. 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=emailbison_list_email_accounts_with_warmup_stats:{"start_date":"{{start_date}}","end_date":"{{end_date}}"}' --json
```

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

## Input Schema

| Name                               | Type      | Required | Default | Description                                                                          |
| ---------------------------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------ |
| `payload.search`                   | `string`  | No       |         | optional Search term for filtering email accounts.                                   |
| `payload.tag_ids`                  | `array`   | No       |         | optional Array of tag IDs to filter by.                                              |
| `payload.excluded_tag_ids`         | `array`   | No       |         | The id of an existing record in the tags table.                                      |
| `payload.without_tags`             | `boolean` | No       |         | Only show leads that have no tags attached.                                          |
| `payload.warmup_status`            | `string`  | No       |         | The warmup status to filter by. Valid values: `enabled`, `disabled`                  |
| `payload.mx_records_status`        | `string`  | No       |         | The mx records status to filter by. Valid values: `records missing`, `records valid` |
| `payload.start_date`               | `string`  | Yes      |         | The start date to fetch stats (defaults to 10 days ago).                             |
| `payload.end_date`                 | `string`  | Yes      |         | The end date to fetch stats (defaults to today).                                     |
| `payload.filters.excluded_tag_ids` | `array`   | No       |         | Exclude email accounts by tag IDs.                                                   |
| `payload.filters.without_tags`     | `boolean` | No       |         | Only show email accounts that have no tags attached.                                 |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieves a collection of email accounts associated with the authenticated workspace, along with their warmup stats",
    "properties": {
      "search": {
        "type": [
          "string",
          "null"
        ],
        "description": "optional Search term for filtering email accounts."
      },
      "tag_ids": {
        "type": "array",
        "description": "optional Array of tag IDs to filter by.",
        "items": {
          "type": "integer"
        }
      },
      "excluded_tag_ids": {
        "type": "array",
        "description": "The id of an existing record in the tags table.",
        "items": {
          "type": "integer"
        }
      },
      "without_tags": {
        "type": "boolean",
        "description": "Only show leads that have no tags attached."
      },
      "warmup_status": {
        "type": "string",
        "description": "The warmup status to filter by. Valid values: `enabled`, `disabled`"
      },
      "mx_records_status": {
        "type": "string",
        "description": "The mx records status to filter by. Valid values: `records missing`, `records valid`"
      },
      "start_date": {
        "type": "string",
        "description": "The start date to fetch stats (defaults to 10 days ago)."
      },
      "end_date": {
        "type": "string",
        "description": "The end date to fetch stats (defaults to today)."
      },
      "filters.excluded_tag_ids": {
        "type": "array",
        "description": "Exclude email accounts by tag IDs.",
        "items": {
          "type": "integer"
        }
      },
      "filters.without_tags": {
        "type": "boolean",
        "description": "Only show email accounts that have no tags attached."
      }
    },
    "required": [
      "start_date",
      "end_date"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `string` | 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": "string",
        "description": "Provider response payload."
      },
      "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 emailbison_list_email_accounts_with_warmup_stats --payload '{
  "start_date": "string",
  "end_date": "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`.
