Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lc new reports endpoints #1520

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "groups-report",
"total": 29,
"records": {
"2024-08-20": {
"0": 1,
"2": 1
},
"2024-08-21": {
"0": 20,
"1": 2
},
"2024-08-22": {
"0": 1,
"1": 2,
"3": 1,
"4": 1
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "queued-visitors-left-report",
"total": 2,
"summary": {
"left_without_details": 2,
"total_pages": 1
},
"records": {
"SK0P33W2ZJ": {
"visitor": {
"id": "0f864f86-556e-46a9-848e-d2d5fe0a8fe0",
"ip": "169.50.11.126"
},
"queue": {
"duration": 123,
"group": 0,
"start_date": "2024-10-01T20:47:07Z"
}
},
"SK0Q3SGMBN": {
"visitor": {
"id": "04e8c9b6-8dc3-4067-a749-0ef983f99e6d",
"ip": "169.50.11.126"
},
"queue": {
"duration": 21,
"group": 6291,
"start_date": "2024-10-02T18:56:47Z"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "queued-visitors-report",
"total": 15,
"records": {
"2024-10-01": {
"left_queue": {
"count": 13,
"min": 0,
"max": 100,
"avg": 20.5384615384615383
},
"queued": {
"count": 13,
"min": 0,
"max": 20,
"avg": 2.5384615384615383
}
},
"2024-10-02": {
"left_queue": {
"count": 2,
"min": 0,
"max": 3,
"avg": 0.21311475409836064
},
"queued": {
"count": 2,
"min": 1,
"max": 10,
"avg": 5.523131672597864
}
},
"2024-10-03": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "visitors-report",
"summary": {
"unique_visitors": 4,
"page_views": 23
}
}
5 changes: 4 additions & 1 deletion src/pages/data-reporting/changelog/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ The developer preview version provides a preview of the upcoming changes to the

## [v3.6] - Developer preview

No changes yet.
- There's a new method, [**Unique visitors**](/data-reporting/reports-api/v3.6/reports/stats/unique_visitors), which shows how many page views and unique visitors there were on the website during the specified period.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- There's a new method, [**Unique visitors**](/data-reporting/reports-api/v3.6/reports/stats/unique_visitors), which shows how many page views and unique visitors there were on the website during the specified period.
- There's a new method, [**Unique Visitors**](/data-reporting/reports-api/v3.6/reports/stats/unique_visitors), which shows how many page views and unique visitors there were on the website during the specified period.

- There's a new method, [**Groups**](/data-reporting/reports-api/v3.6/#groups), which shows how many chats were handled by each group during the specified period.
- There's a new method, [**Queued visitors**](/data-reporting/reports-api/v3.6/#queued_visitors), which shows how many customers were waiting in the queue during the specified period.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- There's a new method, [**Queued visitors**](/data-reporting/reports-api/v3.6/#queued_visitors), which shows how many customers were waiting in the queue during the specified period.
- There's a new method, [**Queued Visitors**](/data-reporting/reports-api/v3.6/#queued_visitors), which shows how many customers were waiting in the queue during the specified period.

- There's a new method, [**Queued visitors left**](/data-reporting/reports-api/v3.6/#queued_visitors_left), which shows what customers left the queue during the specified period.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- There's a new method, [**Queued visitors left**](/data-reporting/reports-api/v3.6/#queued_visitors_left), which shows what customers left the queue during the specified period.
- There's a new method, [**Queued Visitors Left**](/data-reporting/reports-api/v3.6/#queued_visitors_left), which shows what customers left the queue during the specified period.


## [v3.5] - 2022-11-23

Expand Down
Loading