Blocks API

メールがブロックされる原因はさまざまです。例えば、メールの送信元IPアドレスがISPのブラックリストに乗っていた、メールのコンテンツが原因で宛先サーバがブロックした、など。

List all blocks [GET]

すべてのエントリの取得
URI引数 必須 条件 説明
start_time No timestamp ブロック発生時刻の範囲をUNIXタイム形式で指定します。
Example: 1443651141
end_time No timestamp ブロック発生時刻の範囲をUNIXタイム形式で指定します。
Example: 1443651154
limit No integer 結果を取得する件数を制限します。
Example: 10
offset No integer 結果を取得する位置のオフセットを指定します。
Example: 0

Request

1
GET https://api.sendgrid.com/v3/suppression/blocks?start_time={start_time}&end_time={end_time}&limit=10&offset=0 HTTP/1.1

Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
HTTP/1.1 200
[
  {
    "created": 1443651141,
    "email": "user1@example.com",
    "reason": "Connection timed out",
    "status": "4.0.0"
  },
  {
    "created": 1443651154,
    "email": "exampexample@example.comom",
    "reason": "error dialing remote address: dial tcp 10.57.152.165:25: no route to host",
    "status": "4.0.0"
  }
]

Delete blocks [DELETE]

複数エントリの削除
ブロックリストから削除するオプションには2種類あります:
1) "delete_all"にtrueを指定してブロックリスト内のすべてのメールアドレスを削除する
2) "emails"に削除するメールアドレスを配列で指定して削除する

Request

1
DELETE https://api.sendgrid.com/v3/suppression/blocks HTTP/1.1
Request Body
1
2
3
{
  "delete_all": true
}

Response

1
HTTP/1.1 204

Request

1
DELETE https://api.sendgrid.com/v3/suppression/blocks HTTP/1.1
Request Body
1
2
3
4
5
6
{
  "emails": [
    "email1@test.com",
    "email2@test.com"
  ]
}

Response

1
HTTP/1.1 204

Get a specific block [GET]

エントリの取得
URI引数 必須 条件 説明
email Yes string 対象メールアドレス
Example: spam1@test.com

Request

1
GET https://api.sendgrid.com/v3/suppression/blocks/{email} HTTP/1.1

Response

1
2
3
4
5
6
7
8
9
HTTP/1.1 200
[
  {
    "created": 1443651154,
    "email": "user1@example.com",
    "reason": "error dialing remote address: dial tcp 10.57.152.165:25: no route to host",
    "status": "4.0.0"
  }
]

Delete a specific block [DELETE]

エントリの削除
URI引数 必須 条件 説明
email Yes string 対象メールアドレス
Example: spam1@test.com

Request

1
DELETE https://api.sendgrid.com/v3/suppression/blocks/{email} HTTP/1.1

Response

1
HTTP/1.1 204