Skip to main content

Method

GET /v1/analytics/comms/notification-sends

Query Parameters

from
string
required
Start date (YYYY-MM-DD, inclusive).
to
string
required
End date (YYYY-MM-DD, inclusive).
workspaceId
uuid
required
Workspace identifier.

Headers

Authorization
string
Bearer token with analytics:read scope.

Request Example

curl "https://api.voyantcloud.com/v1/analytics/comms/notification-sends?from=2025-02-01&to=2025-02-07&workspaceId=ws_abc" \
  -H "Authorization: Bearer $VOYANT_API_KEY"

Response

[
  { "day": "2025-02-01", "channel": "email", "status": "sent", "cnt": 1420 },
  { "day": "2025-02-01", "channel": "email", "status": "failed", "cnt": 18 },
  { "day": "2025-02-02", "channel": "push", "status": "sent", "cnt": 510 }
]
Combine with delivery events to compute open/delivery rates per channel and surface anomalies.