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

# Gong List Multiple Users Day By Day Activity: Inputs, Cost

> Retrieve daily activity for applicable users for a date range (/v2/stats/activity/day-by-day). Includes inputs, outputs, costs, 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=gong_list_multiple_users_day_by_day_activity:{"filter":{}}' --json
```

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

## Input Schema

| Name             | Type     | Required | Default | Description                                                                                                        |
| ---------------- | -------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------ |
| `payload.cursor` | `string` | No       |         | When paging is needed, provide the value supplied by the previous API call to bring the following page of records. |
| `payload.filter` | `object` | Yes      |         | Filter parameters.                                                                                                 |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieve the daily activity of multiple users within the Gong system for a range of dates. This endpoint returns records including statistics about each user's activity, on the daily level. Records are returned only for users with activity in the range. When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:stats:user-actions:detailed'.",
    "properties": {
      "cursor": {
        "type": "string",
        "description": "When paging is needed, provide the value supplied by the previous API call to bring the following page of records."
      },
      "filter": {
        "type": "object",
        "description": "Filter parameters.",
        "properties": {
          "fromDate": {
            "type": "string",
            "description": "The date (in the company's time zone) from which to list a user's activity. This value is inclusive. The date should be specified in the following format: YYYY-MM-DD."
          },
          "toDate": {
            "type": "string",
            "description": "The date (in the company's time zone) until which to list a user's activity. This value is exclusive. This value should not exceed the current day. The date should be specified in the following format: YYYY-MM-DD."
          },
          "createdFromDateTime": {
            "type": "string",
            "format": "date-time"
          },
          "createdToDateTime": {
            "type": "string",
            "format": "date-time"
          },
          "userIds": {
            "type": "array",
            "description": "Set of Gong's unique numeric identifiers for the users (up to 20 digits).",
            "uniqueItems": true,
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "fromDate",
          "toDate"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "filter"
    ],
    "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": {
          "requestId": {
            "type": "string",
            "description": "A Gong request reference Id, generated for this request. Can be used for troubleshooting purposes."
          },
          "records": {
            "type": "object",
            "description": "Information about the number of records that match the requested filter.",
            "properties": {
              "totalRecords": {
                "type": "integer",
                "description": "Total number of records.",
                "format": "int32"
              },
              "currentPageSize": {
                "type": "integer",
                "description": "Number of records in the current page.",
                "format": "int32"
              },
              "currentPageNumber": {
                "type": "integer",
                "description": "Current page number.",
                "format": "int32"
              },
              "cursor": {
                "type": "string",
                "description": "Returned only when there are more records to be retrieved. Repeat the API call and pass this cursor value in the request to retrieve the next page of records."
              }
            },
            "additionalProperties": false
          },
          "usersDetailedActivities": {
            "type": "array",
            "description": "A list, in which each item contains one user's activity.",
            "items": {
              "type": "object",
              "description": "A list, in which each item contains one user's activity.",
              "properties": {
                "userId": {
                  "type": "string",
                  "description": "Gong's unique numeric identifier for the user (up to 20 digits)."
                },
                "userEmailAddress": {
                  "type": "string",
                  "description": "The email address of the Gong user."
                },
                "userDailyActivityStats": {
                  "type": "array",
                  "description": "Array of daily activity records, one for every day in the date range.",
                  "items": {
                    "type": "object",
                    "description": "User daily activity",
                    "properties": {
                      "callsAsHost": {
                        "type": "array",
                        "description": "List of IDs of calls in which this user is the host.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsGaveFeedback": {
                        "type": "array",
                        "description": "List of IDs of calls where the user gave feedback.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsRequestedFeedback": {
                        "type": "array",
                        "description": "List of IDs of calls where the user requested feedback.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsReceivedFeedback": {
                        "type": "array",
                        "description": "List of IDs of calls where the user received feedback.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "ownCallsListenedTo": {
                        "type": "array",
                        "description": "List of IDs of the user's own calls, that the user listened to.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "othersCallsListenedTo": {
                        "type": "array",
                        "description": "List of IDs of calls, not belonging to this user, that the user listened to.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsSharedInternally": {
                        "type": "array",
                        "description": "List of IDs of calls the user shared with other users inside the company.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsSharedExternally": {
                        "type": "array",
                        "description": "List of IDs of calls the user shared with people outside the company.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsAttended": {
                        "type": "array",
                        "description": "List of IDs of calls in which this user is participant (not host)",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsCommentsGiven": {
                        "type": "array",
                        "description": "List of IDs of calls in which a user gave at least one comment.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsCommentsReceived": {
                        "type": "array",
                        "description": "List of IDs of calls in which a user received at least one comment on the users calls.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsMarkedAsFeedbackGiven": {
                        "type": "array",
                        "description": "List of IDs of calls in which someone pressed the \"Mark as reviewed\".",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsMarkedAsFeedbackReceived": {
                        "type": "array",
                        "description": "List of IDs of calls in which someone pressed the \"Mark as reviewed\" on the users calls.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsScorecardsFilled": {
                        "type": "array",
                        "description": "List of IDs of calls in which the user filled scorecards.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "callsScorecardsReceived": {
                        "type": "array",
                        "description": "List of IDs of calls in which someone filled a scorecard on the users calls.",
                        "items": {
                          "type": "string"
                        }
                      },
                      "fromDate": {
                        "type": "string",
                        "description": "The start of the day in the ISO-8601 format, for example: '2024-01-17T16:20:05-03:00' or '2016-02-16T03:57:04.834+05:30' or '2020-11-20T21:30:07.233692Z', where Z stands for UTC."
                      },
                      "toDate": {
                        "type": "string",
                        "description": "The end of the day in the ISO-8601 format, for example: '2024-01-17T16:20:05-03:00' or '2016-02-16T03:57:04.834+05:30' or '2020-11-20T21:30:07.233692Z', where Z stands for UTC."
                      }
                    },
                    "additionalProperties": false
                  }
                }
              },
              "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 gong_list_multiple_users_day_by_day_activity --payload '{
  "filter": {}
}' --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`.
