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

> List accounts. Salesloft Accounts Index reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

List accounts.

<Info>
  Tool ID: `salesloft_accounts_index`
</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_index',
  {
    "ids": [
      123
    ],
    "crm_id": [
      "crm_123"
    ],
    "tag": [
      "example"
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute salesloft_accounts_index --input '{
  "ids": [
    123
  ],
  "crm_id": [
    "crm_123"
  ],
  "tag": [
    "example"
  ]
}' --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_index --json` for the latest machine-readable contract.

## Input reference

Fetches multiple account records. The records can be filtered, paged, and sorted according to the respective parameters.

| Name                                   | Type      | Required | Default | Details                                                                                                                                                                                                                                                                                                                                                   |
| -------------------------------------- | --------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.ids`                          | `array`   | No       | —       | IDs of accounts to fetch. If a record can't be found, that record won't be returned and your request will be successful                                                                                                                                                                                                                                   |
| `payload.crm_id`                       | `array`   | No       | —       | Filters accounts by crm\_id. Multiple crm ids can be applied                                                                                                                                                                                                                                                                                              |
| `payload.tag`                          | `array`   | No       | —       | Filters accounts by the tags applied to the account. Multiple tags can be applied                                                                                                                                                                                                                                                                         |
| `payload.tag_id`                       | `array`   | No       | —       | Filters accounts by tag\_id. Multiple values can be applied. Special values of "\_is\_not\_null" or "\_is\_null" can be passed to filter accounts with or without tags. A "\_not\_in" modifier can be used to exclude specific tags, for example: "tag\_id\[\_not\_in]\[]=123"                                                                            |
| `payload.created_at`                   | `object`  | No       | —       | Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.                                                                                                                                                                                                                    |
| `payload.updated_at`                   | `object`  | No       | —       | Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.                                                                                                                                                                                                                    |
| `payload.domain`                       | `string`  | No       | —       | Domain of the accounts to fetch. Domains are unique and lowercase                                                                                                                                                                                                                                                                                         |
| `payload.website`                      | `array`   | No       | —       | Filters accounts by website. Multiple websites can be applied. An additional value of "\_is\_null" can be passed to filter accounts that do not have a website.                                                                                                                                                                                           |
| `payload.archived`                     | `boolean` | No       | —       | Filters accounts by archived\_at status. Returns only accounts where archived\_at is not null if this field is true. Returns only accounts where archived\_at is null if this field is false. Do not pass this parameter to return both archived and unarchived accounts. This filter is not applied if any value other than "true" or "false" is passed. |
| `payload.name`                         | `array`   | No       | —       | Names of accounts to fetch. Name matches are exact and case insensitive. Multiple names can be fetched. Partial match is supported and applied when the "\_starts\_with" value is passed: v2/accounts?name\[\_starts\_with]=value                                                                                                                         |
| `payload.account_type`                 | `array`   | No       | —       | Filters accounts by account type using exact or partial matching.                                                                                                                                                                                                                                                                                         |
| `payload.account_stage_id`             | `array`   | No       | —       | Filters accounts by account\_stage\_id. Multiple account\_stage\_ids can be applied. An additional value of "\_is\_null" can be passed to filter accounts that do not have account\_stage\_id                                                                                                                                                             |
| `payload.account_tier_id`              | `array`   | No       | —       | Filters accounts by account\_tier\_id. Multiple account tier ids can be applied                                                                                                                                                                                                                                                                           |
| `payload.owner_id`                     | `array`   | No       | —       | Filters accounts by owner\_id. Multiple owner\_ids can be applied. An additional value of "\_is\_null" can be passed to filter accounts that are unowned                                                                                                                                                                                                  |
| `payload.owner_is_active`              | `boolean` | No       | —       | Filters accounts by whether the owner is active or not.                                                                                                                                                                                                                                                                                                   |
| `payload.last_contacted`               | `object`  | No       | —       | Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.                                                                                                                                                                                                                    |
| `payload.custom_fields`                | `object`  | No       | —       | Filters by accounts matching all given custom fields. The custom field names are case-sensitive, but the provided values are case-insensitive. Example: v2/accounts?custom\_fields\[custom\_field\_name]=custom\_field\_value                                                                                                                             |
| `payload.industry`                     | `array`   | No       | —       | Filters accounts by industry by exact match. Supports partial matching                                                                                                                                                                                                                                                                                    |
| `payload.country`                      | `array`   | No       | —       | Filters accounts by country by exact match. Supports partial matching                                                                                                                                                                                                                                                                                     |
| `payload.state`                        | `array`   | No       | —       | Filters accounts by state by exact match. Supports partial matching                                                                                                                                                                                                                                                                                       |
| `payload.city`                         | `array`   | No       | —       | Filters accounts by city by exact match. Supports partial matching                                                                                                                                                                                                                                                                                        |
| `payload.owner_crm_id`                 | `array`   | No       | —       | Filters accounts by owner\_crm\_id. Multiple owner\_crm\_ids can be applied. An additional value of "\_is\_null" can be passed to filter accounts that are unowned. A "\_not\_in" modifier can be used to exclude specific owner\_crm\_ids. Example: v2/accounts?owner\_crm\_id\[\_not\_in]=id                                                            |
| `payload.prospector_engagement_level`  | `array`   | No       | —       | Filters accounts by different levels of account engagement. Multiple levels of account engagement can be applied                                                                                                                                                                                                                                          |
| `payload.has_open_opportunity`         | `boolean` | No       | —       | Filters accounts by opportunity status. This filter is not applied if any value other than "true" or "false" is passed. When this field is true, it returns only accounts that have at least one open opportunity. When this field is false, it returns only accounts that do not have any open opportunities.                                            |
| `payload.locales`                      | `array`   | No       | —       | Filters accounts by locale. Multiple locales are allowed                                                                                                                                                                                                                                                                                                  |
| `payload.user_relationships`           | `object`  | 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. Example: v2/accounts?user\_relationships\[name]=value                                                                                                                          |
| `payload.your_related_accounts_active` | `boolean` | No       | —       | Filter accounts by user on Account teams or User Relationship                                                                                                                                                                                                                                                                                             |
| `payload.sort_by`                      | `string`  | No       | —       | Key to sort on, must be one of: created\_at, updated\_at, last\_contacted\_at, account\_stage, account\_stage\_name, account\_tier, account\_tier\_name, name, counts\_people, prospector\_engagement\_score. Defaults to updated\_at                                                                                                                     |
| `payload.sort_direction`               | `string`  | No       | —       | Direction to sort in, must be one of: ASC, DESC. Defaults to DESC                                                                                                                                                                                                                                                                                         |
| `payload.per_page`                     | `integer` | No       | —       | How many records to show per page in the range \[1, 100]. Defaults to 25                                                                                                                                                                                                                                                                                  |
| `payload.page`                         | `integer` | No       | —       | The current page to fetch results from. Defaults to 1                                                                                                                                                                                                                                                                                                     |
| `payload.include_paging_counts`        | `boolean` | No       | —       | Whether to include total\_pages and total\_count in the metadata. Defaults to false                                                                                                                                                                                                                                                                       |
| `payload.limit_paging_counts`          | `boolean` | No       | —       | Specifies whether the max limit of 10k records should be applied to pagination counts. Affects the total\_count and total\_pages data                                                                                                                                                                                                                     |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetches multiple account records. The records can be filtered, paged, and sorted according to the respective parameters.",
    "properties": {
      "ids": {
        "type": "array",
        "description": "IDs of accounts to fetch. If a record can't be found, that record won't be returned and your request will be successful",
        "items": {
          "type": "integer"
        }
      },
      "crm_id": {
        "type": "array",
        "description": "Filters accounts by crm_id. Multiple crm ids can be applied",
        "items": {
          "type": "string"
        }
      },
      "tag": {
        "type": "array",
        "description": "Filters accounts by the tags applied to the account. Multiple tags can be applied",
        "items": {
          "type": "string"
        }
      },
      "tag_id": {
        "type": "array",
        "description": "Filters accounts by tag_id. Multiple values can be applied. Special values of \"_is_not_null\" or \"_is_null\" can be passed to filter accounts with or without tags. A \"_not_in\" modifier can be used to exclude specific tags, for example: \"tag_id[_not_in][]=123\"",
        "items": {
          "type": "integer"
        }
      },
      "created_at": {
        "type": "object",
        "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.",
        "properties": {
          "gt": {
            "type": "string",
            "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "gte": {
            "type": "string",
            "description": "Returns all matching records that are greater than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lt": {
            "type": "string",
            "description": "Returns all matching records that are less than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lte": {
            "type": "string",
            "description": "Returns all matching records that are less than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          }
        },
        "required": [],
        "additionalProperties": false
      },
      "updated_at": {
        "type": "object",
        "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.",
        "properties": {
          "gt": {
            "type": "string",
            "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "gte": {
            "type": "string",
            "description": "Returns all matching records that are greater than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lt": {
            "type": "string",
            "description": "Returns all matching records that are less than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lte": {
            "type": "string",
            "description": "Returns all matching records that are less than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          }
        },
        "required": [],
        "additionalProperties": false
      },
      "domain": {
        "type": "string",
        "description": "Domain of the accounts to fetch. Domains are unique and lowercase"
      },
      "website": {
        "type": "array",
        "description": "Filters accounts by website. Multiple websites can be applied. An additional value of \"_is_null\" can be passed to filter accounts that do not have a website.",
        "items": {
          "type": "string"
        }
      },
      "archived": {
        "type": "boolean",
        "description": "Filters accounts by archived_at status. Returns only accounts where archived_at is not null if this field is true. Returns only accounts where archived_at is null if this field is false. Do not pass this parameter to return both archived and unarchived accounts. This filter is not applied if any value other than \"true\" or \"false\" is passed."
      },
      "name": {
        "type": "array",
        "description": "Names of accounts to fetch. Name matches are exact and case insensitive. Multiple names can be fetched. Partial match is supported and applied when the \"_starts_with\" value is passed: v2/accounts?name[_starts_with]=value",
        "items": {
          "type": "string"
        }
      },
      "account_type": {
        "type": "array",
        "description": "Filters accounts by account type using exact or partial matching.",
        "items": {
          "type": "string"
        }
      },
      "account_stage_id": {
        "type": "array",
        "description": "Filters accounts by account_stage_id. Multiple account_stage_ids can be applied. An additional value of \"_is_null\" can be passed to filter accounts that do not have account_stage_id",
        "items": {
          "type": "integer"
        }
      },
      "account_tier_id": {
        "type": "array",
        "description": "Filters accounts by account_tier_id. Multiple account tier ids can be applied",
        "items": {
          "type": "integer"
        }
      },
      "owner_id": {
        "type": "array",
        "description": "Filters accounts by owner_id. Multiple owner_ids can be applied. An additional value of \"_is_null\" can be passed to filter accounts that are unowned",
        "items": {
          "type": "string"
        }
      },
      "owner_is_active": {
        "type": "boolean",
        "description": "Filters accounts by whether the owner is active or not."
      },
      "last_contacted": {
        "type": "object",
        "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.",
        "properties": {
          "gt": {
            "type": "string",
            "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "gte": {
            "type": "string",
            "description": "Returns all matching records that are greater than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lt": {
            "type": "string",
            "description": "Returns all matching records that are less than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lte": {
            "type": "string",
            "description": "Returns all matching records that are less than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          }
        },
        "required": [],
        "additionalProperties": false
      },
      "custom_fields": {
        "type": "object",
        "description": "Filters by accounts matching all given custom fields. The custom field names are case-sensitive, but the provided values are case-insensitive. Example: v2/accounts?custom_fields[custom_field_name]=custom_field_value"
      },
      "industry": {
        "type": "array",
        "description": "Filters accounts by industry by exact match. Supports partial matching",
        "items": {
          "type": "string"
        }
      },
      "country": {
        "type": "array",
        "description": "Filters accounts by country by exact match. Supports partial matching",
        "items": {
          "type": "string"
        }
      },
      "state": {
        "type": "array",
        "description": "Filters accounts by state by exact match. Supports partial matching",
        "items": {
          "type": "string"
        }
      },
      "city": {
        "type": "array",
        "description": "Filters accounts by city by exact match. Supports partial matching",
        "items": {
          "type": "string"
        }
      },
      "owner_crm_id": {
        "type": "array",
        "description": "Filters accounts by owner_crm_id. Multiple owner_crm_ids can be applied. An additional value of \"_is_null\" can be passed to filter accounts that are unowned. A \"_not_in\" modifier can be used to exclude specific owner_crm_ids. Example: v2/accounts?owner_crm_id[_not_in]=id",
        "items": {
          "type": "string"
        }
      },
      "prospector_engagement_level": {
        "type": "array",
        "description": "Filters accounts by different levels of account engagement. Multiple levels of account engagement can be applied",
        "items": {
          "type": "string"
        }
      },
      "has_open_opportunity": {
        "type": "boolean",
        "description": "Filters accounts by opportunity status. This filter is not applied if any value other than \"true\" or \"false\" is passed. When this field is true, it returns only accounts that have at least one open opportunity. When this field is false, it returns only accounts that do not have any open opportunities."
      },
      "locales": {
        "type": "array",
        "description": "Filters accounts by locale. Multiple locales are allowed",
        "items": {
          "type": "string"
        }
      },
      "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. Example: v2/accounts?user_relationships[name]=value"
      },
      "your_related_accounts_active": {
        "type": "boolean",
        "description": "Filter accounts by user on Account teams or User Relationship"
      },
      "sort_by": {
        "type": "string",
        "description": "Key to sort on, must be one of: created_at, updated_at, last_contacted_at, account_stage, account_stage_name, account_tier, account_tier_name, name, counts_people, prospector_engagement_score. Defaults to updated_at"
      },
      "sort_direction": {
        "type": "string",
        "description": "Direction to sort in, must be one of: ASC, DESC. Defaults to DESC"
      },
      "per_page": {
        "type": "integer",
        "description": "How many records to show per page in the range [1, 100]. Defaults to 25"
      },
      "page": {
        "type": "integer",
        "description": "The current page to fetch results from. Defaults to 1"
      },
      "include_paging_counts": {
        "type": "boolean",
        "description": "Whether to include total_pages and total_count in the metadata. Defaults to false"
      },
      "limit_paging_counts": {
        "type": "boolean",
        "description": "Specifies whether the max limit of 10k records should be applied to pagination counts. Affects the total_count and total_pages data"
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                        | Type      | Required | Default | Details                                                                                                                                                                              |
| ------------------------------------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `result.data`                               | `array`   | 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": "array",
        "description": "Provider response payload.",
        "items": {
          "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)
