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

# Attention Get Scorecards Summary: Inputs, Cost & CLI

> Get Scorecards Summary. Attention Attention Get Scorecards Summary docs include request fields, response shape, pricing notes, and Deepline CLI examples.

## 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=attention_get_scorecards_summary:{"fromDateTime":"{{fromDateTime}}","toDateTime":"{{toDateTime}}","scorecardsItemsUUIDs":"{{scorecardsItemsUUIDs}}","scorecardUUID":"{{scorecardUUID}}","teamUUIDs":"{{teamUUIDs}}","userUUIDs":"{{userUUIDs}}"}' --json
```

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

## Input Schema

| Name                           | Type     | Required | Default | Description                                                    |
| ------------------------------ | -------- | -------- | ------- | -------------------------------------------------------------- |
| `payload.fromDateTime`         | `string` | Yes      |         | Start date and time for filtering scorecards (ISO 8601 format) |
| `payload.toDateTime`           | `string` | Yes      |         | End date and time for filtering scorecards (ISO 8601 format)   |
| `payload.scorecardsItemsUUIDs` | `array`  | Yes      |         |                                                                |
| `payload.scorecardUUID`        | `string` | Yes      |         |                                                                |
| `payload.teamUUIDs`            | `array`  | Yes      |         |                                                                |
| `payload.userUUIDs`            | `array`  | Yes      |         |                                                                |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieves detailed usage statistics for specified users or teams within a given time period.",
    "properties": {
      "fromDateTime": {
        "type": "string",
        "description": "Start date and time for filtering scorecards (ISO 8601 format)",
        "format": "date-time"
      },
      "toDateTime": {
        "type": "string",
        "description": "End date and time for filtering scorecards (ISO 8601 format)",
        "format": "date-time"
      },
      "scorecardsItemsUUIDs": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "scorecardUUID": {
        "type": "string"
      },
      "teamUUIDs": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "userUUIDs": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    },
    "required": [
      "fromDateTime",
      "scorecardUUID",
      "scorecardsItemsUUIDs",
      "teamUUIDs",
      "toDateTime",
      "userUUIDs"
    ],
    "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": {
          "data": {
            "type": "array",
            "description": "Array of resources matching the query",
            "items": {
              "type": "object",
              "properties": {
                "overallScoreTotals": {
                  "type": "number"
                },
                "min": {
                  "type": "number"
                },
                "userName": {
                  "type": "string"
                },
                "teamName": {
                  "type": "string"
                },
                "metrics": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "overallScore": {
                        "type": "number"
                      },
                      "itemAverages": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "title": {
                              "type": "string"
                            },
                            "scorecardItemUUID": {
                              "type": "string"
                            },
                            "average": {
                              "type": "number"
                            },
                            "description": {
                              "type": "string"
                            },
                            "evidence": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "quote": {
                                    "type": "string"
                                  },
                                  "start_sec": {
                                    "type": "number"
                                  },
                                  "end_sec": {
                                    "type": "number"
                                  },
                                  "link": {
                                    "type": "string",
                                    "description": "Deep link to the conversation at the evidence timestamp"
                                  }
                                },
                                "additionalProperties": false
                              }
                            }
                          },
                          "required": [
                            "average",
                            "scorecardItemUUID",
                            "title"
                          ],
                          "additionalProperties": false
                        }
                      },
                      "date": {
                        "type": "string",
                        "format": "date-time"
                      },
                      "entityInfo": {
                        "type": "object",
                        "properties": {
                          "uuid": {
                            "type": "string"
                          },
                          "title": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "title",
                          "uuid"
                        ],
                        "additionalProperties": false
                      },
                      "conversationInfo": {
                        "type": "object",
                        "properties": {
                          "teamUUID": {
                            "type": "string"
                          },
                          "userUUID": {
                            "type": "string"
                          },
                          "startedAt": {
                            "type": "string",
                            "format": "date-time"
                          },
                          "uuid": {
                            "type": "string"
                          },
                          "title": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "startedAt",
                          "teamUUID",
                          "title",
                          "userUUID",
                          "uuid"
                        ],
                        "additionalProperties": false
                      }
                    },
                    "required": [
                      "date",
                      "entityInfo",
                      "itemAverages",
                      "overallScore"
                    ],
                    "additionalProperties": false
                  }
                },
                "max": {
                  "type": "number"
                },
                "itemAverageTotals": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "title": {
                        "type": "string"
                      },
                      "scorecardItemUUID": {
                        "type": "string"
                      },
                      "average": {
                        "type": "number"
                      },
                      "description": {
                        "type": "string"
                      },
                      "evidence": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "quote": {
                              "type": "string"
                            },
                            "start_sec": {
                              "type": "number"
                            },
                            "end_sec": {
                              "type": "number"
                            },
                            "link": {
                              "type": "string",
                              "description": "Deep link to the conversation at the evidence timestamp"
                            }
                          },
                          "additionalProperties": false
                        }
                      }
                    },
                    "required": [
                      "average",
                      "scorecardItemUUID",
                      "title"
                    ],
                    "additionalProperties": false
                  }
                },
                "metricsCount": {
                  "type": "number"
                }
              },
              "required": [
                "itemAverageTotals",
                "max",
                "metrics",
                "metricsCount",
                "min",
                "overallScoreTotals",
                "teamName",
                "userName"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "data"
        ],
        "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 attention_get_scorecards_summary --payload '{
  "fromDateTime": "string",
  "toDateTime": "string",
  "scorecardsItemsUUIDs": "array",
  "scorecardUUID": "string",
  "teamUUIDs": "array",
  "userUUIDs": "array"
}' --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`.
