> ## 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 Campaign Subsequence Operations: Inputs, Cost &

> Patching an Instantly campaign subsequence. 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_patch_campaign_subsequence:{}' --json
```

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

## Input Schema

| Name                                 | Type                                   | Required | Default | Description |
| ------------------------------------ | -------------------------------------- | -------- | ------- | ----------- |
| `payload.id`                         | `string`                               | No       |         |             |
| `payload.subsequence_id`             | `string`                               | No       |         |             |
| `payload.name`                       | `string`                               | No       |         |             |
| `payload.daily_limit_mode`           | `"inherit" \| "custom" \| "unlimited"` | No       |         |             |
| `payload.daily_limit`                | `number`                               | No       |         |             |
| `payload.ignore_account_daily_limit` | `boolean`                              | No       |         |             |

### Allowed values

| Field                      | Allowed values                   |
| -------------------------- | -------------------------------- |
| `payload.daily_limit_mode` | `inherit`, `custom`, `unlimited` |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Patch an Instantly campaign subsequence.",
    "properties": {
      "id": {
        "type": "string",
        "minLength": 1
      },
      "subsequence_id": {
        "type": "string",
        "minLength": 1
      },
      "name": {
        "type": "string",
        "minLength": 1
      },
      "daily_limit_mode": {
        "type": "string",
        "enum": [
          "inherit",
          "custom",
          "unlimited"
        ]
      },
      "daily_limit": {
        "type": [
          "number",
          "null"
        ],
        "minimum": 0
      },
      "ignore_account_daily_limit": {
        "type": "boolean"
      }
    },
    "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 patch campaign subsequence response."
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute instantly_patch_campaign_subsequence --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}
  > Requires one of the following scopes: `subsequences:update`, `subsequences:all`, `all:update`, `all:all`

  ## 58. Pause a subsequence

  Source: https://developer.instantly.ai/api-reference/campaignsubsequence/pause-a-subsequence.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`.
