> ## 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 Get All Replies For Lead: Inputs, Cost & CLI

> This endpoint retrieves all replies for a specific lead The user must provide a valid authentication token in the request header to access this endpoint.

## 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_get_all_replies_for_lead:{"lead_id":"{{lead_id}}"}' --json
```

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

## Input Schema

| Name                      | Type      | Required | Default | Description                                                                      |
| ------------------------- | --------- | -------- | ------- | -------------------------------------------------------------------------------- |
| `payload.lead_id`         | `integer` | Yes      |         | the ID or email of the lead                                                      |
| `payload.search`          | `string`  | No       |         | Search term for filtering replies.                                               |
| `payload.status`          | `string`  | No       |         | Filter by status. One of `interested`, `automated_reply`, `not_automated_reply`. |
| `payload.folder`          | `string`  | No       |         | Filter by folder. One of `inbox`, `sent`, `spam`, `bounced`, `all`.              |
| `payload.read`            | `boolean` | No       |         | Filter by read status.                                                           |
| `payload.campaign_id`     | `integer` | No       |         | The ID of the campaign.                                                          |
| `payload.sender_email_id` | `integer` | No       |         | The ID of the sender email address.                                              |
| `payload.tag_ids`         | `array`   | No       |         | Array of tag IDs to filter by.                                                   |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "This endpoint retrieves all replies for a specific lead The user must provide a valid authentication token in the request header to access this endpoint.",
    "properties": {
      "lead_id": {
        "type": "integer",
        "description": "the ID or email of the lead"
      },
      "search": {
        "type": [
          "string",
          "null"
        ],
        "description": "Search term for filtering replies."
      },
      "status": {
        "type": "string",
        "description": "Filter by status. One of `interested`, `automated_reply`, `not_automated_reply`."
      },
      "folder": {
        "type": "string",
        "description": "Filter by folder. One of `inbox`, `sent`, `spam`, `bounced`, `all`."
      },
      "read": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "Filter by read status."
      },
      "campaign_id": {
        "type": "integer",
        "description": "The ID of the campaign."
      },
      "sender_email_id": {
        "type": "integer",
        "description": "The ID of the sender email address."
      },
      "tag_ids": {
        "type": "array",
        "description": "Array of tag IDs to filter by.",
        "items": {
          "type": "integer"
        }
      }
    },
    "required": [
      "lead_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": {
          "data": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer"
                },
                "uuid": {
                  "type": "string"
                },
                "folder": {
                  "type": "string"
                },
                "subject": {
                  "type": "string"
                },
                "read": {
                  "type": "boolean"
                },
                "interested": {
                  "type": "boolean"
                },
                "automated_reply": {
                  "type": "boolean"
                },
                "html_body": {
                  "type": "string"
                },
                "text_body": {
                  "type": "string"
                },
                "raw_body": {
                  "type": "string"
                },
                "headers": {
                  "type": "string"
                },
                "date_received": {
                  "type": "string"
                },
                "type": {
                  "type": "string"
                },
                "tracked_reply": {
                  "type": "boolean"
                },
                "scheduled_email_id": {
                  "type": "string"
                },
                "campaign_id": {
                  "type": "string"
                },
                "lead_id": {
                  "type": "integer"
                },
                "lead": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer"
                    },
                    "first_name": {
                      "type": "string"
                    },
                    "last_name": {
                      "type": "string"
                    },
                    "email": {
                      "type": "string"
                    },
                    "title": {
                      "type": "string"
                    },
                    "company": {
                      "type": "string"
                    },
                    "notes": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    },
                    "custom_variables": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "value": {
                            "type": "string"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "overall_stats": {
                      "type": "object",
                      "properties": {
                        "emails_sent": {
                          "type": "integer"
                        },
                        "opens": {
                          "type": "integer"
                        },
                        "replies": {
                          "type": "integer"
                        },
                        "unique_replies": {
                          "type": "integer"
                        },
                        "unique_opens": {
                          "type": "integer"
                        }
                      },
                      "additionalProperties": false
                    },
                    "created_at": {
                      "type": "string"
                    },
                    "updated_at": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                },
                "sender_email_id": {
                  "type": "integer"
                },
                "raw_message_id": {
                  "type": "string"
                },
                "from_name": {
                  "type": "string"
                },
                "from_email_address": {
                  "type": "string"
                },
                "primary_to_email_address": {
                  "type": "string"
                },
                "to": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string"
                      },
                      "address": {
                        "type": "string"
                      }
                    },
                    "additionalProperties": false
                  }
                },
                "cc": {
                  "type": "string"
                },
                "bcc": {
                  "type": "string"
                },
                "parent_id": {
                  "type": "string"
                },
                "attachments": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "integer"
                      },
                      "uuid": {
                        "type": "string"
                      },
                      "reply_id": {
                        "type": "integer"
                      },
                      "file_name": {
                        "type": "string"
                      },
                      "download_url": {
                        "type": "string"
                      },
                      "created_at": {
                        "type": "string"
                      },
                      "updated_at": {
                        "type": "string"
                      }
                    },
                    "additionalProperties": false
                  }
                }
              },
              "additionalProperties": false
            }
          },
          "links": {
            "type": "object",
            "properties": {
              "first": {
                "type": "string"
              },
              "last": {
                "type": "string"
              },
              "prev": {
                "type": "string"
              },
              "next": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "meta": {
            "type": "object",
            "properties": {
              "current_page": {
                "type": "integer"
              },
              "from": {
                "type": "integer"
              },
              "last_page": {
                "type": "integer"
              },
              "links": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "url": {
                      "type": "string"
                    },
                    "label": {
                      "type": "string"
                    },
                    "active": {
                      "type": "boolean"
                    }
                  },
                  "additionalProperties": false
                }
              },
              "path": {
                "type": "string"
              },
              "per_page": {
                "type": "integer"
              },
              "to": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              }
            },
            "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 emailbison_get_all_replies_for_lead --payload '{
  "lead_id": "integer"
}' --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`.
