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

# Peopledatalabs Person Identify: Inputs, Cost & CLI Example

> Resolving a person to a canonical PDL profile. 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=peopledatalabs_person_identify:{"first_name":"Jane","last_name":"Doe","company":"example"}' --json
```

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

## Input Schema

| Name                         | Type      | Required | Default | Description                                                    |
| ---------------------------- | --------- | -------- | ------- | -------------------------------------------------------------- |
| `payload.profile`            | `string`  | No       |         | LinkedIn profile URL.                                          |
| `payload.email`              | `string`  | No       |         | Email address.                                                 |
| `payload.phone`              | `string`  | No       |         | Phone number.                                                  |
| `payload.email_hash`         | `string`  | No       |         | Hashed email identifier.                                       |
| `payload.lid`                | `string`  | No       |         | PDL legacy person ID.                                          |
| `payload.street_address`     | `string`  | No       |         | Street address for matching.                                   |
| `payload.locality`           | `string`  | No       |         | City/locality.                                                 |
| `payload.region`             | `string`  | No       |         | State/region.                                                  |
| `payload.country`            | `string`  | No       |         | Country.                                                       |
| `payload.company`            | `string`  | No       |         | Company name or domain context.                                |
| `payload.school`             | `string`  | No       |         | School name context.                                           |
| `payload.location`           | `string`  | No       |         | Free-form location string.                                     |
| `payload.postal_code`        | `string`  | No       |         | Postal/ZIP code.                                               |
| `payload.name`               | `string`  | No       |         | Full name.                                                     |
| `payload.first_name`         | `string`  | No       |         | First name.                                                    |
| `payload.last_name`          | `string`  | No       |         | Last name.                                                     |
| `payload.middle_name`        | `string`  | No       |         | Middle name.                                                   |
| `payload.birth_date`         | `string`  | No       |         | Birth date (if known).                                         |
| `payload.pretty`             | `boolean` | No       |         | Pretty-print response JSON.                                    |
| `payload.titlecase`          | `boolean` | No       |         | Normalize output text casing.                                  |
| `payload.data_include`       | `string`  | No       |         | Avoid using data\_include unless you want partial fields only. |
| `payload.include_if_matched` | `boolean` | No       |         | Include additional response payload when matches are found.    |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "People Data Labs person identify input for ambiguous lookups (returns ranked candidate profiles).",
    "properties": {
      "profile": {
        "type": "string",
        "description": "LinkedIn profile URL."
      },
      "email": {
        "type": "string",
        "description": "Email address."
      },
      "phone": {
        "type": "string",
        "description": "Phone number."
      },
      "email_hash": {
        "type": "string",
        "description": "Hashed email identifier."
      },
      "lid": {
        "type": "string",
        "description": "PDL legacy person ID."
      },
      "street_address": {
        "type": "string",
        "description": "Street address for matching."
      },
      "locality": {
        "type": "string",
        "description": "City/locality."
      },
      "region": {
        "type": "string",
        "description": "State/region."
      },
      "country": {
        "type": "string",
        "description": "Country."
      },
      "company": {
        "type": "string",
        "description": "Company name or domain context."
      },
      "school": {
        "type": "string",
        "description": "School name context."
      },
      "location": {
        "type": "string",
        "description": "Free-form location string."
      },
      "postal_code": {
        "type": "string",
        "description": "Postal/ZIP code."
      },
      "name": {
        "type": "string",
        "description": "Full name."
      },
      "first_name": {
        "type": "string",
        "description": "First name."
      },
      "last_name": {
        "type": "string",
        "description": "Last name."
      },
      "middle_name": {
        "type": "string",
        "description": "Middle name."
      },
      "birth_date": {
        "type": "string",
        "description": "Birth date (if known)."
      },
      "pretty": {
        "type": "boolean",
        "description": "Pretty-print response JSON."
      },
      "titlecase": {
        "type": "boolean",
        "description": "Normalize output text casing."
      },
      "data_include": {
        "type": "string",
        "description": "Avoid using data_include unless you want partial fields only."
      },
      "include_if_matched": {
        "type": "boolean",
        "description": "Include additional response payload when matches are found."
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `record` | No       |         | Additional response metadata (status, paging). |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "People Data Labs person identify result with ranked candidate matches for disambiguation.",
    "properties": {
      "data": {
        "type": [
          "object",
          "null"
        ],
        "description": "Provider response payload.",
        "properties": {
          "matches": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "match": {
                  "type": "number"
                },
                "data": {
                  "type": "object",
                  "description": "PDL person record.",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "full_name": {
                      "type": "string"
                    },
                    "first_name": {
                      "type": "string"
                    },
                    "last_name": {
                      "type": "string"
                    },
                    "linkedin_url": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "work_email": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "emails": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "additionalProperties": {}
                      }
                    },
                    "personal_emails": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "recommended_personal_email": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "mobile_phone": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "phone_numbers": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "job_title": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "job_company_name": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "location_name": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "additionalProperties": false
                }
              },
              "additionalProperties": false
            }
          },
          "warnings": {
            "type": "array",
            "items": {}
          },
          "error": {
            "type": "string"
          },
          "status": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": {}
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute peopledatalabs_person_identify --payload '{
  "first_name": "Jane",
  "last_name": "Doe",
  "company": "example"
}' --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: `per_result` (per result).
* Estimated Deepline credits: `7.7` per pricing unit.
* Billing mode: `post_deduct`.
