The Generate Metric Report endpoint provides a unified interface for retrieving multiple analytics metrics in a single request, streamlining the process of generating comprehensive reports for workspace performance analysis. Unlike individual metric endpoints, this bulk endpoint allows you to request multiple analytics types simultaneously, reducing API calls and improving efficiency for dashboard and reporting applications. The endpoint supports all available analytics metrics including conversation overviews, activity trends, label usage, communication volumes, and detailed breakdowns, making it ideal for creating unified analytics dashboards and comprehensive performance reports.
Authentication via API key is required to ensure secure access to workspace data.
Ensure the following are in place:
All APIs require a valid API key issued from your workspace. All requests must
include a valid API key in the request header (X-API-Key
).
Go to Workspace → API Key tab.
Click Add New Key and check Workspace Events Notification
as the scope.
Copy the key and keep it safe. This key is required in the X-API-KEY
header
for all requests.
Your server must:
Be publicly accessible over HTTPS
Accept POST requests
Handle application/json payloads
POST https://seax.seasalt.ai/analytics-api/v1/generate_metric_report
Use this endpoint to generate multiple analytics metrics in a single request, providing a comprehensive view of your workspace performance across various dimensions.
Sample Request
curl -X POST https://seax.seasalt.ai/analytics-api/v1/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["conversation_overview", "activity_trend"],
"range_type": "last_30_days",
"timezone": "America/Los_Angeles",
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59"
}'
The request body uses the AnalyticsRequestType
schema with the following
fields:
Note: Fields marked with specific metric requirements are only used with certain metrics. See individual metric sections for detailed field dependencies.
Field | Type | Required | Used By Metrics | Description | Allowed Values / Example |
---|---|---|---|---|---|
metrics | array of strings | ✅ | All | List of analytics metrics to generate | ["conversation_overview", "activity_trend", "label_usage", "conversation_breakdown", "communication_volume", "total_usage", "conversation_overview_yearly", "label_overview", "agent_activity"] |
message_type | string | activity_trend | Whether to analyze messages or calls | messages , calls | |
time_unit | string | activity_trend , label_usage | Aggregation level for time-based data | day , month , year | |
timezone | string | All time-based metrics | Timezone used for grouping and filtering | Example: UTC , Asia/Taipei , America/Los_Angeles see a list of tz database time zones here | |
start_date | string (ISO 8601 datetime) | Date range metrics (see individual metrics) | Custom start of the date range | Example: 2024-06-01T00:00:00 or 2024-06-01T23:59:59-07:00 (with timezone) | |
end_date | string (ISO 8601 datetime) | Date range metrics (see individual metrics) | Custom end of the date range | Example: 2024-06-01T23:59:59 or 2024-06-01T23:59:59-07:00 (with timezone) | |
range_type | string | conversation_overview , agent_activity | Predefined time range (alternative to start/end dates) | last_day , last_7_days , last_30_days , last_90_days , last_180_days | |
exclude_empty_response | boolean | conversation_overview | Exclude conversations with no bot or agent replies | true , false | |
labels | array of strings | label_usage | Filter by specific label names | Example: ["support", "sales"] | |
agents | array of strings | agent_activity | Filter by specific agent user accounts | Example: ["agent_user_1", "agent_user_2"] | |
year | string (YYYY) | conversation_overview_yearly | Year for yearly report metrics | Example: 2024 |
Metric | Compatible With | Best Use Case |
---|---|---|
conversation_overview | Any metric | Dashboard overview with other metrics |
communication_volume | conversation_overview | Voice vs text communication analysis |
activity_trend | label_usage | Trend analysis with label patterns |
label_overview | label_usage | Label management and usage analysis |
conversation_breakdown | activity_trend | Detailed activity pattern analysis |
total_usage | Any metric | High-level usage summaries |
conversation_overview_yearly | Standalone recommended | Annual reporting (resource intensive) |
agent_activity | Any metric | Agent availability and productivity tracking |
You must provide your API key in the X-API-KEY
header.
To set up your API Key:
SeaX API Endpoints
scope.X-API-KEY
header
for all requests.The following metrics are available through this endpoint. Each metric has specific requirements and returns structured data:
Performance Tip: Requesting multiple related metrics in a single call is more efficient than separate requests. However, avoid combining resource-intensive metrics like
conversation_overview_yearly
with others unless necessary.
Provides comprehensive conversation statistics over a specified time range, including message counts, user interactions, and percentage changes compared to the previous period.
Use Cases:
Required Fields:
metrics
: Must include "conversation_overview"
range_type
: Time range specification (use last_30_days
, last_7_days
,
etc.)Optional Fields:
timezone
(string): Timezone for date calculations and filtering
"UTC"
"America/Los_Angeles"
, "Asia/Tokyo"
, "Europe/London"
exclude_empty_response
(boolean): Filter out conversations with no bot
or agent responses
false
(includes all conversations)true
to focus only on engaged conversationstrue
when analyzing actual engagement vs total
trafficNote: This metric automatically calculates percentage changes by comparing with the equivalent previous period.
Sample Request:
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["conversation_overview"],
"range_type": "last_30_days",
"timezone": "America/Los_Angeles",
"exclude_empty_response": true
}'
Sample Response:
{
"conversation_overview": {
"conversations": 150,
"messages": 2500,
"bot_messages": 1200,
"agent_messages": 800,
"live_agent_requests": 50,
"distinct_user_count": 125,
"conversations_change_percentage": 10.5,
"messages_change_percentage": 5.0,
"bot_messages_change_percentage": 8.0,
"agent_messages_change_percentage": 12.0,
"live_agent_requests_change_percentage": 15.0,
"current_period_start": "2024-01-01T00:00:00Z",
"current_period_end": "2024-01-31T23:59:59Z",
"previous_period_start": "2023-12-01T00:00:00Z",
"previous_period_end": "2023-12-31T23:59:59Z"
}
}
Provides yearly conversation statistics with monthly breakdown and average calculations.
Use Cases:
Required Fields:
metrics
: Must include "conversation_overview_yearly"
year
: Year in YYYY format (e.g., "2024"
)Optional Fields:
timezone
(string): Timezone for date calculations"UTC"
"America/New_York"
, "Europe/Berlin"
, "Asia/Shanghai"
Warning: This is a resource-intensive metric. Avoid combining with multiple other metrics in high-frequency requests.
Sample Request:
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["conversation_overview_yearly"],
"year": "2024",
"timezone": "UTC"
}'
Sample Response:
{
"conversation_overview_yearly": {
"total_conversations": 1800,
"total_messages": 15000,
"average_messages_per_conversation": 8.33,
"monthly_messages": {
"January": 1200,
"February": 1100,
"March": 1300,
"April": 1250,
"May": 1400,
"June": 1350,
"July": 1450,
"August": 1300,
"September": 1200,
"October": 1250,
"November": 1100,
"December": 1100
}
}
}
Provides detailed breakdown of conversation activity by channel, day of week, and hour of day, useful for identifying peak activity periods and channel preferences.
Use Cases:
Required Fields:
metrics
: Must include "conversation_breakdown"
start_date
: Start of analysis period (ISO 8601 format)end_date
: End of analysis period (ISO 8601 format)Optional Fields:
timezone
(string): Timezone for hour-of-day and day-of-week analysis"UTC"
"America/Chicago"
, "Asia/Seoul"
, "Australia/Sydney"
Performance Tip: Limit date ranges to 90 days or less for optimal performance.
Sample Request:
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["conversation_breakdown"],
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59",
"timezone": "UTC"
}'
Sample Response:
{
"conversation_breakdown": {
"channel_summary": {
"WebChat": {
"user_count": 45,
"inbound_message_count": 320,
"outbound_message_count": 280,
"total_message_count": 600
},
"SMS": {
"user_count": 30,
"inbound_message_count": 150,
"outbound_message_count": 120,
"total_message_count": 270
}
},
"messages_by_day": {
"Monday": 60,
"Tuesday": 80,
"Wednesday": 75,
"Thursday": 90,
"Friday": 100,
"Saturday": 40,
"Sunday": 25
},
"messages_by_hour": {
"0": 5,
"1": 2,
"2": 0,
"3": 1,
"4": 3,
"5": 8,
"6": 12,
"7": 20,
"8": 30,
"9": 40,
"10": 50,
"11": 60,
"12": 45,
"13": 35,
"14": 28,
"15": 22,
"16": 18,
"17": 15,
"18": 10,
"19": 8,
"20": 5,
"21": 4,
"22": 2,
"23": 1
}
}
}
Returns comprehensive information about all labels in the workspace, including usage counts and label metadata.
Use Cases:
Required Fields:
metrics
: Must include "label_overview"
Optional Fields:
Note: This metric includes both custom and system labels. System labels may have
null
workspace_id.
Sample Request:
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["label_overview"]
}'
Sample Response:
{
"label_overview": [
{
"id": "label-123",
"name": "Support",
"color": "#FF5733",
"description": "Customer support inquiries",
"total_count": 150,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-15T12:30:00Z"
},
{
"id": "label-456",
"name": "Sales",
"color": "#33C3FF",
"description": "Sales-related conversations",
"total_count": 89,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-10T09:15:00Z"
}
]
}
Provides counts of inbound/outbound voice calls and non-voice messages for a specified time period.
Use Cases:
Required Fields:
metrics
: Must include "communication_volume"
start_date
: Start of analysis period (ISO 8601 format)end_date
: End of analysis period (ISO 8601 format)Optional Fields:
timezone
(string): Timezone for date range filtering"UTC"
"America/Denver"
, "Europe/Paris"
, "Asia/Mumbai"
Note: “Non-voice” includes SMS, chat messages, and other text-based communications.
Sample Request:
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["communication_volume"],
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59"
}'
Sample Response:
{
"communication_volume": {
"inbound_voice_count": 25,
"outbound_voice_count": 15,
"inbound_non_voice_count": 450
}
}
Tracks communication activity changes over time, with breakdowns by sender type or call direction, including percentage change calculations.
Use Cases:
Required Fields:
metrics
: Must include "activity_trend"
start_date
: Start of analysis period (ISO 8601 format)end_date
: End of analysis period (ISO 8601 format)Optional Fields:
message_type
(string): Type of communication to analyze
"messages"
"messages"
: Shows breakdown by CUSTOMER/AGENT/BOT/SYSTEM sender types"calls"
: Shows breakdown by inbound/outbound call direction"messages"
for chat analysis, "calls"
for voice traffic
analysistime_unit
(string): Time period for data aggregation
"month"
"day"
, "month"
, "year"
"day"
for detailed short-term analysis, "month"
for
trend analysis"month"
or "year"
for large date rangestimezone
(string): Timezone for date grouping
"UTC"
"America/Phoenix"
, "Europe/Rome"
, "Asia/Bangkok"
Performance Tip: Use
"month"
or"year"
time_unit for large date ranges to reduce response size.
Sample Request:
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["activity_trend"],
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59",
"message_type": "messages",
"time_unit": "day"
}'
Sample Response:
{
"activity_trend": {
"time_unit": "day",
"data": [
{
"period": "2024-01-01",
"CUSTOMER": 45,
"AGENT": 60,
"BOT": 20,
"SYSTEM": 5
},
{
"period": "2024-01-02",
"CUSTOMER": 50,
"AGENT": 70,
"BOT": 25,
"SYSTEM": 3
}
],
"change_percent": 12.5
}
}
Returns label usage statistics over time, grouped by the specified time unit.
Use Cases:
Required Fields:
metrics
: Must include "label_usage"
start_date
: Start of analysis period (ISO 8601 format)end_date
: End of analysis period (ISO 8601 format)Optional Fields:
time_unit
(string): Time period for data grouping
"month"
"day"
, "month"
, "year"
"day"
for daily label application patterns, "month"
for
monthly trendslabels
(array of strings): Specific label names to include in analysis
["support", "sales", "billing"]
to focus on key business
categoriestimezone
(string): Timezone for time period boundaries
"UTC"
"America/Los_Angeles"
, "Europe/London"
, "Asia/Tokyo"
Tip: Use the
labels
filter to focus on specific labels of interest and reduce response size.
Sample Request:
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["label_usage"],
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-02-29T23:59:59",
"time_unit": "month",
"labels": ["support", "sales", "billing"]
}'
Sample Response:
{
"label_usage": [
{
"period": "2024-01",
"labels": [
{ "name": "support", "count": 45 },
{ "name": "sales", "count": 32 },
{ "name": "billing", "count": 18 }
]
},
{
"period": "2024-02",
"labels": [
{ "name": "support", "count": 52 },
{ "name": "sales", "count": 28 },
{ "name": "billing", "count": 22 }
]
}
]
}
Returns summary of total voice call duration and chat message counts over a specified period.
Use Cases:
Required Fields:
metrics
: Must include "total_usage"
Optional Fields:
start_date
(string, ISO 8601 datetime): Beginning of the analysis period
"2024-01-01T00:00:00"
, "2024-06-15T00:00:00-07:00"
end_date
(string, ISO 8601 datetime): End of the analysis period
"2024-12-31T23:59:59"
, "2024-06-30T23:59:59+08:00"
timezone
(string): Timezone for date range interpretation
"UTC"
"America/New_York"
, "Europe/Amsterdam"
, "Asia/Singapore"
Note: If no date range is specified, returns total usage across all available data.
Sample Request:
curl -X POST https://your-seax-domain.com/api/v1/analytics/generate_metric_report \
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["total_usage"],
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59"
}'
Sample Response:
{
"total_usage": {
"total_voice_minutes": 450.5,
"total_chat_responses": 2500
}
}
Provides detailed agent activity data including online/offline status sessions with timestamps and duration, enabling workforce management and productivity analysis.
Use Cases:
Required Fields:
metrics
: Must include "agent_activity"
range_type
OR both start_date
and end_date
Optional Fields:
agents
(array of strings): List of specific agent user accounts to
filter by
["agent_user_1@email.com", "agent_user_2@email.com", "agent_user_3@email.com"]
timezone
(string): Timezone for date range interpretation
"UTC"
"America/Chicago"
, "Europe/Madrid"
, "Asia/Hong_Kong"
Note: Activity sessions include status, start time, end time, and duration in seconds.
The status
field in the response can have the following values:
Status | Description |
---|---|
AVAILABLE | Agent is online and ready to handle conversations |
OFFLINE | Agent is not logged in or has gone offline |
ON_THE_CALL | Agent is currently handling a voice call |
CALL_RINGING | An incoming call is ringing for the agent |
OUTBOUND | Agent is making an outbound call |
WRAP_UP | Agent is in post-call wrap-up time |
MEAL | Agent is on a meal break |
BREAK | Agent is on a regular break |
AWAY | (Deprecated) Agent is temporarily away |
DO_NOT_DISTURB | (Deprecated) Agent has enabled do-not-disturb mode |
Important: The
AWAY
andDO_NOT_DISTURB
statuses are deprecated but may appear in historical data for backward compatibility.
Sample Request with Range Type:
curl -X POST https://seax.seasalt.ai/analytics-api/v1/generate_metric_report \
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["agent_activity"],
"range_type": "last_7_days",
"agents": ["agent_user_1", "agent_user_2"],
"timezone": "America/Los_Angeles"
}'
Sample Request with Date Range:
curl -X POST https://seax.seasalt.ai/analytics-api/v1/generate_metric_report \
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["agent_activity"],
"start_date": "2024-01-15T00:00:00",
"end_date": "2024-01-15T23:59:59",
"timezone": "UTC"
}'
Sample Response:
{
"agent_activity": {
"agents": [
{
"agent_id": "agent_user_1",
"status": "AVAILABLE",
"start_time": "2024-01-15T08:00:00Z",
"end_time": "2024-01-15T10:30:00Z",
"duration_seconds": 9000
},
{
"agent_id": "agent_user_1",
"status": "ON_THE_CALL",
"start_time": "2024-01-15T10:30:00Z",
"end_time": "2024-01-15T11:00:00Z",
"duration_seconds": 1800
},
{
"agent_id": "agent_user_1",
"status": "WRAP_UP",
"start_time": "2024-01-15T11:00:00Z",
"end_time": "2024-01-15T11:05:00Z",
"duration_seconds": 300
},
{
"agent_id": "agent_user_1",
"status": "MEAL",
"start_time": "2024-01-15T12:00:00Z",
"end_time": "2024-01-15T13:00:00Z",
"duration_seconds": 3600
},
{
"agent_id": "agent_user_1",
"status": "AVAILABLE",
"start_time": "2024-01-15T13:00:00Z",
"end_time": "2024-01-15T17:00:00Z",
"duration_seconds": 14400
},
{
"agent_id": "agent_user_2",
"status": "AVAILABLE",
"start_time": "2024-01-15T09:00:00Z",
"end_time": "2024-01-15T15:00:00Z",
"duration_seconds": 21600
},
{
"agent_id": "agent_user_2",
"status": "BREAK",
"start_time": "2024-01-15T15:00:00Z",
"end_time": "2024-01-15T15:15:00Z",
"duration_seconds": 900
},
{
"agent_id": "agent_user_2",
"status": "OFFLINE",
"start_time": "2024-01-15T17:00:00Z",
"end_time": null,
"duration_seconds": null
}
]
}
}
Sample Request with Multiple Metrics:
curl -X POST https://your-seax-domain.com/api/v1/analytics/generate_metric_report \
-H "X-API-KEY: <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"metrics": [
"conversation_overview",
"communication_volume",
"label_overview"
],
"range_type": "last_30_days",
"timezone": "America/Los_Angeles",
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59"
}'
Sample Successful Response:
{
"conversation_overview": {
"conversations": 150,
"messages": 2500,
"bot_messages": 1200,
"agent_messages": 800,
"live_agent_requests": 50,
"distinct_user_count": 125,
"conversations_change_percentage": 10.5,
"messages_change_percentage": 5.0,
"bot_messages_change_percentage": 8.0,
"agent_messages_change_percentage": 12.0,
"live_agent_requests_change_percentage": 15.0,
"current_period_start": "2024-01-01T00:00:00Z",
"current_period_end": "2024-01-31T23:59:59Z",
"previous_period_start": "2023-12-01T00:00:00Z",
"previous_period_end": "2023-12-31T23:59:59Z"
},
"communication_volume": {
"inbound_voice_count": 25,
"outbound_voice_count": 15,
"inbound_non_voice_count": 450
},
"label_overview": [
{
"id": "label-123",
"name": "Support",
"color": "#FF5733",
"description": "Customer support inquiries",
"total_count": 150,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-15T12:30:00Z"
},
{
"id": "label-456",
"name": "Sales",
"color": "#33C3FF",
"description": "Sales-related conversations",
"total_count": 89,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-10T09:15:00Z"
}
]
}
The API returns specific error messages to help you troubleshoot issues:
400 Bad Request - Missing Required Field:
{
"detail": "Range type is required for conversation overview"
}
Solution: Add the range_type
field when using the conversation_overview
metric.
400 Bad Request - Invalid Metric:
{
"detail": "Unsupported metric: invalid_metric_name"
}
Solution: Check the metric name against the supported list in the schema table above.
400 Bad Request - Date Range Required:
{
"detail": "Start date and end date are required for conversation breakdown"
}
Solution: Provide both start_date
and end_date
fields for date-range
metrics.
401 Unauthorized:
{
"detail": "Invalid API key"
}
Solution: Verify your API key is correct and has the appropriate permissions.
422 Validation Error:
{
"detail": [
{
"loc": ["body", "metrics"],
"msg": "field required",
"type": "value_error.missing"
}
]
}
Solution: Ensure all required fields are included in your request body.
Error | Cause | Solution |
---|---|---|
“Range type is required” | Missing range_type for overview | Add range_type field |
“Year is required” | Missing year for yearly overview | Add year field in YYYY format |
“Start date and end date are required” | Missing dates for time-range metrics | Add both start_date and end_date |
“Invalid year format” | Incorrect year format | Use 4-digit year format (e.g., “2024”) |
“Unsupported metric” | Typo in metric name | Check spelling against supported metrics |
Batch Related Metrics: Request related metrics together to minimize API calls and ensure data consistency.
["conversation_overview", "communication_volume"]
Timezone Consistency: Always specify the same timezone across related requests to ensure accurate comparisons.
"timezone": "America/Los_Angeles"
for all requestsDate Range Optimization:
range_type
for standard periods instead of custom dates when possiblestart_date
is before end_date
// Example error handling
try {
const response = await fetch('/api/v1/analytics/generate_metric_report', {
method: 'POST',
headers: { 'X-API-KEY': apiKey, 'Content-Type': 'application/json' },
body: JSON.stringify(requestBody),
});
if (!response.ok) {
const error = await response.json();
console.error('API Error:', error.detail);
}
} catch (error) {
console.error('Network Error:', error);
}
Query Performance:
conversation_overview_yearly
in high-frequency requeststime_unit
values (prefer month
over day
for large
ranges)Resource Management:
labels
parameter) to reduce response sizeTimezone Handling:
Date Range Logic:
Dashboard Overview (Most Common)
curl -X POST https://seax.seasalt.ai/seax-api/api/v1/analytics/generate_metric_report
ric_report
-H "X-API-KEY: your_key" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["conversation_overview", "communication_volume"],
"range_type": "last_30_days",
"timezone": "America/New_York"
}'
Detailed Analysis
curl -X POST https://api.example.com/v1/analytics/generate_metric_report \
-H "X-API-KEY: your_key" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["activity_trend", "conversation_breakdown"],
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59",
"time_unit": "day",
"timezone": "UTC"
}'
Label Performance Review
curl -X POST https://api.example.com/v1/analytics/generate_metric_report \
-H "X-API-KEY: your_key" \
-H "Content-Type: application/json" \
-d '{
"metrics": ["label_overview", "label_usage"],
"start_date": "2024-01-01T00:00:00",
"end_date": "2024-01-31T23:59:59",
"labels": ["support", "sales", "billing"]
}'
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.