Method
GET /v1/analytics/comms/notification-sends
Query Parameters
Start date (YYYY-MM-DD, inclusive).
End date (YYYY-MM-DD, inclusive).
Workspace identifier.
Headers
Bearer token with
analytics:read scope.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"
[
{ "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 }
]
Return notification send counts grouped by channel and delivery status.
GET /v1/analytics/comms/notification-sends
analytics:read scope.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"
[
{ "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 }
]