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

# Salesforge Get Workspaces Workspaceid Sequences Sequenceid

> Get sequence analytics. Salesforge Salesforge Get Workspaces Workspaceid Sequences Sequenceid Analytics docs include request fields, response shape, pricing

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=salesforge_get_workspaces_workspaceid_sequences_sequenceid_analytics:{"workspaceID":"{{workspaceID}}","sequenceID":"{{sequenceID}}","from_date":"{{from_date}}","to_date":"{{to_date}}"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                  | Type     | Required | Default | Description  |
| --------------------- | -------- | -------- | ------- | ------------ |
| `payload.workspaceID` | `string` | Yes      |         | Workspace ID |
| `payload.sequenceID`  | `string` | Yes      |         | Sequence ID  |
| `payload.from_date`   | `string` | Yes      |         | From date    |
| `payload.to_date`     | `string` | Yes      |         | To date      |
| `payload.timezone`    | `string` | No       | `"UTC"` | Timezone     |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Get analytics for a sequence.",
    "properties": {
      "workspaceID": {
        "type": "string",
        "description": "Workspace ID"
      },
      "sequenceID": {
        "type": "string",
        "description": "Sequence ID"
      },
      "from_date": {
        "type": "string",
        "description": "From date",
        "format": "date"
      },
      "to_date": {
        "type": "string",
        "description": "To date",
        "format": "date"
      },
      "timezone": {
        "type": "string",
        "description": "Timezone",
        "default": "UTC"
      }
    },
    "required": [
      "workspaceID",
      "sequenceID",
      "from_date",
      "to_date"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `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": {
          "days": {
            "type": "object",
            "description": "key is date in format \"2006-01-02\"",
            "additionalProperties": {
              "type": "object",
              "properties": {
                "replied": {
                  "type": "integer"
                },
                "sent": {
                  "type": "integer"
                },
                "totalClicked": {
                  "type": "integer"
                },
                "totalOpened": {
                  "type": "integer"
                },
                "uniqueClicked": {
                  "type": "integer"
                },
                "uniqueOpened": {
                  "type": "integer"
                }
              },
              "additionalProperties": false
            }
          },
          "stats": {
            "type": "object",
            "properties": {
              "clicked": {
                "type": "integer"
              },
              "clickedPercent": {
                "type": "number"
              },
              "contacted": {
                "type": "integer"
              },
              "opened": {
                "type": "integer"
              },
              "openedPercent": {
                "type": "number"
              },
              "replied": {
                "type": "integer"
              },
              "repliedPercent": {
                "type": "number"
              },
              "repliedPositive": {
                "type": "integer"
              },
              "repliedPositivePercent": {
                "type": "number"
              }
            },
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute salesforge_get_workspaces_workspaceid_sequences_sequenceid_analytics --payload '{
  "workspaceID": "string",
  "sequenceID": "string",
  "from_date": "string",
  "to_date": "string"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
