> ## 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: Cadence Stats Show

> Fetch stats for a cadence. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Fetch stats for a cadence.

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

## Run this action

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

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

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

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

### CLI

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

## Example response

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

```json theme={null}
{
  "data": {
    "cadence_people_count": 123,
    "people_acted_on_count": 123,
    "in_progress_people_count": 123
  }
}
```

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

## Input reference

Fetches stats for a cadence, by ID only.

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

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetches stats for a cadence, by ID only.",
    "properties": {
      "id": {
        "type": "string",
        "description": "Cadence 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.cadence_people_count`        | `integer` | No       | —       | The number of people that have ever been added to the cadence                             |
| `result.data.people_acted_on_count`       | `integer` | No       | —       | The number of people that have been skipped, scheduled, or advanced in a cadence          |
| `result.data.in_progress_people_count`    | `integer` | No       | —       | The number of people that are currently in the cadence                                    |
| `result.data.sent_emails_count`           | `integer` | No       | —       | The number of emails sent in the cadence                                                  |
| `result.data.bounced_count`               | `integer` | No       | —       | The number of emails that bounced in the cadence                                          |
| `result.data.delivered_count`             | `integer` | No       | —       | The number of emails that were successfully delivered in the cadence                      |
| `result.data.calls_count`                 | `integer` | No       | —       | The number of calls made in the cadence                                                   |
| `result.data.replied_count`               | `integer` | No       | —       | The number of emails that received a reply in the cadence                                 |
| `result.data.clicked_count`               | `integer` | No       | —       | The number of links clicked in the cadence                                                |
| `result.data.viewed_count`                | `integer` | No       | —       | The number of emails that were viewed in the cadence                                      |
| `result.data.step_group_count`            | `integer` | No       | —       | The number of step groups in the cadence                                                  |
| `result.data.due_action_count`            | `integer` | No       | —       | The number of due actions in the cadence                                                  |
| `result.data.replied_rate`                | `string`  | No       | —       | The percentage of emails that received a reply in the cadence.                            |
| `result.data.clicked_rate`                | `string`  | No       | —       | The percentage of delivered emails where a link was clicked.                              |
| `result.data.viewed_rate`                 | `string`  | No       | —       | The percentage of emails that were viewed in the cadence.                                 |
| `result.data.meetings_booked_count`       | `integer` | No       | —       | The number of opportunities created and attributed to the cadence                         |
| `result.data.opportunities_created_count` | `integer` | No       | —       | The number of meetings booked and attributed to the cadence                               |
| `result.data.opportunities_created_rate`  | `string`  | No       | —       | The percentage of people who turned into an opportunity after being added to the cadence. |
| `result.data.meetings_booked_rate`        | `string`  | No       | —       | The percentage of people who booked a meeting after being added to the cadence.           |
| `result.data.outcome_attribution_enabled` | `boolean` | No       | —       | Whether or not outcome attribution is enabled for the cadence                             |
| `result.data.cadence_duration`            | `integer` | No       | —       | The duration of the cadence in days                                                       |
| `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": {
          "cadence_people_count": {
            "type": "integer",
            "description": "The number of people that have ever been added to the cadence"
          },
          "people_acted_on_count": {
            "type": "integer",
            "description": "The number of people that have been skipped, scheduled, or advanced in a cadence"
          },
          "in_progress_people_count": {
            "type": "integer",
            "description": "The number of people that are currently in the cadence"
          },
          "sent_emails_count": {
            "type": "integer",
            "description": "The number of emails sent in the cadence"
          },
          "bounced_count": {
            "type": "integer",
            "description": "The number of emails that bounced in the cadence"
          },
          "delivered_count": {
            "type": "integer",
            "description": "The number of emails that were successfully delivered in the cadence"
          },
          "calls_count": {
            "type": "integer",
            "description": "The number of calls made in the cadence"
          },
          "replied_count": {
            "type": "integer",
            "description": "The number of emails that received a reply in the cadence"
          },
          "clicked_count": {
            "type": "integer",
            "description": "The number of links clicked in the cadence"
          },
          "viewed_count": {
            "type": "integer",
            "description": "The number of emails that were viewed in the cadence"
          },
          "step_group_count": {
            "type": "integer",
            "description": "The number of step groups in the cadence"
          },
          "due_action_count": {
            "type": "integer",
            "description": "The number of due actions in the cadence"
          },
          "replied_rate": {
            "type": "string",
            "description": "The percentage of emails that received a reply in the cadence."
          },
          "clicked_rate": {
            "type": "string",
            "description": "The percentage of delivered emails where a link was clicked."
          },
          "viewed_rate": {
            "type": "string",
            "description": "The percentage of emails that were viewed in the cadence."
          },
          "meetings_booked_count": {
            "type": "integer",
            "description": "The number of opportunities created and attributed to the cadence"
          },
          "opportunities_created_count": {
            "type": "integer",
            "description": "The number of meetings booked and attributed to the cadence"
          },
          "opportunities_created_rate": {
            "type": "string",
            "description": "The percentage of people who turned into an opportunity after being added to the cadence."
          },
          "meetings_booked_rate": {
            "type": "string",
            "description": "The percentage of people who booked a meeting after being added to the cadence."
          },
          "outcome_attribution_enabled": {
            "type": "boolean",
            "description": "Whether or not outcome attribution is enabled for the cadence"
          },
          "cadence_duration": {
            "type": "integer",
            "description": "The duration of the cadence in days"
          }
        },
        "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)
