> ## 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: Accounts Show

> Fetch an account. Salesloft Accounts Show reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Fetch an account.

<Info>
  Tool ID: `salesloft_accounts_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_accounts_show',
  {
    "id": "id_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute salesloft_accounts_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_accounts_show --json` for the latest machine-readable contract.

## Input reference

Fetches an account, by ID only.

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

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetches an account, by ID only.",
    "properties": {
      "id": {
        "type": "string",
        "description": "Account 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       | —       | ID of Account                                                                                                                                                                        |
| `result.data.created_at`                  | `string`  | No       | —       | Datetime of when the Account was created Format: `date-time`.                                                                                                                        |
| `result.data.updated_at`                  | `string`  | No       | —       | Datetime of when the Account was last updated Format: `date-time`.                                                                                                                   |
| `result.data.archived_at`                 | `string`  | No       | —       | Datetime of when the Account was archived, if archived Format: `date-time`.                                                                                                          |
| `result.data.name`                        | `string`  | No       | —       | Account Full Name                                                                                                                                                                    |
| `result.data.domain`                      | `string`  | No       | —       | Website domain, not a fully qualified URI                                                                                                                                            |
| `result.data.conversational_name`         | `string`  | No       | —       | Conversational name of the Account                                                                                                                                                   |
| `result.data.description`                 | `string`  | No       | —       | Description                                                                                                                                                                          |
| `result.data.phone`                       | `string`  | No       | —       | Phone number without formatting                                                                                                                                                      |
| `result.data.website`                     | `string`  | No       | —       | Website                                                                                                                                                                              |
| `result.data.linkedin_url`                | `string`  | No       | —       | Full LinkedIn url                                                                                                                                                                    |
| `result.data.twitter_handle`              | `string`  | No       | —       | Twitter handle, with @                                                                                                                                                               |
| `result.data.street`                      | `string`  | No       | —       | Street name and number                                                                                                                                                               |
| `result.data.city`                        | `string`  | No       | —       | City                                                                                                                                                                                 |
| `result.data.state`                       | `string`  | No       | —       | State                                                                                                                                                                                |
| `result.data.postal_code`                 | `string`  | No       | —       | Postal code                                                                                                                                                                          |
| `result.data.country`                     | `string`  | No       | —       | Country                                                                                                                                                                              |
| `result.data.locale`                      | `string`  | No       | —       | Time locale                                                                                                                                                                          |
| `result.data.industry`                    | `string`  | No       | —       | Industry                                                                                                                                                                             |
| `result.data.company_type`                | `string`  | No       | —       | Type of the Account's company                                                                                                                                                        |
| `result.data.founded`                     | `string`  | No       | —       | Date or year of founding                                                                                                                                                             |
| `result.data.revenue_range`               | `string`  | No       | —       | Estimated revenue range                                                                                                                                                              |
| `result.data.size`                        | `string`  | No       | —       | Estimated number of people in employment                                                                                                                                             |
| `result.data.crm_id`                      | `string`  | No       | —       | CRM ID                                                                                                                                                                               |
| `result.data.crm_url`                     | `string`  | No       | —       | CRM url                                                                                                                                                                              |
| `result.data.crm_object_type`             | `string`  | No       | —       | CRM object type                                                                                                                                                                      |
| `result.data.owner_crm_id`                | `string`  | No       | —       | Mapped owner field from the CRM                                                                                                                                                      |
| `result.data.prospector_engagement_score` | `string`  | No       | —       | Prospector engagement score for this account, normalized on a scale of 0.0 to 5.0. For the customers that do not opt-in to account engagement scoring, it will always be null        |
| `result.data.prospector_engagement_level` | `string`  | No       | —       | Prospector engagement level for this account, derived from prospector\_engagement\_score. For the customers that do not opt-in to account engagement scoring, it will always be null |
| `result.data.last_contacted_at`           | `string`  | No       | —       | Datetime this Account was last contacted Format: `date-time`.                                                                                                                        |
| `result.data.last_contacted_type`         | `string`  | No       | —       | The type of the last touch to this Account. Can be call, email, other                                                                                                                |
| `result.data.do_not_contact`              | `boolean` | No       | —       | Whether this company has opted out of communications. Do not contact someone at this company when this is set to true                                                                |
| `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.user_relationships`          | `record`  | No       | —       | Filters by accounts matching all given user relationship fields, \_is\_null or \_unmapped can be passed to filter accounts with null or unmapped user relationship values            |
| `result.data.tags`                        | `array`   | No       | —       | All tags applied to this Account                                                                                                                                                     |
| `result.data.counts`                      | `object`  | No       | —       | —                                                                                                                                                                                    |
| `result.data.counts.people`               | `integer` | No       | —       | Number of people in SalesLoft associated with this Account                                                                                                                           |
| `result.data.owner`                       | `object`  | No       | —       | User that is marked as the owner of this Account                                                                                                                                     |
| `result.data.owner.id`                    | `integer` | No       | —       | —                                                                                                                                                                                    |
| `result.data.owner._href`                 | `string`  | No       | —       | —                                                                                                                                                                                    |
| `result.data.creator`                     | `object`  | No       | —       | User that created this Account                                                                                                                                                       |
| `result.data.creator.id`                  | `integer` | No       | —       | —                                                                                                                                                                                    |
| `result.data.creator._href`               | `string`  | No       | —       | —                                                                                                                                                                                    |
| `result.data.last_contacted_by`           | `object`  | No       | —       | User that last contacted this Account                                                                                                                                                |
| `result.data.last_contacted_by.id`        | `integer` | No       | —       | —                                                                                                                                                                                    |
| `result.data.last_contacted_by._href`     | `string`  | No       | —       | —                                                                                                                                                                                    |
| `result.data.last_contacted_person`       | `object`  | No       | —       | Person who was last contacted at this Account                                                                                                                                        |
| `result.data.last_contacted_person.id`    | `integer` | No       | —       | —                                                                                                                                                                                    |
| `result.data.last_contacted_person._href` | `string`  | No       | —       | —                                                                                                                                                                                    |

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

<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": "integer",
            "description": "ID of Account"
          },
          "created_at": {
            "type": "string",
            "description": "Datetime of when the Account was created",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "description": "Datetime of when the Account was last updated",
            "format": "date-time"
          },
          "archived_at": {
            "type": "string",
            "description": "Datetime of when the Account was archived, if archived",
            "format": "date-time"
          },
          "name": {
            "type": "string",
            "description": "Account Full Name"
          },
          "domain": {
            "type": "string",
            "description": "Website domain, not a fully qualified URI"
          },
          "conversational_name": {
            "type": "string",
            "description": "Conversational name of the Account"
          },
          "description": {
            "type": "string",
            "description": "Description"
          },
          "phone": {
            "type": "string",
            "description": "Phone number without formatting"
          },
          "website": {
            "type": "string",
            "description": "Website"
          },
          "linkedin_url": {
            "type": "string",
            "description": "Full LinkedIn url"
          },
          "twitter_handle": {
            "type": "string",
            "description": "Twitter handle, with @"
          },
          "street": {
            "type": "string",
            "description": "Street name and number"
          },
          "city": {
            "type": "string",
            "description": "City"
          },
          "state": {
            "type": "string",
            "description": "State"
          },
          "postal_code": {
            "type": "string",
            "description": "Postal code"
          },
          "country": {
            "type": "string",
            "description": "Country"
          },
          "locale": {
            "type": "string",
            "description": "Time locale"
          },
          "industry": {
            "type": "string",
            "description": "Industry"
          },
          "company_type": {
            "type": "string",
            "description": "Type of the Account's company"
          },
          "founded": {
            "type": "string",
            "description": "Date or year of founding"
          },
          "revenue_range": {
            "type": "string",
            "description": "Estimated revenue range"
          },
          "size": {
            "type": "string",
            "description": "Estimated number of people in employment"
          },
          "crm_id": {
            "type": "string",
            "description": "CRM ID"
          },
          "crm_url": {
            "type": "string",
            "description": "CRM url"
          },
          "crm_object_type": {
            "type": "string",
            "description": "CRM object type"
          },
          "owner_crm_id": {
            "type": "string",
            "description": "Mapped owner field from the CRM"
          },
          "prospector_engagement_score": {
            "type": "string",
            "description": "Prospector engagement score for this account, normalized on a scale of 0.0 to 5.0. For the customers that do not opt-in to account engagement scoring, it will always be null"
          },
          "prospector_engagement_level": {
            "type": "string",
            "description": "Prospector engagement level for this account, derived from prospector_engagement_score. For the customers that do not opt-in to account engagement scoring, it will always be null"
          },
          "last_contacted_at": {
            "type": "string",
            "description": "Datetime this Account was last contacted",
            "format": "date-time"
          },
          "last_contacted_type": {
            "type": "string",
            "description": "The type of the last touch to this Account. Can be call, email, other"
          },
          "do_not_contact": {
            "type": "boolean",
            "description": "Whether this company has opted out of communications. Do not contact someone at this company when this is set to true"
          },
          "custom_fields": {
            "type": "object",
            "description": "Custom fields are defined by the user's team. Only fields with values are presented in the API."
          },
          "user_relationships": {
            "type": "object",
            "description": "Filters by accounts matching all given user relationship fields, _is_null or _unmapped can be passed to filter accounts with null or unmapped user relationship values"
          },
          "tags": {
            "type": "array",
            "description": "All tags applied to this Account",
            "items": {
              "type": "string"
            }
          },
          "counts": {
            "type": "object",
            "properties": {
              "people": {
                "type": "integer",
                "description": "Number of people in SalesLoft associated with this Account"
              }
            },
            "additionalProperties": false
          },
          "owner": {
            "type": "object",
            "description": "User that is marked as the owner of this Account",
            "properties": {
              "id": {
                "type": "integer"
              },
              "_href": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "creator": {
            "type": "object",
            "description": "User that created this Account",
            "properties": {
              "id": {
                "type": "integer"
              },
              "_href": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "last_contacted_by": {
            "type": "object",
            "description": "User that last contacted this Account",
            "properties": {
              "id": {
                "type": "integer"
              },
              "_href": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "last_contacted_person": {
            "type": "object",
            "description": "Person who was last contacted at this Account",
            "properties": {
              "id": {
                "type": "integer"
              },
              "_href": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "company_stage": {
            "type": "object",
            "description": "Company Stage that this Account has set. This is referred to as Account Stage in other parts of the API. When sorting by account_stage, the company stage's order is used",
            "properties": {
              "id": {
                "type": "integer"
              },
              "_href": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "account_tier": {
            "type": "object",
            "description": "Account Tier that this Account has set",
            "properties": {
              "id": {
                "type": "integer"
              },
              "_href": {
                "type": "string"
              }
            },
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

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