> ## 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: Conversations Find One Extensive

> Fetch an extensive conversation. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Fetch an extensive conversation.

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

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

### CLI

```bash theme={null}
deepline tools execute salesloft_conversations_find_one_extensive --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": "123e4567-e89b-42d3-a456-426614174000",
    "duration": 123,
    "is_api": true
  }
}
```

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

## Input reference

Fetches an extended version of a Conversation, it will include AI generated features if they are available, such as, Summary, Actions Items and Key Moments

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

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetches an extended version of a Conversation, it will include AI generated features if they are available, such as, Summary, Actions Items and Key Moments",
    "properties": {
      "id": {
        "type": "string",
        "description": "Conversation 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`                                                                | `string`                                                                                                                                                                 | No       | —       | UUID of the Conversation Format: `uuid`.                                                                                                                                                                      |
| `result.data.duration`                                                          | `number`                                                                                                                                                                 | No       | —       | Duration of the Conversation in milliseconds                                                                                                                                                                  |
| `result.data.is_api`                                                            | `boolean`                                                                                                                                                                | No       | —       | Determines if the channel of through this Conversation was processed                                                                                                                                          |
| `result.data.platform`                                                          | `"bluejeans" \| "gotomeeting" \| "joinme" \| "manual_upload" \| "ms_teams" \| "salesloft" \| "uberconference" \| "webex" \| "zoom" \| "google_meet" \| "external_audio"` | No       | —       | Source of the Conversation Allowed: `bluejeans`, `gotomeeting`, `joinme`, `manual_upload`, `ms_teams`, `salesloft`, `uberconference`, `webex`, `zoom`, `google_meet`, `external_audio`.                       |
| `result.data.media_type`                                                        | `"audio" \| "video"`                                                                                                                                                     | No       | —       | Determines if conversation is video or audio Allowed: `audio`, `video`.                                                                                                                                       |
| `result.data.organization_id`                                                   | `string`                                                                                                                                                                 | No       | —       | ID of the Organization Format: `uuid`.                                                                                                                                                                        |
| `result.data.title`                                                             | `string`                                                                                                                                                                 | No       | —       | Title of the Conversation                                                                                                                                                                                     |
| `result.data.owner_id`                                                          | `string`                                                                                                                                                                 | No       | —       | ID of the owner Format: `uuid`.                                                                                                                                                                               |
| `result.data.owner_email`                                                       | `string`                                                                                                                                                                 | No       | —       | Email of the owner user                                                                                                                                                                                       |
| `result.data.user_guid`                                                         | `string`                                                                                                                                                                 | No       | —       | ID of the user Format: `uuid`.                                                                                                                                                                                |
| `result.data.started_recording_at`                                              | `number`                                                                                                                                                                 | No       | —       | Starts of the recording in milliseconds                                                                                                                                                                       |
| `result.data.event_end_date`                                                    | `string`                                                                                                                                                                 | No       | —       | Datetime of when the Conversation ended. The date time ISO-8601 format Format: `date-time`.                                                                                                                   |
| `result.data.event_start_date`                                                  | `string`                                                                                                                                                                 | No       | —       | Datetime of when the Conversation started. The date time ISO-8601 format Format: `date-time`.                                                                                                                 |
| `result.data.language_code`                                                     | `string`                                                                                                                                                                 | No       | —       | The text's BCP-47 language code, such as "en-US" or "sr-Latn". Reference: [http://www.unicode.org/reports/tr35/#Unicode\_locale\_identifier](http://www.unicode.org/reports/tr35/#Unicode_locale_identifier). |
| `result.data.created_at`                                                        | `string`                                                                                                                                                                 | No       | —       | Datetime of Conversation creation. The date time ISO-8601 format Format: `date-time`.                                                                                                                         |
| `result.data.call_id`                                                           | `string`                                                                                                                                                                 | No       | —       | Id of the call data record Format: `string`.                                                                                                                                                                  |
| `result.data.updated_at`                                                        | `string`                                                                                                                                                                 | No       | —       | Datetime of the last Conversation update. The date time ISO-8601 format Format: `date-time`.                                                                                                                  |
| `result.data.account`                                                           | `object`                                                                                                                                                                 | No       | —       | Reference to the Account                                                                                                                                                                                      |
| `result.data.account.id`                                                        | `string`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.account._href`                                                     | `string`                                                                                                                                                                 | No       | —       | Format: `uri`.                                                                                                                                                                                                |
| `result.data.person`                                                            | `object`                                                                                                                                                                 | No       | —       | Reference to the People                                                                                                                                                                                       |
| `result.data.person.id`                                                         | `string`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.person._href`                                                      | `string`                                                                                                                                                                 | No       | —       | Format: `uri`.                                                                                                                                                                                                |
| `result.data.opportunity`                                                       | `object`                                                                                                                                                                 | No       | —       | Reference to the SL Opportunity                                                                                                                                                                               |
| `result.data.opportunity.id`                                                    | `string`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.opportunity._href`                                                 | `string`                                                                                                                                                                 | No       | —       | Format: `uri`.                                                                                                                                                                                                |
| `result.data.recording`                                                         | `object`                                                                                                                                                                 | No       | —       | Reference to the Recording artifact                                                                                                                                                                           |
| `result.data.recording.id`                                                      | `string`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.recording._href`                                                   | `string`                                                                                                                                                                 | No       | —       | Format: `uri`.                                                                                                                                                                                                |
| `result.data.transcription`                                                     | `object`                                                                                                                                                                 | No       | —       | Reference to the Transcription                                                                                                                                                                                |
| `result.data.transcription.id`                                                  | `string`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.transcription._href`                                               | `string`                                                                                                                                                                 | No       | —       | Format: `uri`.                                                                                                                                                                                                |
| `result.data.transcription_sentences`                                           | `object`                                                                                                                                                                 | No       | —       | Reference to the transcription sentences                                                                                                                                                                      |
| `result.data.transcription_sentences.id`                                        | `string`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.transcription_sentences._href`                                     | `string`                                                                                                                                                                 | No       | —       | Format: `uri`.                                                                                                                                                                                                |
| `result.data.transcription_artifact`                                            | `object`                                                                                                                                                                 | No       | —       | Reference to the transcription artifact                                                                                                                                                                       |
| `result.data.transcription_artifact.id`                                         | `string`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.transcription_artifact._href`                                      | `string`                                                                                                                                                                 | No       | —       | Format: `uri`.                                                                                                                                                                                                |
| `result.data.key_moments`                                                       | `object`                                                                                                                                                                 | No       | —       | —                                                                                                                                                                                                             |
| `result.data.key_moments.status`                                                | `string`                                                                                                                                                                 | No       | —       | Status of overall Key Moments                                                                                                                                                                                 |
| `result.data.key_moments.items`                                                 | `array`                                                                                                                                                                  | No       | —       | All Key Moments items                                                                                                                                                                                         |
| `result.data.key_moments.items[].name`                                          | `"competitors" \| "decision_makers" \| "objections" \| "next_gen"`                                                                                                       | No       | —       | Name of the Key Moment Allowed: `competitors`, `decision_makers`, `objections`, `next_gen`.                                                                                                                   |
| `result.data.key_moments.items[].categories`                                    | `array`                                                                                                                                                                  | No       | —       | Key Moments categories                                                                                                                                                                                        |
| `result.data.key_moments.items[].categories[].category`                         | `string`                                                                                                                                                                 | No       | —       | Category name of the Key Moment                                                                                                                                                                               |
| `result.data.key_moments.items[].categories[].mentions_count`                   | `number`                                                                                                                                                                 | No       | —       | Total of mentions where the Key Moment summary was based                                                                                                                                                      |
| `result.data.key_moments.items[].categories[].summary`                          | `string`                                                                                                                                                                 | No       | —       | Summary of the Key Moment                                                                                                                                                                                     |
| `result.data.key_moments.items[].categories[].mentions`                         | `array`                                                                                                                                                                  | No       | —       | Mentions from the Key Moment                                                                                                                                                                                  |
| `result.data.key_moments.items[].categories[].mentions[].recording_attendee_id` | `string`                                                                                                                                                                 | No       | —       | ID from the Attendees list                                                                                                                                                                                    |
| `result.data.key_moments.items[].categories[].mentions[].index_start`           | `number`                                                                                                                                                                 | No       | —       | Index from the transcript when start the mention                                                                                                                                                              |

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