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

# Salesloft: People Show

> Fetch a person. Salesloft People Show reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Fetch a person.

<Info>
  Tool ID: `salesloft_people_show`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'salesloft_people_show',
  {
    "id": "id_123"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute salesloft_people_show --input '{
  "id": "id_123"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "id": 123,
    "created_at": "2026-01-15T12:00:00Z",
    "updated_at": "2026-01-15T12:00:00Z"
  }
}
```

Use `deepline tools get salesloft_people_show --json` for the latest machine-readable contract.

## Input reference

Fetches a person, by ID only.

| Name         | Type     | Required | Default | Details   |
| ------------ | -------- | -------- | ------- | --------- |
| `payload.id` | `string` | Yes      | —       | Person ID |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetches a person, by ID only.",
    "properties": {
      "id": {
        "type": "string",
        "description": "Person ID"
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                  | Type      | Required | Default | Details                                                                                                                                                                                                                                                                                |
| ------------------------------------- | --------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                         | `object`  | Yes      | —       | Provider response payload.                                                                                                                                                                                                                                                             |
| `result.data.id`                      | `integer` | No       | —       | Person ID                                                                                                                                                                                                                                                                              |
| `result.data.created_at`              | `string`  | No       | —       | Datetime of when the person was created Format: `date-time`.                                                                                                                                                                                                                           |
| `result.data.updated_at`              | `string`  | No       | —       | Datetime of when the person was last updated Format: `date-time`.                                                                                                                                                                                                                      |
| `result.data.last_contacted_at`       | `string`  | No       | —       | Last datetime this person was contacted Format: `date-time`.                                                                                                                                                                                                                           |
| `result.data.last_replied_at`         | `string`  | No       | —       | Last datetime this person replied to an email Format: `date-time`.                                                                                                                                                                                                                     |
| `result.data.first_name`              | `string`  | No       | —       | First name                                                                                                                                                                                                                                                                             |
| `result.data.last_name`               | `string`  | No       | —       | Last name                                                                                                                                                                                                                                                                              |
| `result.data.display_name`            | `string`  | No       | —       | Either the full name or the email address. Use this when showing a person's name                                                                                                                                                                                                       |
| `result.data.email_address`           | `string`  | No       | —       | Email address                                                                                                                                                                                                                                                                          |
| `result.data.full_email_address`      | `string`  | No       | —       | Full email address with name                                                                                                                                                                                                                                                           |
| `result.data.secondary_email_address` | `string`  | No       | —       | Alternate email address                                                                                                                                                                                                                                                                |
| `result.data.personal_email_address`  | `string`  | No       | —       | Personal email address                                                                                                                                                                                                                                                                 |
| `result.data.phone`                   | `string`  | No       | —       | Phone without formatting                                                                                                                                                                                                                                                               |
| `result.data.phone_extension`         | `string`  | No       | —       | Phone extension without formatting                                                                                                                                                                                                                                                     |
| `result.data.home_phone`              | `string`  | No       | —       | Home phone without formatting                                                                                                                                                                                                                                                          |
| `result.data.mobile_phone`            | `string`  | No       | —       | Mobile phone without formatting                                                                                                                                                                                                                                                        |
| `result.data.linkedin_url`            | `string`  | No       | —       | Linkedin URL                                                                                                                                                                                                                                                                           |
| `result.data.title`                   | `string`  | No       | —       | Job title                                                                                                                                                                                                                                                                              |
| `result.data.city`                    | `string`  | No       | —       | City                                                                                                                                                                                                                                                                                   |
| `result.data.state`                   | `string`  | No       | —       | State                                                                                                                                                                                                                                                                                  |
| `result.data.country`                 | `string`  | No       | —       | Country                                                                                                                                                                                                                                                                                |
| `result.data.work_city`               | `string`  | No       | —       | Work location - city                                                                                                                                                                                                                                                                   |
| `result.data.work_state`              | `string`  | No       | —       | Work location - state                                                                                                                                                                                                                                                                  |
| `result.data.work_country`            | `string`  | No       | —       | Work location - country                                                                                                                                                                                                                                                                |
| `result.data.crm_url`                 | `string`  | No       | —       | CRM url                                                                                                                                                                                                                                                                                |
| `result.data.crm_id`                  | `string`  | No       | —       | CRM ID                                                                                                                                                                                                                                                                                 |
| `result.data.account_crm_id`          | `string`  | No       | —       | Account CRM ID                                                                                                                                                                                                                                                                         |
| `result.data.crm_object_type`         | `string`  | No       | —       | CRM object type                                                                                                                                                                                                                                                                        |
| `result.data.owner_crm_id`            | `string`  | No       | —       | Mapped owner field from your CRM                                                                                                                                                                                                                                                       |
| `result.data.person_company_name`     | `string`  | No       | —       | Company name. This property is specific to this person, unrelated to the company object. Updating the company object associated with this person is recommended                                                                                                                        |
| `result.data.person_company_website`  | `string`  | No       | —       | Company website. This property is specific to this person, unrelated to the company object. Updating the company object associated with this person is recommended                                                                                                                     |
| `result.data.person_company_industry` | `string`  | No       | —       | Company industry. This property is specific to this person, unrelated to the company object. Updating the company object associated with this person is recommended                                                                                                                    |
| `result.data.do_not_contact`          | `boolean` | No       | —       | Whether or not this person has opted out of all communication. Setting this value to true prevents this person from being called, emailed, or added to a cadence in SalesLoft. If this person is currently in a cadence, they will be removed.                                         |
| `result.data.bouncing`                | `boolean` | No       | —       | Whether this person's current email address has bounced                                                                                                                                                                                                                                |
| `result.data.locale`                  | `string`  | No       | —       | Time locale of the person                                                                                                                                                                                                                                                              |
| `result.data.locale_utc_offset`       | `integer` | No       | —       | The locale's timezone offset from UTC in minutes                                                                                                                                                                                                                                       |
| `result.data.eu_resident`             | `boolean` | No       | —       | Whether this person is marked as a European Union Resident or not                                                                                                                                                                                                                      |
| `result.data.personal_website`        | `string`  | No       | —       | The website of this person                                                                                                                                                                                                                                                             |
| `result.data.twitter_handle`          | `string`  | No       | —       | The twitter handle of this person                                                                                                                                                                                                                                                      |
| `result.data.last_contacted_type`     | `string`  | No       | —       | The type of the last touch to this person. Can be call, email, other                                                                                                                                                                                                                   |
| `result.data.job_seniority`           | `string`  | No       | —       | The Job Seniority of a Person, must be one of director, executive, individual\_contributor, manager, vice\_president, unknown                                                                                                                                                          |
| `result.data.job_function`            | `string`  | No       | —       | The Job Function of a Person                                                                                                                                                                                                                                                           |
| `result.data.custom_fields`           | `record`  | No       | —       | Custom fields are defined by the user's team. Only fields with values are presented in the API.                                                                                                                                                                                        |
| `result.data.tags`                    | `array`   | No       | —       | All tags applied to this person                                                                                                                                                                                                                                                        |
| `result.data.contact_restrictions`    | `array`   | No       | —       | Specific methods of communication to prevent for this person. This will prevent individual execution of these communication types as well as automatically skip cadence steps of this communication type for this person in SalesLoft. Values currently accepted: call, email, message |
| `result.data.success_count`           | `integer` | No       | —       | The person's success count. 1 if person has any active successes, 0 otherwise.                                                                                                                                                                                                         |
| `result.data.starred`                 | `boolean` | No       | —       | Whether this person is starred by the current user                                                                                                                                                                                                                                     |
| `result.data.untouched`               | `boolean` | No       | —       | The person's untouched status                                                                                                                                                                                                                                                          |
| `result.data.hot_lead`                | `boolean` | No       | —       | Whether this person is marked as a hot lead                                                                                                                                                                                                                                            |

The table shows the first 50 fields. Expand the raw schema below for every field.

<Info>
  This output schema is too large to embed without slowing the page. Get the complete live contract with `deepline tools get salesloft_people_show --json`.
</Info>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Salesloft provider guide](/docs/providers/salesloft/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
