Subuser statistics enable you to view specific segments of your statistics, as compared to the general overview of all email activity on your account. SendGrid tracks your subusers' emails sent, bounces, and spam reports. Unsubscribes, clicks, and opens are tracked if you have enabled the required settings.
For more information, see our Subusers documentation. You can also access Subuser Statistics in the SendGrid console.
This endpoint allows you to retrieve the monthly email statistics for all subusers over the given date range.
When using the sort_by_metric
to sort your stats by a specific metric, you can not sort by the following metrics:
bounce_drops
, deferred
, invalid_emails
, processed
, spam_report_drops
, spam_reports
, or unsubscribe_drops
.
Bearer <<YOUR_API_KEY_HERE>>
The date of the month to retrieve statistics for. Must be formatted YYYY-MM-DD
A substring search of your subusers.
The metric that you want to sort by. Metrics that you can sort by are: blocks
, bounces
, clicks
, delivered
, opens
, requests
, unique_clicks
, unique_opens
, and unsubscribes
.'
delivered
Possible values: blocks
bounces
clicks
delivered
opens
requests
unique_clicks
unique_opens
unsubscribes
The direction you want to sort.
desc
Possible values: desc
asc
Optional field to limit the number of results returned.
5
Optional beginning point in the list to retrieve from.
0
The date the statistics were gathered.
The list of statistics.
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const queryParams = {5"date": "2010-01-22",6"limit": 57};89const request = {10url: `/v3/subusers/stats/monthly`,11method: 'GET',12qs: queryParams13}1415client.request(request)16.then(([response, body]) => {17console.log(response.statusCode);18console.log(response.body);19})20.catch(error => {21console.error(error);22});