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

# Sumble Find People: Inputs, Cost & CLI Example

> Find people at an organization. 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=sumble_find_people:{"organization":{},"filters":{}}' --json
```

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

## Input Schema

| Name                   | Type      | Required | Default | Description                                                                              |
| ---------------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `payload.organization` | `object`  | Yes      |         | Organization to enrich                                                                   |
| `payload.limit`        | `integer` | No       | `10`    | Maximum number of people to return                                                       |
| `payload.offset`       | `integer` | No       | `0`     | Number of results to skip                                                                |
| `payload.filters`      | `object`  | Yes      |         | Filters to apply to the people search. Can be either a Filters object or a Query object. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Find people at an organization",
    "properties": {
      "organization": {
        "description": "Organization to enrich",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "domain": {
                "type": "string",
                "description": "Company web domain"
              }
            },
            "required": [
              "domain"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "id": {
                "type": "integer",
                "description": "Organization Id on Sumble"
              }
            },
            "required": [
              "id"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "slug": {
                "type": "string",
                "description": "Organization Slug on Sumble"
              }
            },
            "required": [
              "slug"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "linkedin_url": {
                "type": "string",
                "description": "Organization LinkedIn URL",
                "minLength": 1,
                "maxLength": 2083,
                "format": "uri"
              }
            },
            "required": [
              "linkedin_url"
            ],
            "additionalProperties": false
          }
        ]
      },
      "limit": {
        "type": "integer",
        "description": "Maximum number of people to return",
        "default": 10,
        "minimum": 1,
        "maximum": 250
      },
      "offset": {
        "type": "integer",
        "description": "Number of results to skip",
        "default": 0,
        "minimum": 0,
        "maximum": 10000
      },
      "filters": {
        "description": "Filters to apply to the people search. Can be either a Filters object or a Query object.",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "job_functions": {
                "type": "array",
                "description": "Job function to filter by (e.g. Engineer, Executive)",
                "default": [],
                "items": {
                  "type": "string"
                }
              },
              "job_levels": {
                "type": "array",
                "description": "Job level to filter by (e.g. Senior, Manager)",
                "default": [],
                "items": {
                  "type": "string"
                }
              },
              "countries": {
                "type": "array",
                "description": "Countries to filter by (e.g. US, CA)",
                "default": [],
                "items": {
                  "type": "string"
                }
              },
              "since": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Only consider data since this date. Format: YYYY-MM-DD"
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "query": {
                "type": "string"
              }
            },
            "required": [
              "query"
            ],
            "additionalProperties": false
          }
        ]
      }
    },
    "required": [
      "organization",
      "filters"
    ],
    "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": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "organization": {
            "type": "object",
            "properties": {
              "id": {
                "type": "integer"
              },
              "slug": {
                "type": "string"
              },
              "name": {
                "type": "string"
              },
              "domain": {
                "type": "string"
              }
            },
            "required": [
              "id",
              "slug",
              "name",
              "domain"
            ],
            "additionalProperties": false
          },
          "people_count": {
            "type": "integer"
          },
          "people_data_url": {
            "type": "string",
            "minLength": 1,
            "maxLength": 2083,
            "format": "uri"
          },
          "people": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer"
                },
                "url": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 2083,
                  "format": "uri"
                },
                "linkedin_url": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "minLength": 1,
                  "maxLength": 2083,
                  "format": "uri"
                },
                "name": {
                  "type": "string"
                },
                "job_title": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "job_function": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "job_level": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "location": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "country": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "start_date": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "country_code": {
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "required": [
                "id",
                "url",
                "linkedin_url",
                "name",
                "job_title",
                "job_function",
                "job_level",
                "location",
                "country",
                "start_date",
                "country_code"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "id",
          "organization",
          "people_count",
          "people_data_url",
          "people"
        ],
        "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 sumble_find_people --payload '{
  "organization": {},
  "filters": {}
}' --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`.
