v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
InboxPlacementBlacklistAndSpamAssassinReport

List inbox placement blacklist and spamassassin report

Requires one of the following scopes: inbox_placement_reports:read, inbox_placement_reports:all, all:read, all:all

get/api/v2/inbox-placement-reports

Query parameters

limitinteger
Example:10

The number of items to return

starting_afterstring
Example:01956fbd-0eb1-72db-a565-82977a586084

The ID of the last item in the previous page - used for pagination. You can use the value of the next_starting_after field from the previous response.

test_idstring uuid required
Example:d290f1ee-6c54-4b01-90e6-d701748f0851
date_fromstring
Example:2026-07-24T15:45:35.406Z
date_tostring
Example:2026-07-24T15:45:35.406Z
skip_spam_assassin_reportboolean

Flag to skip including spam_assassin_report JSON

skip_blacklist_reportboolean

Flag to skip including blacklist_report JSON

Response

The list of Inbox Placement Blacklist And SpamAssassin Report

next_starting_afterstring

The filter for getting the next items after this one, this could either be a UUID, a timestamp, on an email depending on the specific API

Example response

{
  "items": [
    {
      "id": "019f94cd-839d-70e4-a0a0-f2c7571fd856",
      "timestamp_created": "2026-07-24T15:45:24.381Z",
      "timestamp_created_date": "2026-07-24",
      "organization_id": "019f94cd-839d-70e4-a0a0-f2c8073aa8c9",
      "test_id": "019f94cd-839d-70e4-a0a0-f2c9971f523b",
      "domain_blacklist_count": 5,
      "domain": "growinstantly.com",
      "domain_ip": "192.168.1.1",
      "domain_ip_blacklist_count": 3,
      "spam_assassin_score": 2.5,
      "spam_assassin_report": {
        "report": [
          {
            "description": "BODY",
            "name": "HTML_MESSAGE",
            "score": "0.0"
          }
        ]
      },
      "blacklist_report": {
        "address": "growinstantly.com",
        "blacklisted_count": 5,
        "details": [
          {
            "blacklist": "zen.spamhaus.org",
            "is_listed": true,
            "test_type": "ip"
          }
        ],
        "ip": "104.21.62.47",
        "is_blacklisted": true,
        "is_domain": true
      }
    }
  ],
  "next_starting_after": "019f94cd-aeae-706e-9fe9-d2e93af922f9"
}