Skip to content

ses.getSendStatistics

Jordan Ryan Moore edited this page May 13, 2011 · 4 revisions

Description

Returns the user's sending statistics. The result is a list of data points, representing the last two weeks of sending activity.

Each data point in the list contains statistics for a 15-minute interval.

Request

ses.getSendStatistics has no request properties.

Response

Property Type Description
requestId String The ID of the request.
bounces Number Number of emails that have bounced.
complaints Number Number of unwanted emails that were rejected by recipients.
deliveryAttempts Number Number of emails that have been enqueued for sending.
rejects Number Number of emails rejected by Amazon SES.
timestamp Date Time of the data point.

Examples

Example Request

{}

Example Response

{
  requestId: "fd3ae762-2563-11df-8cd4-6d4e828a9ae8",
  dataPoints: [
    {
      deliveryAttempts: 5,
      timestamp: new Date("2011-05-04T15:55:00Z"),
      rejects: 0,
      bounces: 0,
      complaints: 0,
    },
  ],
}

References

Clone this wiki locally