Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Retrieve monthly stats for all subusers



API Overview

api-overview page anchor

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(link takes you to an external page).


GET/v3/subusers/stats/monthly

Base url: https://api.sendgrid.com

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.


Authentication

authentication page anchor
Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>
Property nameTypeRequiredDescription
datestringrequired

The date of the month to retrieve statistics for. Must be formatted YYYY-MM-DD


subuserstringOptional

A substring search of your subusers.


sort_by_metricenum<string>Optional

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.'

Default: deliveredPossible values:
blocksbouncesclicksdeliveredopensrequestsunique_clicksunique_opensunsubscribes

sort_by_directionenum<string>Optional

The direction you want to sort.

Default: descPossible values:
descasc

limitintegerOptional

Optional field to limit the number of results returned.

Default: 5

offsetintegerOptional

Optional beginning point in the list to retrieve from.

Default: 0
200
SchemaExample
Property nameTypeRequiredDescriptionChild properties
datestring

The date the statistics were gathered.


statsarray[object]

The list of statistics.

Retrieve monthly stats for all subusers

retrieve-monthly-stats-for-all-subusers page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
curl

_22
const client = require('@sendgrid/client');
_22
client.setApiKey(process.env.SENDGRID_API_KEY);
_22
_22
const queryParams = {
_22
"date": "2010-01-22",
_22
"limit": 5
_22
};
_22
_22
const request = {
_22
url: `/v3/subusers/stats/monthly`,
_22
method: 'GET',
_22
qs: queryParams
_22
}
_22
_22
client.request(request)
_22
.then(([response, body]) => {
_22
console.log(response.statusCode);
_22
console.log(response.body);
_22
})
_22
.catch(error => {
_22
console.error(error);
_22
});


Rate this page: