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

> Fetch a conversation. Salesloft Conversations Find One reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Fetch a conversation.

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

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

### CLI

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

## Input reference

Fetches a single conversation

| 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 a single conversation",
    "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.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.updated_at`                    | `string`                                                                                                                                                                 | No       | —       | Datetime of the last Conversation update. 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.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.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.meta`                               | `object`                                                                                                                                                                 | No       | —       | Additional response metadata (status, paging).                                                                                                                                                                |

<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": "string",
            "description": "UUID of the Conversation",
            "format": "uuid"
          },
          "duration": {
            "type": "number",
            "description": "Duration of the Conversation in milliseconds"
          },
          "is_api": {
            "type": "boolean",
            "description": "Determines if the channel of through this Conversation was processed"
          },
          "platform": {
            "type": "string",
            "description": "Source of the Conversation",
            "enum": [
              "bluejeans",
              "gotomeeting",
              "joinme",
              "manual_upload",
              "ms_teams",
              "salesloft",
              "uberconference",
              "webex",
              "zoom",
              "google_meet",
              "external_audio"
            ]
          },
          "media_type": {
            "type": "string",
            "description": "Determines if conversation is video or audio",
            "enum": [
              "audio",
              "video"
            ]
          },
          "organization_id": {
            "type": "string",
            "description": "ID of the Organization",
            "format": "uuid"
          },
          "title": {
            "type": "string",
            "description": "Title of the Conversation"
          },
          "owner_id": {
            "type": "string",
            "description": "ID of the owner",
            "format": "uuid"
          },
          "user_guid": {
            "type": "string",
            "description": "ID of the user",
            "format": "uuid"
          },
          "started_recording_at": {
            "type": "number",
            "description": "Starts of the recording in milliseconds"
          },
          "event_end_date": {
            "type": "string",
            "description": "Datetime of when the Conversation ended. The date time ISO-8601 format",
            "format": "date-time"
          },
          "event_start_date": {
            "type": "string",
            "description": "Datetime of when the Conversation started. The date time ISO-8601 format",
            "format": "date-time"
          },
          "language_code": {
            "type": "string",
            "description": "The text's BCP-47 language code, such as \"en-US\" or \"sr-Latn\". Reference: http://www.unicode.org/reports/tr35/#Unicode_locale_identifier."
          },
          "created_at": {
            "type": "string",
            "description": "Datetime of Conversation creation. The date time ISO-8601 format",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "description": "Datetime of the last Conversation update. The date time ISO-8601 format",
            "format": "date-time"
          },
          "call_id": {
            "type": "string",
            "description": "Id of the call data record",
            "format": "string"
          },
          "account": {
            "type": "object",
            "description": "Reference to the Account",
            "properties": {
              "id": {
                "type": "string"
              },
              "_href": {
                "type": "string",
                "format": "uri"
              }
            },
            "additionalProperties": false
          },
          "person": {
            "type": "object",
            "description": "Reference to the People",
            "properties": {
              "id": {
                "type": "string"
              },
              "_href": {
                "type": "string",
                "format": "uri"
              }
            },
            "additionalProperties": false
          },
          "recording": {
            "type": "object",
            "description": "Reference to the Recording artifact",
            "properties": {
              "id": {
                "type": "string"
              },
              "_href": {
                "type": "string",
                "format": "uri"
              }
            },
            "additionalProperties": false
          },
          "transcription": {
            "type": "object",
            "description": "Reference to the transcription",
            "properties": {
              "id": {
                "type": "string"
              },
              "_href": {
                "type": "string",
                "format": "uri"
              }
            },
            "additionalProperties": false
          },
          "transcription_sentences": {
            "type": "object",
            "description": "Reference to the transcription sentences",
            "properties": {
              "id": {
                "type": "string"
              },
              "_href": {
                "type": "string",
                "format": "uri"
              }
            },
            "additionalProperties": false
          },
          "transcription_artifact": {
            "type": "object",
            "description": "Reference to the transcription artifact",
            "properties": {
              "id": {
                "type": "string"
              },
              "_href": {
                "type": "string",
                "format": "uri"
              }
            },
            "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)
