GetSendStatistics
処理概要
送信したメールの統計情報を返します。
過去2週間分の送信結果のデータ要素のリストとなります。
リスト内の各データ要素は、15分間隔の統計情報です 。
指定するパラメーター
なし
応答フィールド
フィールド (項目) | 型 | 説明 |
---|---|---|
GetSendStatisticsResponse | structure |
ルート |
␣GetSendStatisticsResult | structure |
結果 |
␣␣SendDataPoints | list |
データ要素のリスト |
␣␣␣member | structure |
データ要素 |
␣␣␣␣DeliveryAttempts | integer |
メール送信数(送信失敗も含む) |
␣␣␣␣Timestamp | timestamp |
統計をとった時刻 (開始時刻) |
␣␣␣␣Rejects | integer |
ニフクラESSによって棄却されたメールの件数 |
␣␣␣␣Bounces | integer |
バウンスメールの件数 |
␣␣␣␣Complaints | integer |
クレームメールの件数 |
␣ResponseMetadata | structure |
共通メタ情報 |
␣␣RequestId | string |
リクエスト識別子 |
エラー
コード | メッセージ | タイプ | HTTPステータスコード | 説明 |
---|
リクエストサンプル
POST / HTTP/1.1
Authorization: NIFTY4-HMAC-SHA256 Credential=<Credential>/20140320/east-1/email/nifty4_request, SignedHeaders=content-type;host;x-nifty-date, Signature=<Signature>
Host: ess.api.nifcloud.com
Content-type: application/x-www-form-urlencoded
X-Nifty-Date: 20140320T112311Z
Content-Length: 43
Action=GetSendStatistics&Version=2010-12-01N2014-05-28
応答サンプル
HTTP/1.1 200 OK
Date: Thu, 20 Mar 2014 11:23:11 GMT
x-amzn-RequestId: 5e84d51e-3050-4407-9517-3d6906d2f1de
X-Nifty-RequestId: 5e84d51e-3050-4407-9517-3d6906d2f1de
Content-Type: text/xml
Content-Length: 2494
Connection: close
<GetSendStatisticsResponse>
<GetSendStatisticsResult>
<SendDataPoints>
<member>
<DeliveryAttempts>1</DeliveryAttempts>
<Timestamp>2014-03-10T18:30:00Z</Timestamp>
<Rejects>0</Rejects>
<Bounces>0</Bounces>
<Complaints>0</Complaints>
</member>
: 中略
<member>
<DeliveryAttempts>7</DeliveryAttempts>
<Timestamp>2014-03-20T09:00:00Z</Timestamp>
<Rejects>0</Rejects>
<Bounces>2</Bounces>
<Complaints>0</Complaints>
</member>
</SendDataPoints>
</GetSendStatisticsResult>
<ResponseMetadata>
<RequestId>5e84d51e-3050-4407-9517-3d6906d2f1de</RequestId>
</ResponseMetadata>
</GetSendStatisticsResponse>