Properties
| Name | Type | Description |
|---|---|---|
| cursor | string | Cursor for pagination. |
| filter | object | Filter criteria for interaction statistics. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InteractionStatsRequest",
"title": "InteractionStatsRequest",
"type": "object",
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for pagination."
},
"filter": {
"type": "object",
"properties": {
"fromDateTime": {
"type": "string",
"format": "date-time",
"description": "Start of the date range."
},
"toDateTime": {
"type": "string",
"format": "date-time",
"description": "End of the date range."
},
"userIds": {
"type": "array",
"items": {
"type": "string"
},
"description": "Filter by specific user IDs."
}
},
"description": "Filter criteria for interaction statistics."
}
}
}