Returns hourly email volume (received and sent) between the given start and end dates. Each day is broken down into 24 hourly buckets, showing how many emails were received and sent during each hour.
00:00:00 → 23:00:00). - Useful for visualizing hourly trends in dashboards.Returns hourly email volume (received and sent) between the given start and end dates. Each day is broken down into 24 hourly buckets, showing how many emails were received and sent during each hour.Documentation Index
Fetch the complete documentation index at: https://compass.docs.sunnyscoach.com/llms.txt
Use this file to discover all available pages before exploring further.
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | Bearer token |
| Parameter | Type | Required | Description |
|---|---|---|---|
| startDate | string | Yes | Start date for the range (YYYY-MM-DD) |
| endDate | string | Yes | End date for the range (YYYY-MM-DD) |
YYYY-MM-DD (ISO 8601 date)| Field | Type | Description |
|---|---|---|
| labels | array | Hour labels from 00:00:00 to 23:00:00 |
| Field | Type | Description |
|---|---|---|
| received | array | Series showing received emails per hour per day |
| sent | array | Series showing sent emails per hour per day |
| Field | Type | Description |
|---|---|---|
| name | string | Date of the data point (YYYY-MM-DD) |
| data | array | 24-hour email counts |
series.received[i].data[j] corresponds to labels[j] for received emails on date series.received[i].nameseries.sent[i].data[j] corresponds to labels[j] for sent emails on date series.sent[i].name/email-meter/stats/emails-trend for daily trends/email-meter/stats/email-counts for aggregate statistics/email-meter/stats/response-times for hourly response analysisBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Start date for the range (YYYY-MM-DD)
End date for the range (YYYY-MM-DD)