AgentBots
Inbox API
Conversations API
Contact Labels
CSAT Survey Page
Account AgentBots
Agents
Canned Responses
Canned Response
Custom Attributes
Contacts
Automation Rule
Help Center
Conversations
Conversation Assignment
Conversation Labels
Inboxes
Integrations
Profile
Teams
Custom Filters
Reports
Get Account reports summary
Reports
Get Account reports summary
Get Account reports summary for a specific type and date range
GET
/
api
/
v2
/
accounts
/
{account_id}
/
reports
/
summary
curl --request GET \
--url https://app.chatwoot.com/api/v2/accounts/{account_id}/reports/summary
{
"avg_first_response_time": "<string>",
"avg_resolution_time": "<string>",
"conversations_count": 123,
"incoming_messages_count": 123,
"outgoing_messages_count": 123,
"resolutions_count": 123,
"previous": {
"avg_first_response_time": "<string>",
"avg_resolution_time": "<string>",
"conversations_count": 123,
"incoming_messages_count": 123,
"outgoing_messages_count": 123,
"resolutions_count": 123
}
}
Path Parameters
The numeric ID of the account
Query Parameters
Type of report
Available options:
account
, agent
, inbox
, label
, team
The Id of specific object in case of agent/inbox/label
The timestamp from where report should start.
The timestamp from where report should stop.
Response
200
application/json
Success
The response is of type object
.
curl --request GET \
--url https://app.chatwoot.com/api/v2/accounts/{account_id}/reports/summary
{
"avg_first_response_time": "<string>",
"avg_resolution_time": "<string>",
"conversations_count": 123,
"incoming_messages_count": 123,
"outgoing_messages_count": 123,
"resolutions_count": 123,
"previous": {
"avg_first_response_time": "<string>",
"avg_resolution_time": "<string>",
"conversations_count": 123,
"incoming_messages_count": 123,
"outgoing_messages_count": 123,
"resolutions_count": 123
}
}