curl --request GET \
--url http://localhost:8080/api/v1/reports/overview/charts \
--header 'Authorization: Basic <encoded-value>'
{
"status": "success",
"data": {
"new_conversations": [
{
"date": "2025-08-19",
"count": 16
}
],
"resolved_conversations": [
{
"date": "2023-12-25",
"count": 123
}
]
}
}
curl --request GET \
--url http://localhost:8080/api/v1/reports/overview/charts \
--header 'Authorization: Basic <encoded-value>'
{
"status": "success",
"data": {
"new_conversations": [
{
"date": "2025-08-19",
"count": 16
}
],
"resolved_conversations": [
{
"date": "2023-12-25",
"count": 123
}
]
}
}
Basic authentication using base64 encoded API key and secret. Format: Authorization: Basic <base64(api_key:api_secret)>
Number of days to include in the report
Charts overview report retrieved successfully
The response is of type object
.
Was this page helpful?