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

# Instantly Account Operations: Inputs, Cost & CLI Example

> Marking an Instantly email account as fixed. 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=instantly_mark_account_fixed:{}' --json
```

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

## Input Schema

| Name                 | Type     | Required | Default | Description |
| -------------------- | -------- | -------- | ------- | ----------- |
| `payload.email`      | `string` | No       |         |             |
| `payload.account_id` | `string` | No       |         |             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Mark an Instantly email account as fixed.",
    "minProperties": 1,
    "properties": {
      "email": {
        "type": "string",
        "minLength": 1,
        "pattern": "^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$"
      },
      "account_id": {
        "type": "string",
        "minLength": 1,
        "pattern": "^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$"
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

Output schema is not available yet.

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "description": "Raw Instantly mark account fixed response."
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute instantly_mark_account_fixed --payload '{}' --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.                      |

## Provider API Context

<details>
  <summary>Show provider reference (optional)</summary>

  ```md theme={null}
  > An email account that can be used to send campaigns

  Manage email accounts used to send campaigns. These endpoints allow you to create, list, update, and delete accounts, as well as control warmup settings, pause and resume accounts, check custom tracking domain status, and move accounts between workspaces.

  ## Related schemas

  * [Account](/api-reference/schemas/account) — full field reference for email account objects

  ## Endpoints

  | Method | Endpoint                              | Description                       |
  | ------ | ------------------------------------- | --------------------------------- |
  | POST   | `/api/v2/accounts`                    | Create account                    |
  | GET    | `/api/v2/accounts`                    | List account                      |
  | GET    | `/api/v2/accounts/{email}`            | Get account                       |
  | PATCH  | `/api/v2/accounts/{email}`            | Patch account                     |
  | DELETE | `/api/v2/accounts/{email}`            | Delete account                    |
  | POST   | `/api/v2/accounts/warmup/enable`      | Enable warmup for accounts        |
  | POST   | `/api/v2/accounts/warmup/disable`     | Disable warmup for accounts       |
  | POST   | `/api/v2/accounts/{email}/pause`      | Pause an account                  |
  | POST   | `/api/v2/accounts/{email}/resume`     | Resume a paused account           |
  | POST   | `/api/v2/accounts/{email}/mark-fixed` | Mark an account as fixed          |
  | GET    | `/api/v2/accounts/ctd/status`         | Get custom tracking domain status |
  | POST   | `/api/v2/accounts/move`               | Move accounts between workspaces  |

  ## 89. Analytics

  Source: https://developer.instantly.ai/api-reference/groups/analytics.md
  ```
</details>

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