Mailprotector

Mailprotector API

The content appears to be a repetitive listing of "Body" and "Headers" sections with varying header counts, all under the title "Mailprotector API," suggesting a structured but incomplete or placeholder representation of multiple API request or response components without detailed descriptive information.

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (0)

  • Body

  • Headers (13)

  • Body

  • Headers (0)

  • Body

  • Headers (9)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (0)

  • Body

  • Headers (9)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (12)

  • Body

  • Headers (9)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (17)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (12)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (12)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

  • Body

  • Headers (9)

  • Body

  • Headers (13)

  • Body

  • Headers (13)

Public

Documentation Settings

ENVIRONMENT

Production

LAYOUT

Double Column

LANGUAGE

cURL - cURL

Mailprotector API

Introduction

Authentication

List Request Parameters

Filtering Logs

Resellers

Customers

Domains

User Groups

Users

Managers

Results

Mailprotector API

The Mailprotector API is structured in a way to provide most console functionality through a RESTful interface. Access to some endpoints may be restricted for API keys belonging to managers with certain permissions. For any questions or suggestions, please create a new ticket with our support team: https://support.mailprotector.com/hc/en-us/requests/new.

Authentication

Authentication for all requests is granted via a Bearer token in the header of a request. Each manager account is provisioned with an API key for each active role which can be accessed via the web console.

To find the key of the current manager account, first log in to your manager account in the web console, then click on "Edit my profile" under the dropdown at the upper right corner of the page (logged in users can also go to https://emailservice.io/profile ). Once there, click the "..." button on the role that you would like to utilize in the API, and click the "View API Key" option.

The token will provide the same permissions as the role whose key is being used. The request's header should have the following field provided for every request.

Plain Text

"Authorization": "Bearer {{your_api_key_here}}"

List Request Parameters

All GET request routes which provide a list of entities (i.e. GET users) can be optionally filtered using query parameters which map to a field on the entity being requested. For example, when requesting a list of users, the first_name field can be filtered on by using the following URL:

Plain Text

"emailservice.io/api/v1/domains/{{domain_id}}/users?first_name={{first_name}}"

Results can also be filtered down based on the date or datetime the objects were created or updated. Five comparisons for dates/datetimes can be made:

AbbreviationFunction
GeGreater than
GeqGreater than or equal
LeLess than
LeqLess than or equal
EqExactly equals

As an example, to find a list of users created on or after a certain date, you could use the following URL:

Plain Text

"emailservice.io/api/v1/domains/{{domain_id}}/users?created_at[geq]=2018-01-01"

All returned lists will include information about the current status of the paging through the response headers. Below is an example of what is returned under the "X-Pagination" key in the response headers.

Plain Text

{
   "total":41,
   "total_pages":2,
   "per_page":25,
   "first_page":true,
   "last_page":false,
   "previous_page":null,
   "current_page":1,
   "next_page":2,
   "out_of_range":false
}

The returned pages can be manipulated through the combination of the page and per_page keys. By default, these values are 1 and 25 respectively.

Filtering Logs

The logs endpoints for each entity can be filtered using the same criteria as the web console.

View More

OptionsPossible Values
sort_direction"desc" (default), "asc"
sort_field"@timestamp" (default) <br>"prime.direction" - Sort by inbound/outbound messages <br>"prime.from_header_raw" - Sort by from address <br>"prime.recipient" - Sort by to address <br>"prime.subject" - Sort by subject line <br>"prime.decision" - Sort by decision on messages (i.e "deliver" vs "quarantine_spam", etc) <br>"prime.score" - Sort by the score of each message
pageint (default of 1)
page_sizeint (default of 25)
senderstring (optional)
recipientstring (optional)
subjectstring (optional)
decision"all" (default),"deliver", "quarantine_spam", "quarantine_virus", <br>"quarantine_policy", "bounce", "encrypt", "delete"
direction"inbound", "outbound" (leave blank to retrieve both)
date_range_type"relative" - Relative to the date_range_minutes provided <br>"custom" - Absolute time provided as start_datetime and end_datetime parameters
date_range_minutesint (defaults to 15). Only used if date_range_type is "relative".
start_datetimeiso8601 formatted datetime. Defaults to 15 minutes prior to the request being made.
end_datetimeiso8601 formatted datetime. Defaults to the time of the request if not provided.

An example request may look like the following:

View More

Plain Text

emailservice.io/domains/{{domain_id}}/logs?sort_direction=desc&sort_field=@timestamp&page=1&sender=address&recipient=address&subject=subject&decision=deliver&direction=inbound&date_range_type=relative&date_range_minutes=30&start_datetime=2020-01-21T22:01:09Z&end_datetime=2020-01-21T22:16:09Z

AUTHORIZATIONBearer Token

Token

{{your_api_key_here}}

Resellers

Create, read, update, and delete reseller accounts.

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

Customers

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Customers

emailservice.io/api/v1/resellers/{{reseller_id}}/customers

Get a list of all customers belonging to a reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Customers

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/customers' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 2111,\
    "name": "Able Moving and Storage, Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-10-05T14:29:55.000Z",\
    "updated_at": "2019-01-15T23:05:17.000Z"\
  },\
  {\
    "id": 2009,\
    "name": "Achievehs",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-01-11T18:56:16.000Z",\
    "updated_at": "2019-01-15T23:05:10.000Z"\
  },\
  {\
    "id": 2071,\
    "name": "AGRICORP",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-07-13T12:57:05.000Z",\
    "updated_at": "2015-12-16T18:52:09.000Z"\
  },\
  {\
    "id": 1887,\
    "name": "AIS",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-01-13T09:37:06.000Z",\
    "updated_at": "2019-01-15T23:04:57.000Z"\
  },\
  {\
    "id": 1973,\
    "name": "AMAMCO TOOL",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-10-22T14:31:10.000Z",\
    "updated_at": "2019-01-15T23:05:08.000Z"\
  },\
  {\
    "id": 2099,\
    "name": "AZNORTH",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-09-10T16:43:51.000Z",\
    "updated_at": "2019-01-15T23:05:15.000Z"\
  },\
  {\
    "id": 1995,\
    "name": "Bossio & Associates",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-12-20T15:44:51.000Z",\
    "updated_at": "2015-12-16T18:47:41.000Z"\
  },\
  {\
    "id": 2079,\
    "name": "Breeze-Eastern Corporation",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-07-19T08:46:19.000Z",\
    "updated_at": "2015-12-16T18:52:28.000Z"\
  },\
  {\
    "id": 2025,\
    "name": "Brogans Bakery",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-03-24T10:58:22.000Z",\
    "updated_at": "2015-12-16T18:48:47.000Z"\
  },\
  {\
    "id": 2045,\
    "name": "Cambio Communications, Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-06-14T10:40:27.000Z",\
    "updated_at": "2019-01-15T23:05:13.000Z"\
  },\
  {\
    "id": 1983,\
    "name": "Carlos Douglas Consulting Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-12-04T17:23:14.000Z",\
    "updated_at": "2016-11-23T01:22:37.000Z"\
  },\
  {\
    "id": 1981,\
    "name": "Central Disposal",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-11-18T21:02:15.000Z",\
    "updated_at": "2019-01-15T23:05:11.000Z"\
  },\
  {\
    "id": 2023,\
    "name": "CollinsElectric",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-03-08T08:21:11.000Z",\
    "updated_at": "2019-01-15T23:05:11.000Z"\
  },\
  {\
    "id": 2087,\
    "name": "COMBINED WAREHOUSE, INC",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-08-06T10:57:07.000Z",\
    "updated_at": "2019-01-15T23:05:14.000Z"\
  },\
  {\
    "id": 2005,\
    "name": "Dauphin",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-01-08T16:44:30.000Z",\
    "updated_at": "2015-12-16T18:48:07.000Z"\
  },\
  {\
    "id": 329,\
    "name": "Different Customer Name",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-05-12T10:33:24.000Z",\
    "updated_at": "2020-01-02T22:35:01.000Z"\
  },\
  {\
    "id": 2091,\
    "name": "Donsbach Law",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-08-19T23:48:33.000Z",\
    "updated_at": "2019-01-15T23:05:15.000Z"\
  },\
  {\
    "id": 2075,\
    "name": "dtt broadcasting",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-07-17T13:07:10.000Z",\
    "updated_at": "2015-12-16T18:52:18.000Z"\
  },\
  {\
    "id": 1963,\
    "name": "eLegalSupply.com",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-09-23T15:26:18.000Z",\
    "updated_at": "2019-01-15T23:05:07.000Z"\
  },\
  {\
    "id": 805,\
    "name": "Epic Real Estate Solutions, Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-07-07T14:09:05.000Z",\
    "updated_at": "2019-01-15T23:05:05.000Z"\
  },\
  {\
    "id": 2017,\
    "name": "Eye Doctors of Washington",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-02-25T10:03:55.000Z",\
    "updated_at": "2015-12-16T18:48:27.000Z"\
  },\
  {\
    "id": 1953,\
    "name": "Fifth Group Restaurants",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-07-27T13:03:46.000Z",\
    "updated_at": "2015-12-16T18:46:10.000Z"\
  },\
  {\
    "id": 1969,\
    "name": "Garden State Baseball",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-10-13T09:12:00.000Z",\
    "updated_at": "2019-01-15T23:05:06.000Z"\
  },\
  {\
    "id": 1959,\
    "name": "Girl Scouts of Greater Atlanta",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-08-20T19:14:33.000Z",\
    "updated_at": "2019-01-15T23:05:07.000Z"\
  },\
  {\
    "id": 1937,\
    "name": "Girl Scouts of NY Penn and Pathways",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-06-03T14:56:30.000Z",\
    "updated_at": "2019-01-15T23:05:03.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":58,"total_pages":3,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"c1c1b8a5936d23f6a754dbc47b3d8a5e"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

2b9ba0b4-6264-47e4-8682-d59cbc58e3bc

X-Runtime

0.413970

Transfer-Encoding

chunked

POSTCreate Customer

emailservice.io/api/v1/resellers/{{reseller_id}}/customers

Create a new customer under a reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "A New Customer",
	"email": "[email protected]"
}

Example Request

Create Customer

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/customers' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"name": "A New Customer",
	"email": "[email protected]"
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 17015,
  "name": "A New Customer",
  "provider": {
    "id": 65,
    "name": "United States"
  },
  "reseller": {
    "id": 188,
    "name": "Mailprotector Direct (old)"
  },
  "created_at": "2020-01-10T15:57:28.000Z",
  "updated_at": "2020-01-10T15:57:28.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/customers/17015

Content-Type

application/json; charset=utf-8

ETag

W/"bc24f1473fb9496dcc0c38914c9effac"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

b7c2c06d-1da7-406f-bc80-aca658feca00

X-Runtime

3.007571

Transfer-Encoding

chunked

Domains

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

Users

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Users

emailservice.io/api/v1/resellers/{{reseller_id}}/users

Get all users under a reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Users

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/users' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 883326,\
    "name": "abigail.thompson",\
    "parent": null,\
    "user_type": {\
      "id": 11,\
      "name": "Unlicensed User"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Abigail",\
    "last_name": "Thompson",\
    "created_at": "2017-10-06T18:31:17.000Z",\
    "updated_at": "2020-01-09T20:19:58.000Z"\
  },\
  {\
    "id": 252227,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6241,\
      "name": "ocxnet.com user group"\
    },\
    "domain": {\
      "id": 8239,\
      "name": "ocxnet.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Domain",\
    "last_name": "Abuse",\
    "created_at": "2010-11-20T09:40:24.000Z",\
    "updated_at": "2014-03-28T20:22:01.000Z"\
  },\
  {\
    "id": 1272459,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 29149,\
      "name": "Default"\
    },\
    "domain": {\
      "id": 29102,\
      "name": "emailsrv.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Mailprotector",\
    "last_name": "Abuse",\
    "created_at": "2020-01-03T17:59:11.000Z",\
    "updated_at": "2020-01-09T22:18:37.000Z"\
  },\
  {\
    "id": 38543,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:31:33.000Z",\
    "updated_at": "2020-01-09T08:00:07.000Z"\
  },\
  {\
    "id": 250261,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6169,\
      "name": "vxray2.out user group"\
    },\
    "domain": {\
      "id": 8149,\
      "name": "vxray2.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:21:38.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250265,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6171,\
      "name": "vxray3.out user group"\
    },\
    "domain": {\
      "id": 8151,\
      "name": "vxray3.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:21:56.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250269,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6173,\
      "name": "vxray4.out user group"\
    },\
    "domain": {\
      "id": 8153,\
      "name": "vxray4.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:22:14.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250273,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6175,\
      "name": "vxray5.out user group"\
    },\
    "domain": {\
      "id": 8155,\
      "name": "vxray5.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:22:32.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250277,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6177,\
      "name": "mpsupport.out user group"\
    },\
    "domain": {\
      "id": 8157,\
      "name": "mpsupport.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:22:49.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250281,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6179,\
      "name": "calelite.out user group"\
    },\
    "domain": {\
      "id": 8159,\
      "name": "calelite.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:23:07.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250285,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6181,\
      "name": "interflexgroup.out user group"\
    },\
    "domain": {\
      "id": 8161,\
      "name": "interflexgroup.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:23:25.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250289,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6183,\
      "name": "interflexgroupcouk.out user group"\
    },\
    "domain": {\
      "id": 8163,\
      "name": "interflexgroupcouk.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:23:43.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250293,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6185,\
      "name": "matsysinc.out user group"\
    },\
    "domain": {\
      "id": 8165,\
      "name": "matsysinc.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:01.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250297,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6187,\
      "name": "mncpap.out user group"\
    },\
    "domain": {\
      "id": 8167,\
      "name": "mncpap.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:19.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250301,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6189,\
      "name": "e-inbusiness.out user group"\
    },\
    "domain": {\
      "id": 8169,\
      "name": "e-inbusiness.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:37.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250305,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6191,\
      "name": "nzymes.out user group"\
    },\
    "domain": {\
      "id": 8171,\
      "name": "nzymes.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:56.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 279309,\
    "name": "aca",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "ACA",\
    "last_name": "Email Addy",\
    "created_at": "2011-01-13T18:19:19.000Z",\
    "updated_at": "2020-01-09T08:00:42.000Z"\
  },\
  {\
    "id": 615532,\
    "name": "accounting",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6241,\
      "name": "ocxnet.com user group"\
    },\
    "domain": {\
      "id": 8239,\
      "name": "ocxnet.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2014-03-28T20:21:12.000Z",\
    "updated_at": "2020-01-09T10:02:44.000Z"\
  },\
  {\
    "id": 683333,\
    "name": "adam",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6241,\
      "name": "ocxnet.com user group"\
    },\
    "domain": {\
      "id": 8239,\
      "name": "ocxnet.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Adam",\
    "last_name": "Dilk",\
    "created_at": "2015-05-11T16:21:09.000Z",\
    "updated_at": "2020-01-09T10:02:45.000Z"\
  },\
  {\
    "id": 759339,\
    "name": "addressdiscovery",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 17596,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Address",\
    "last_name": "Discovery",\
    "created_at": "2016-10-14T20:28:09.000Z",\
    "updated_at": "2019-03-12T07:32:31.000Z"\
  },\
  {\
    "id": 768865,\
    "name": "addressdiscovery",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 15866,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 17044,\
      "name": "exchange2016.mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Address",\
    "last_name": "Discovery",\
    "created_at": "2016-11-04T18:19:14.000Z",\
    "updated_at": "2020-01-09T05:00:14.000Z"\
  },\
  {\
    "id": 674898,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 15003,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2015-02-26T20:09:36.000Z",\
    "updated_at": "2019-03-12T07:32:31.000Z"\
  },\
  {\
    "id": 734037,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 16829,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 17995,\
      "name": "forcencrypt.email"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2016-06-20T19:25:04.000Z",\
    "updated_at": "2019-03-12T07:37:39.000Z"\
  },\
  {\
    "id": 38517,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1075,\
      "name": "mailprotectorupdate.biz user group"\
    },\
    "domain": {\
      "id": 1483,\
      "name": "mailprotectorupdate.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:29:29.000Z",\
    "updated_at": "2012-08-02T21:34:09.000Z"\
  },\
  {\
    "id": 38523,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1077,\
      "name": "mailprotectorupdate.net user group"\
    },\
    "domain": {\
      "id": 1485,\
      "name": "mailprotectorupdate.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:30:13.000Z",\
    "updated_at": "2012-08-02T21:34:07.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":289,"total_pages":12,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"048ceba96b7c2232c56755f84f5f02bd"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

53e2f9e8-0672-4f54-8fed-a9bfe6a1ee51

X-Runtime

2.801708

Transfer-Encoding

chunked

Managers

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Managers

emailservice.io/api/v1/resellers/{{reseller_id}}/managers

Get all managers belonging to a reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Managers

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/managers' \
--header 'Authorization: Bearer {{your_api_key_here}}'

Example Response

  • Body
  • Headers (0)

No response body

This request doesn't return any response body

No response headers

This request doesn't return any response headers

POSTCreate Manager for Reseller

emailservice.io/api/v1/resellers/{{reseller_id}}/managers

Create a new manager belonging to a reseller. Note that roles cannot yet be added through the API and will need to be added manually via the console interface for the manager account to have an effective role.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"first_name": "FirstName",
	"last_name": "LastName",
	"email": "[email protected]",
	"username": "username",
	"password": "password"
}

Example Request

Create Manager for Reseller

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/managers' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"first_name": "FirstName",
	"last_name": "LastName",
	"email": "[email protected]",
	"username": "username",
	"password": "password"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 14382,
  "name": "FirstName LastName",
  "username": "username",
  "email": "[email protected]",
  "roles": []
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/managers/14382

Content-Type

application/json; charset=utf-8

ETag

W/"8fe78e47ef3d236f9e9eaf42887f51cc"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

80ddf828-af53-4ac7-bb17-69b640b42cd9

X-Runtime

5.749278

Transfer-Encoding

chunked

Allow/Block Rules

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Allow/Block Rules

emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules

Retrieve a list of block rules belonging to a reseller. Rules returned belong directly to the reseller and any rules nested under customers domains, user groups, or users under the reseller will not be retrieved.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Allow/Block Rules

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 2445353,\
    "entity": {\
      "id": 188,\
      "entity_type": "Account",\
      "name": "Mailprotector Direct (old)"\
    },\
    "value": "domain.com",\
    "rule_type": "Allow"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"e0c45b0655f2eb65b7080c551c2307da"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

0189d3f9-6b9b-4754-9ce6-bba31a6777d7

X-Runtime

0.569800

Transfer-Encoding

chunked

POSTPost Reseller Allow/Block Rule

emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules

Create a new allow or block rule for the reseller. Rules created here will apply to all customers, domains, user groups, and users under the reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"value": "[email protected]",
	"rule_type": "block"
}

Example Request

Post Reseller Allow/Block Rule

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"value": "[email protected]",
	"rule_type": "block"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 2445354,
  "entity": {
    "id": 188,
    "entity_type": "Account",
    "name": "Mailprotector Direct (old)"
  },
  "value": "[email protected]",
  "rule_type": "block"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/allow_block_rules/2445354

Content-Type

application/json; charset=utf-8

ETag

W/"d86f0beef94e38748e6817fddd8a8e89"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

d2375e28-fc49-4437-bff4-913b943fbc7e

X-Runtime

4.279809

Transfer-Encoding

chunked

DELETEDelete Allow/Block Rule

emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}

Delete an allow or block rule.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Allow/Block Rule

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

f49f9830-b6c1-4dca-bfc3-7e6ea2a13305

X-Runtime

0.243252

Configuration

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Configuration

emailservice.io/api/v1/resellers/{{reseller_id}}/configuration

Get the active configuration for a reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Configuration

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "configuration": {
    "region": {
      "locale": "en",
      "time_zone": "Eastern Time (US & Canada)"
    },
    "billing": {
      "cc_addresses": []
    },
    "branding": {
      "subdomain": null,
      "logo_filename": null,
      "icon_filename": null,
      "from_email": null,
      "from_name": null,
      "prefix": "console",
      "guide_from_first_name": null,
      "guide_from_last_name": null,
      "guide_from_email": null,
      "support_url": null
    },
    "permissions": {
      "messages": {
        "allow_spam_release": true,
        "allow_policy_release": true,
        "allow_virus_release": true,
        "allow_feed": true
      },
      "console": {
        "allow_console_access": true,
        "allow_user_management_of_allow_block": true,
        "allow_user_management_of_content_rules": null,
        "allow_user_management_of_quarantine_preferences": true,
        "allow_user_management_of_spam_tolerance": true
      }
    },
    "notifications": {
      "link_hours_until_expiration": 72,
      "link_max_logins": 3,
      "schedule": {
        "enabled": false,
        "start_hour": 8,
        "end_hour": 18,
        "days_of_week": [\
          2,\
          3,\
          4,\
          5,\
          6\
        ]
      }
    },
    "messages": {
      "review": {
        "enabled": true,
        "interval": 3,
        "start_hour": 8,
        "end_hour": 17
      },
      "visibility": {
        "threshold": 1000
      }
    },
    "user_sync": {
      "move_users": false
    }
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"44ef24df0a98083c59491868e266f437"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

4f99b4fa-47d3-4210-90d9-a50070a3343e

X-Runtime

8.938199

Transfer-Encoding

chunked

PUTEdit Reseller Configuration

emailservice.io/api/v1/resellers/{{reseller_id}}/configuration

Edit the configuration of an existing reseller. Fields not supplied will not be overwritten.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"permissions": {
		"messages": {
			"allow_spam_release": false
		}
	}
}

Example Request

Edit Reseller Configuration

curl

curl --location -g --request PUT 'emailservice.io/api/v1/resellers/{{reseller_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"permissions": {
		"messages": {
			"allow_spam_release": false
		}
	}
}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "region": {
    "locale": "en",
    "time_zone": "Eastern Time (US & Canada)"
  },
  "billing": {
    "cc_addresses": []
  },
  "branding": {
    "subdomain": null,
    "logo_filename": null,
    "icon_filename": null,
    "from_email": null,
    "from_name": null,
    "prefix": "console",
    "guide_from_first_name": null,
    "guide_from_last_name": null,
    "guide_from_email": null,
    "support_url": null
  },
  "permissions": {
    "messages": {
      "allow_spam_release": false,
      "allow_policy_release": true,
      "allow_virus_release": true,
      "allow_feed": true
    },
    "console": {
      "allow_console_access": true,
      "allow_user_management_of_allow_block": true,
      "allow_user_management_of_content_rules": null,
      "allow_user_management_of_quarantine_preferences": true,
      "allow_user_management_of_spam_tolerance": true
    }
  },
  "notifications": {
    "link_hours_until_expiration": 72,
    "link_max_logins": 3,
    "schedule": {
      "enabled": false,
      "start_hour": 8,
      "end_hour": 18,
      "days_of_week": [\
        2,\
        3,\
        4,\
        5,\
        6\
      ]
    }
  },
  "messages": {
    "review": {
      "enabled": true,
      "interval": 3,
      "start_hour": 8,
      "end_hour": 17
    },
    "visibility": {
      "threshold": 1000
    }
  },
  "user_sync": {
    "move_users": false
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"bcc8ac00687b33ccbbfba38c5d3177a8"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

314a2d1b-dd59-48f0-86b0-36fc97e70898

X-Runtime

5.920647

Transfer-Encoding

chunked

Statements

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Statements

emailservice.io/api/v1/resellers/{{reseller_id}}/statements

Get a list of statements belonging to a reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Statements

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/statements' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 3000545,\
    "amount": 1087.79,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2016-10-10",\
    "ending_date": "2016-11-09",\
    "billing_date": "2016-11-09",\
    "due_date": "2016-11-24"\
  },\
  {\
    "id": 3000726,\
    "amount": 1096.67,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2016-11-10",\
    "ending_date": "2016-12-09",\
    "billing_date": "2016-12-09",\
    "due_date": "2016-12-24"\
  },\
  {\
    "id": 3001272,\
    "amount": 1103.03,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2016-12-10",\
    "ending_date": "2017-01-09",\
    "billing_date": "2017-01-09",\
    "due_date": "2017-02-24"\
  },\
  {\
    "id": 3001334,\
    "amount": 1147.83,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-01-10",\
    "ending_date": "2017-02-09",\
    "billing_date": "2017-02-09",\
    "due_date": "2017-02-24"\
  },\
  {\
    "id": 3002399,\
    "amount": 1172.06,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-02-10",\
    "ending_date": "2017-03-09",\
    "billing_date": "2017-03-09",\
    "due_date": "2017-05-01"\
  },\
  {\
    "id": 3002884,\
    "amount": 1179.74,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-03-10",\
    "ending_date": "2017-04-09",\
    "billing_date": "2017-04-09",\
    "due_date": "2017-04-24"\
  },\
  {\
    "id": 3003356,\
    "amount": 1180.98,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-04-10",\
    "ending_date": "2017-05-09",\
    "billing_date": "2017-05-09",\
    "due_date": "2017-05-24"\
  },\
  {\
    "id": 3003823,\
    "amount": 1195.02,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-05-10",\
    "ending_date": "2017-06-09",\
    "billing_date": "2017-06-09",\
    "due_date": "2017-06-24"\
  },\
  {\
    "id": 3004290,\
    "amount": 1203.18,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-06-10",\
    "ending_date": "2017-07-09",\
    "billing_date": "2017-07-09",\
    "due_date": "2017-07-24"\
  },\
  {\
    "id": 3004761,\
    "amount": 1209.75,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-07-10",\
    "ending_date": "2017-08-09",\
    "billing_date": "2017-08-09",\
    "due_date": "2017-08-24"\
  },\
  {\
    "id": 3005227,\
    "amount": 1227.21,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-08-10",\
    "ending_date": "2017-09-09",\
    "billing_date": "2017-09-09",\
    "due_date": "2017-09-24"\
  },\
  {\
    "id": 3005697,\
    "amount": 1186.45,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-09-10",\
    "ending_date": "2017-10-09",\
    "billing_date": "2017-10-09",\
    "due_date": "2017-10-24"\
  },\
  {\
    "id": 3006178,\
    "amount": 1236.37,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-10-10",\
    "ending_date": "2017-11-09",\
    "billing_date": "2017-11-09",\
    "due_date": "2017-11-24"\
  },\
  {\
    "id": 3006667,\
    "amount": 1329.36,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-11-10",\
    "ending_date": "2017-12-09",\
    "billing_date": "2017-12-09",\
    "due_date": "2017-12-24"\
  },\
  {\
    "id": 3007170,\
    "amount": 1339.48,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-12-10",\
    "ending_date": "2018-01-09",\
    "billing_date": "2018-01-09",\
    "due_date": "2018-01-24"\
  },\
  {\
    "id": 3007674,\
    "amount": 1335.55,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-01-10",\
    "ending_date": "2018-02-09",\
    "billing_date": "2018-02-09",\
    "due_date": "2018-02-24"\
  },\
  {\
    "id": 3008210,\
    "amount": 1332.82,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-02-10",\
    "ending_date": "2018-03-09",\
    "billing_date": "2018-03-09",\
    "due_date": "2018-03-24"\
  },\
  {\
    "id": 3008683,\
    "amount": 1372.93,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-03-10",\
    "ending_date": "2018-04-09",\
    "billing_date": "2018-04-09",\
    "due_date": "2018-04-24"\
  },\
  {\
    "id": 3009197,\
    "amount": 1212.32,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-04-10",\
    "ending_date": "2018-05-09",\
    "billing_date": "2018-05-09",\
    "due_date": "2018-05-24"\
  },\
  {\
    "id": 3009705,\
    "amount": 1291.2,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-05-10",\
    "ending_date": "2018-06-09",\
    "billing_date": "2018-06-09",\
    "due_date": "2018-06-24"\
  },\
  {\
    "id": 3010215,\
    "amount": 1311.52,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-06-10",\
    "ending_date": "2018-07-09",\
    "billing_date": "2018-07-09",\
    "due_date": "2018-07-24"\
  },\
  {\
    "id": 3010726,\
    "amount": 1335.87,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-07-10",\
    "ending_date": "2018-08-09",\
    "billing_date": "2018-08-09",\
    "due_date": "2018-08-24"\
  },\
  {\
    "id": 3011238,\
    "amount": 1355.33,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-08-10",\
    "ending_date": "2018-09-09",\
    "billing_date": "2018-09-09",\
    "due_date": "2018-09-24"\
  },\
  {\
    "id": 3011755,\
    "amount": 1415.85,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-09-10",\
    "ending_date": "2018-10-09",\
    "billing_date": "2018-10-09",\
    "due_date": "2018-10-24"\
  },\
  {\
    "id": 3012281,\
    "amount": 1377.38,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-10-10",\
    "ending_date": "2018-11-09",\
    "billing_date": "2018-11-09",\
    "due_date": "2018-11-24"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":37,"total_pages":2,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"3b285c388cec042d315a797b7a0c7b87"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

42235956-60c8-4ff7-b815-4df011c3705c

X-Runtime

5.044796

Transfer-Encoding

chunked

Logs

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Logs

emailservice.io/api/v1/resellers/{{reseller_id}}/logs

Get the logs belonging to domains under a reseller. Refer to the "Filtering Logs" section at the top of the page for more information on filtering the results.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Logs

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/logs' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": "c48a8a4f-44f3-43a2-bc12-04915247123f",\
    "uuid": "c48a8a4f-44f3-43a2-bc12-04915247123f",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.22.79.245",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:36.645+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-7.outbound.emailsrv.net",\
    "ptr": "otransport-7.outbound.emailsrv.net",\
    "ip": "52.22.79.245",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "b432104d-244c-466d-aa80-61ed25a5929f",\
    "uuid": "b432104d-244c-466d-aa80-61ed25a5929f",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.173.10.57",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:36.528+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-21.outbound.emailsrv.net",\
    "ptr": "otransport-21.outbound.emailsrv.net",\
    "ip": "54.173.10.57",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "49c9a03e-eae9-4b8c-b269-1d0b7a6e4077",\
    "uuid": "49c9a03e-eae9-4b8c-b269-1d0b7a6e4077",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.84.14.167",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:36.520+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-4.outbound.emailsrv.net",\
    "ptr": "otransport-4.outbound.emailsrv.net",\
    "ip": "54.84.14.167",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "397dc9aa-2a3a-4489-8f8d-542780d23b64",\
    "uuid": "397dc9aa-2a3a-4489-8f8d-542780d23b64",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.173.10.57",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:36.361+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "otransport-21.outbound.emailsrv.net",\
    "ptr": "otransport-21.outbound.emailsrv.net",\
    "ip": "54.173.10.57",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "704334dd-92df-4b58-8820-b478058314c7",\
    "uuid": "704334dd-92df-4b58-8820-b478058314c7",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.22.79.245",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:36.360+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "otransport-7.outbound.emailsrv.net",\
    "ptr": "otransport-7.outbound.emailsrv.net",\
    "ip": "52.22.79.245",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "5d3a54e1-20f7-4872-af00-10537b122f03",\
    "uuid": "5d3a54e1-20f7-4872-af00-10537b122f03",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.84.14.167",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:36.289+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "otransport-4.outbound.emailsrv.net",\
    "ptr": "otransport-4.outbound.emailsrv.net",\
    "ip": "54.84.14.167",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "ce0440cb-5c67-432d-99ed-e671ed7b006c",\
    "uuid": "ce0440cb-5c67-432d-99ed-e671ed7b006c",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.1.62.31",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:35.798+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-12.outbound.emailsrv.net",\
    "ptr": "otransport-12.outbound.emailsrv.net",\
    "ip": "52.1.62.31",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "516991d8-37e0-49b1-b734-8b2493615d21",\
    "uuid": "516991d8-37e0-49b1-b734-8b2493615d21",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.1.62.31",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:35.566+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "otransport-12.outbound.emailsrv.net",\
    "ptr": "otransport-12.outbound.emailsrv.net",\
    "ip": "52.1.62.31",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "6c94c793-a796-4909-8aa3-cffdc207a6ca",\
    "uuid": "6c94c793-a796-4909-8aa3-cffdc207a6ca",\
    "sender": "[email protected]",\
    "from": "Presley <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "188.168.56.31",\
    "subject": "Feel harmony in marriage! Cialis.",\
    "user": {\
      "id": 686886,\
      "name": "info"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:58:32.808+00:00",\
    "results_data": [\
      "no_rdns",\
      "brbl",\
      "spamcop",\
      "sbl",\
      "spf_fail",\
      "reply_spf_fail",\
      "from_spf_fail",\
      "ss_spam",\
      "snake_oil"\
    ],\
    "rule_ids": [],\
    "helo": "titangroupna.com",\
    "ptr": "[188.168.56.31]",\
    "ip": "188.168.56.31",\
    "postfix_queue_id": "C7D9A8005A"\
  },\
  {\
    "id": "c74f6228-d2a0-40a6-8069-d8f5e8484fa7",\
    "uuid": "c74f6228-d2a0-40a6-8069-d8f5e8484fa7",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "34.194.188.63",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:57:14.319+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-22.outbound.emailsrv.net",\
    "ptr": "otransport-22.outbound.emailsrv.net",\
    "ip": "34.194.188.63",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "c857aaf9-8c77-452b-838d-c74eb6c78a26",\
    "uuid": "c857aaf9-8c77-452b-838d-c74eb6c78a26",\
    "sender": "[email protected]",\
    "from": "David Setzer <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "outbound",\
    "origin": "104.47.56.168",\
    "subject": "Ballast Point Reference Call",\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:57:10.758+00:00",\
    "results_data": [\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "NAM11-CO1-obe.outbound.protection.outlook.com",\
    "ptr": "mail-co1nam11lp2168.outbound.protection.outlook.com",\
    "ip": "104.47.56.168",\
    "postfix_queue_id": "D4DA8613C8"\
  },\
  {\
    "id": "a35c37b8-9b1a-4a53-8f1b-78d4360b5fbf",\
    "uuid": "a35c37b8-9b1a-4a53-8f1b-78d4360b5fbf",\
    "sender": "bounce-md_30378494.5e1374d6.v1-cff6d52fb3c646c792151a49a920ed11@mandrillapp.com",\
    "from": "PeopleKeep <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 152\
    },\
    "direction": "inbound",\
    "origin": "198.2.136.27",\
    "subject": "Please provide additional information for your reimbursement request.",\
    "user": {\
      "id": 812111,\
      "name": "mark.glowacz"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:56:39.468+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "bulk",\
      [\
        "sa_score",\
        1.3\
      ]\
    ],\
    "rule_ids": [],\
    "helo": "mail136-27.atl41.mandrillapp.com",\
    "ptr": "mail136-27.atl41.mandrillapp.com",\
    "ip": "198.2.136.27",\
    "postfix_queue_id": "1523F61165"\
  },\
  {\
    "id": "97b1f5c4-0280-4300-b50d-fda8448ce1ff",\
    "uuid": "97b1f5c4-0280-4300-b50d-fda8448ce1ff",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.7.80.136",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:56:15.902+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-28.outbound.emailsrv.net",\
    "ptr": "otransport-28.outbound.emailsrv.net",\
    "ip": "52.7.80.136",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "6378510c-bf6a-4338-b02a-bc812e5e5a2b",\
    "uuid": "6378510c-bf6a-4338-b02a-bc812e5e5a2b",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "35.169.41.199",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:56:15.213+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-27.outbound.emailsrv.net",\
    "ptr": "otransport-27.outbound.emailsrv.net",\
    "ip": "35.169.41.199",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "f6ce1488-25ae-4905-b376-7b983085f478",\
    "uuid": "f6ce1488-25ae-4905-b376-7b983085f478",\
    "sender": "[email protected]",\
    "from": "Confirmation Needed - ZippyLoan <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 540\
    },\
    "direction": "inbound",\
    "origin": "63.83.73.76",\
    "subject": "Considering a personal loan?",\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:56:06.151+00:00",\
    "results_data": [\
      "no_rdns",\
      "spf_none",\
      "from_spf_none",\
      "reply_spf_none",\
      "multiple_from_replyto",\
      "truncate",\
      "dbl_spam_domain"\
    ],\
    "rule_ids": [],\
    "helo": "lemures.you312.com",\
    "ptr": "[63.83.73.76]",\
    "ip": "63.83.73.76",\
    "postfix_queue_id": "7F45E61197"\
  },\
  {\
    "id": "43423de1-464f-4119-8d01-4e891238da8e",\
    "uuid": "43423de1-464f-4119-8d01-4e891238da8e",\
    "sender": "bounce-md_30378494.5e1374aa.v1-b53ab13b59b6419996cb70f1dab14d7c@mandrillapp.com",\
    "from": "PeopleKeep <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "198.2.136.27",\
    "subject": "Your expense has been verified",\
    "user": {\
      "id": 812111,\
      "name": "mark.glowacz"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:55:55.808+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "mail136-27.atl41.mandrillapp.com",\
    "ptr": "mail136-27.atl41.mandrillapp.com",\
    "ip": "198.2.136.27",\
    "postfix_queue_id": "982EF61329"\
  },\
  {\
    "id": "df68bc6a-b0fb-4b20-a1f7-4331d7e94a67",\
    "uuid": "df68bc6a-b0fb-4b20-a1f7-4331d7e94a67",\
    "sender": "[email protected]",\
    "from": "David Setzer <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "35.169.41.199",\
    "subject": "Re: Purchase request: Postman Pro",\
    "user": {\
      "id": 993175,\
      "name": "haleigh.kump"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:57.838+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "clean",\
      "38383:allow"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-27.outbound.emailsrv.net",\
    "ptr": "otransport-27.outbound.emailsrv.net",\
    "ip": "35.169.41.199",\
    "postfix_queue_id": "567956124B"\
  },\
  {\
    "id": "df68bc6a-b0fb-4b20-a1f7-4331d7e94a67",\
    "uuid": "df68bc6a-b0fb-4b20-a1f7-4331d7e94a67",\
    "sender": "[email protected]",\
    "from": "David Setzer <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "35.169.41.199",\
    "subject": "Re: Purchase request: Postman Pro",\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:57.838+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "clean",\
      "38383:allow"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-27.outbound.emailsrv.net",\
    "ptr": "otransport-27.outbound.emailsrv.net",\
    "ip": "35.169.41.199",\
    "postfix_queue_id": "567956124B"\
  },\
  {\
    "id": "ae765d80-0571-4353-a9f7-b24bec46b9a7",\
    "uuid": "ae765d80-0571-4353-a9f7-b24bec46b9a7",\
    "sender": "[email protected]",\
    "from": "David Setzer <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "outbound",\
    "origin": "104.47.38.50",\
    "subject": "Re: Purchase request: Postman Pro",\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:56.941+00:00",\
    "results_data": [\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "NAM02-BL2-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bl2nam02lp2050.outbound.protection.outlook.com",\
    "ip": "104.47.38.50",\
    "postfix_queue_id": "1F303613C9"\
  },\
  {\
    "id": "ae765d80-0571-4353-a9f7-b24bec46b9a7",\
    "uuid": "ae765d80-0571-4353-a9f7-b24bec46b9a7",\
    "sender": "[email protected]",\
    "from": "David Setzer <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "outbound",\
    "origin": "104.47.38.50",\
    "subject": "Re: Purchase request: Postman Pro",\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:56.941+00:00",\
    "results_data": [\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "NAM02-BL2-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bl2nam02lp2050.outbound.protection.outlook.com",\
    "ip": "104.47.38.50",\
    "postfix_queue_id": "1F303613C9"\
  },\
  {\
    "id": "4f7b0d07-09db-4ff7-8203-c7918662b264",\
    "uuid": "4f7b0d07-09db-4ff7-8203-c7918662b264",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "34.237.235.151",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:50.314+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-29.outbound.emailsrv.net",\
    "ptr": "otransport-29.outbound.emailsrv.net",\
    "ip": "34.237.235.151",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "d422bb6c-033f-4eb5-887b-54bc087c883f",\
    "uuid": "d422bb6c-033f-4eb5-887b-54bc087c883f",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.0.70.91",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:30.516+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "transport-1.inbound.emailservice.io",\
    "ptr": "transport-1.inbound.emailservice.io",\
    "ip": "52.0.70.91",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "19feb039-4e98-476b-a637-45e8a3621641",\
    "uuid": "19feb039-4e98-476b-a637-45e8a3621641",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "52.1.140.110",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 847734,\
      "name": "spamservice"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:04.849+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-2.outbound.emailsrv.net",\
    "ptr": "otransport-2.outbound.emailsrv.net",\
    "ip": "52.1.140.110",\
    "postfix_queue_id": "ECBCB61274"\
  },\
  {\
    "id": "390da527-126c-4662-9829-6963abe4fa59",\
    "uuid": "390da527-126c-4662-9829-6963abe4fa59",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "52.1.23.3",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 847734,\
      "name": "spamservice"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:03.258+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-1.outbound.emailsrv.net",\
    "ptr": "otransport-1.outbound.emailsrv.net",\
    "ip": "52.1.23.3",\
    "postfix_queue_id": "7ED6F80084"\
  },\
  {\
    "id": "dfda0592-74bc-403e-9e27-bc93902c069a",\
    "uuid": "dfda0592-74bc-403e-9e27-bc93902c069a",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "52.22.79.245",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 269891,\
      "name": "naspam"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:03.256+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-7.outbound.emailsrv.net",\
    "ptr": "otransport-7.outbound.emailsrv.net",\
    "ip": "52.22.79.245",\
    "postfix_queue_id": "A693180072"\
  },\
  {\
    "id": "a9fd6cd5-9755-45e3-9abc-ee5a4f716075",\
    "uuid": "a9fd6cd5-9755-45e3-9abc-ee5a4f716075",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "18.214.85.87",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 269891,\
      "name": "naspam"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:02.924+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-23.outbound.emailsrv.net",\
    "ptr": "otransport-23.outbound.emailsrv.net",\
    "ip": "18.214.85.87",\
    "postfix_queue_id": "AC884C2B89"\
  },\
  {\
    "id": "dd01b6c5-742c-4c8e-a8f4-111b3f350e64",\
    "uuid": "dd01b6c5-742c-4c8e-a8f4-111b3f350e64",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "54.172.220.45",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:01.734+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-14.outbound.emailsrv.net",\
    "ptr": "otransport-14.outbound.emailsrv.net",\
    "ip": "54.172.220.45",\
    "postfix_queue_id": "45E468006C"\
  },\
  {\
    "id": "5abab90d-e8d8-482f-baaa-630f51fca0d7",\
    "uuid": "5abab90d-e8d8-482f-baaa-630f51fca0d7",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "107.23.53.12",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:01.649+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-24.outbound.emailsrv.net",\
    "ptr": "otransport-24.outbound.emailsrv.net",\
    "ip": "107.23.53.12",\
    "postfix_queue_id": "2257BC02A1"\
  },\
  {\
    "id": "0a73e277-5a23-4ec7-bdda-3ce9708c8e7a",\
    "uuid": "0a73e277-5a23-4ec7-bdda-3ce9708c8e7a",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "52.1.182.179",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 834193,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 15003,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:00.808+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-3.outbound.emailsrv.net",\
    "ptr": "otransport-3.outbound.emailsrv.net",\
    "ip": "52.1.182.179",\
    "postfix_queue_id": "6C11DC0290"\
  },\
  {\
    "id": "050df29b-be2b-41c0-94f0-b94ea6c6b9ea",\
    "uuid": "050df29b-be2b-41c0-94f0-b94ea6c6b9ea",\
    "sender": "[email protected]",\
    "from": "Robert Bronk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "54.173.10.57",\
    "subject": "FW: New Year Greetings from Flynaut",\
    "user": {\
      "id": 834193,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 15003,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:54:00.603+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-21.outbound.emailsrv.net",\
    "ptr": "otransport-21.outbound.emailsrv.net",\
    "ip": "54.173.10.57",\
    "postfix_queue_id": "3102DC0283"\
  },\
  {\
    "id": "0c3efbb1-f49f-4cd2-8590-6d7210909271",\
    "uuid": "0c3efbb1-f49f-4cd2-8590-6d7210909271",\
    "sender": "[email protected]",\
    "from": "Ben Hathaway <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "54.172.220.45",\
    "subject": "Purchase request: Postman Pro",\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:38.888+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-14.outbound.emailsrv.net",\
    "ptr": "otransport-14.outbound.emailsrv.net",\
    "ip": "54.172.220.45",\
    "postfix_queue_id": "BE8B961258"\
  },\
  {\
    "id": "0c3efbb1-f49f-4cd2-8590-6d7210909271",\
    "uuid": "0c3efbb1-f49f-4cd2-8590-6d7210909271",\
    "sender": "[email protected]",\
    "from": "Ben Hathaway <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "54.172.220.45",\
    "subject": "Purchase request: Postman Pro",\
    "user": {\
      "id": 993175,\
      "name": "haleigh.kump"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:38.888+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-14.outbound.emailsrv.net",\
    "ptr": "otransport-14.outbound.emailsrv.net",\
    "ip": "54.172.220.45",\
    "postfix_queue_id": "BE8B961258"\
  },\
  {\
    "id": "f64aa530-8b67-4e74-b18c-b34a9c8e8b49",\
    "uuid": "f64aa530-8b67-4e74-b18c-b34a9c8e8b49",\
    "sender": "[email protected]",\
    "from": "Ben Hathaway <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "outbound",\
    "origin": "104.47.56.171",\
    "subject": "Purchase request: Postman Pro",\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:38.448+00:00",\
    "results_data": [\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "NAM11-CO1-obe.outbound.protection.outlook.com",\
    "ptr": "mail-co1nam11lp2171.outbound.protection.outlook.com",\
    "ip": "104.47.56.171",\
    "postfix_queue_id": "0BCC2A2451"\
  },\
  {\
    "id": "f64aa530-8b67-4e74-b18c-b34a9c8e8b49",\
    "uuid": "f64aa530-8b67-4e74-b18c-b34a9c8e8b49",\
    "sender": "[email protected]",\
    "from": "Ben Hathaway <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "outbound",\
    "origin": "104.47.56.171",\
    "subject": "Purchase request: Postman Pro",\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:38.448+00:00",\
    "results_data": [\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "NAM11-CO1-obe.outbound.protection.outlook.com",\
    "ptr": "mail-co1nam11lp2171.outbound.protection.outlook.com",\
    "ip": "104.47.56.171",\
    "postfix_queue_id": "0BCC2A2451"\
  },\
  {\
    "id": "76280e70-8855-4c0f-a72f-73cefa2070aa",\
    "uuid": "76280e70-8855-4c0f-a72f-73cefa2070aa",\
    "sender": "bounce-md_30378494.5e137419.v1-ac2a717c81ca4ff091917d0431a2c8ed@mandrillapp.com",\
    "from": "PeopleKeep <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 132\
    },\
    "direction": "inbound",\
    "origin": "198.2.136.27",\
    "subject": "Your expense has been verified",\
    "user": {\
      "id": 812111,\
      "name": "mark.glowacz"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:30.008+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk",\
      [\
        "sa_score",\
        1.3\
      ]\
    ],\
    "rule_ids": [],\
    "helo": "mail136-27.atl41.mandrillapp.com",\
    "ptr": "mail136-27.atl41.mandrillapp.com",\
    "ip": "198.2.136.27",\
    "postfix_queue_id": "8C518611D5"\
  },\
  {\
    "id": "66392df2-3937-4a68-83e0-6e964a609c90",\
    "uuid": "66392df2-3937-4a68-83e0-6e964a609c90",\
    "sender": "0100016f7bfd2490-c835fd4e-63b8-4dea-9bd5-1afa603e79cc-000000@ses.bracket.email",\
    "from": "\"George Philipose [Bracket]\" <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 20\
    },\
    "direction": "inbound",\
    "origin": "54.240.32.175",\
    "subject": "New secure reply: [Re: Diligence Follow-Up Questions]",\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:05.779+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "clean",\
      "allow:sender"\
    ],\
    "rule_ids": [\
      132799\
    ],\
    "helo": "a32-175.smtp-out.amazonses.com",\
    "ptr": "a32-175.smtp-out.amazonses.com",\
    "ip": "54.240.32.175",\
    "postfix_queue_id": "8D1EA61221"\
  },\
  {\
    "id": "d3d068f7-14fe-430f-903b-dbf4b33a6c6f",\
    "uuid": "d3d068f7-14fe-430f-903b-dbf4b33a6c6f",\
    "sender": "0100016f7bfd2427-6b06769d-9fa6-48dd-9780-69fd8602eff6-000000@ses.bracket.email",\
    "from": "\"George Philipose [Bracket]\" <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 64\
    },\
    "direction": "inbound",\
    "origin": "54.240.32.175",\
    "subject": "New secure reply: [Re: Diligence Follow-Up Questions]",\
    "user": {\
      "id": 1119537,\
      "name": "kent.elmer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:05.744+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "clean",\
      [\
        "sa_score",\
        1.1\
      ]\
    ],\
    "rule_ids": [\
      132799\
    ],\
    "helo": "a32-175.smtp-out.amazonses.com",\
    "ptr": "a32-175.smtp-out.amazonses.com",\
    "ip": "54.240.32.175",\
    "postfix_queue_id": "625FF61718"\
  },\
  {\
    "id": "dfa0e8ef-c180-40c8-bd1f-d3076ba1f3ae",\
    "uuid": "dfa0e8ef-c180-40c8-bd1f-d3076ba1f3ae",\
    "sender": "0100016f7bfd21ed-1635f725-dc50-4ed4-ba54-91835ee777da-000000@ses.bracket.email",\
    "from": "\"George Philipose [Bracket]\" <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 64\
    },\
    "direction": "inbound",\
    "origin": "54.240.32.175",\
    "subject": "New secure reply: [Re: Diligence Follow-Up Questions]",\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:53:05.318+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "clean",\
      [\
        "sa_score",\
        1.1\
      ]\
    ],\
    "rule_ids": [\
      132799\
    ],\
    "helo": "a32-175.smtp-out.amazonses.com",\
    "ptr": "a32-175.smtp-out.amazonses.com",\
    "ip": "54.240.32.175",\
    "postfix_queue_id": "DE88E616B3"\
  },\
  {\
    "id": "13078e92-550d-431a-90c1-dddcff581f00",\
    "uuid": "13078e92-550d-431a-90c1-dddcff581f00",\
    "sender": null,\
    "from": "[email protected]",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "54.240.14.86",\
    "subject": "Delivery Status Notification (Failure)",\
    "user": {\
      "id": 825400,\
      "name": "noreply"\
    },\
    "user_group": {\
      "id": 18925,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 20043,\
      "name": "bracket.email"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:52:54.724+00:00",\
    "results_data": [\
      "spf_none",\
      "from_spf_pass",\
      "clean"\
    ],\
    "rule_ids": [\
      106101\
    ],\
    "helo": "a14-86.smtp-out.amazonses.com",\
    "ptr": "a14-86.smtp-out.amazonses.com",\
    "ip": "54.240.14.86",\
    "postfix_queue_id": "74AFA6116D"\
  },\
  {\
    "id": "0577f557-1086-4af5-a7c3-40bf304f2801",\
    "uuid": "0577f557-1086-4af5-a7c3-40bf304f2801",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.84.246.51",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:52:49.973+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-5.outbound.emailsrv.net",\
    "ptr": "otransport-5.outbound.emailsrv.net",\
    "ip": "54.84.246.51",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "2c9df7d4-dbdd-41d9-af7b-6b43c3c7f748",\
    "uuid": "2c9df7d4-dbdd-41d9-af7b-6b43c3c7f748",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.84.14.167",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:52:44.869+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-4.outbound.emailsrv.net",\
    "ptr": "otransport-4.outbound.emailsrv.net",\
    "ip": "54.84.14.167",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "d978cf60-d165-40be-8d34-762125536c45",\
    "uuid": "d978cf60-d165-40be-8d34-762125536c45",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "18.214.85.87",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:52:40.950+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-23.outbound.emailsrv.net",\
    "ptr": "otransport-23.outbound.emailsrv.net",\
    "ip": "18.214.85.87",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "87a035f7-1273-4cc5-8feb-d411de6c91c9",\
    "uuid": "87a035f7-1273-4cc5-8feb-d411de6c91c9",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.5.166.138",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:52:39.589+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-18.outbound.emailsrv.net",\
    "ptr": "otransport-18.outbound.emailsrv.net",\
    "ip": "52.5.166.138",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "8dc7fe4b-5f08-494f-b8a0-38082b28c2b6",\
    "uuid": "8dc7fe4b-5f08-494f-b8a0-38082b28c2b6",\
    "sender": "[email protected]",\
    "from": "Isabel Ellis <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "40.92.74.22",\
    "subject": null,\
    "user": {\
      "id": 662400,\
      "name": "console"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:52:32.606+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "EUR04-DB3-obe.outbound.protection.outlook.com",\
    "ptr": "mail-oln040092074022.outbound.protection.outlook.com",\
    "ip": "40.92.74.22",\
    "postfix_queue_id": "6737BC2B79"\
  },\
  {\
    "id": "51584a63-421e-45c1-84e7-1361afd7152b",\
    "uuid": "51584a63-421e-45c1-84e7-1361afd7152b",\
    "sender": "bounce-md_30378494.5e1373cd.v1-7e57ab2c199d4e5dbe3b903fe3a8ab64@mandrillapp.com",\
    "from": "PeopleKeep <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 100\
    },\
    "direction": "inbound",\
    "origin": "198.2.136.27",\
    "subject": "Please provide additional information for your reimbursement request.",\
    "user": {\
      "id": 812111,\
      "name": "mark.glowacz"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:52:15.008+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "mail136-27.atl41.mandrillapp.com",\
    "ptr": "mail136-27.atl41.mandrillapp.com",\
    "ip": "198.2.136.27",\
    "postfix_queue_id": "BA58EC00F7"\
  },\
  {\
    "id": "8a0407d3-d2e6-476c-9b4c-bda272fda4ed",\
    "uuid": "8a0407d3-d2e6-476c-9b4c-bda272fda4ed",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.0.74.211",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:51:03.564+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "transport-3.inbound.emailservice.io",\
    "ptr": "transport-3.inbound.emailservice.io",\
    "ip": "52.0.74.211",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "7d92396d-392c-46d2-9282-8f02e91d49fd",\
    "uuid": "7d92396d-392c-46d2-9282-8f02e91d49fd",\
    "sender": "bounce-md_30378494.5e137379.v1-2bbd184b82d04ec385d931a9cba7a00d@mandrillapp.com",\
    "from": "PeopleKeep <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 100\
    },\
    "direction": "inbound",\
    "origin": "198.2.187.7",\
    "subject": "Please provide additional information for your reimbursement request.",\
    "user": {\
      "id": 812111,\
      "name": "mark.glowacz"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:50:49.970+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "mail187-7.suw11.mandrillapp.com",\
    "ptr": "mail187-7.suw11.mandrillapp.com",\
    "ip": "198.2.187.7",\
    "postfix_queue_id": "A086CC0295"\
  },\
  {\
    "id": "512cdb5a-0b4e-45df-af7c-151ec394bbb1",\
    "uuid": "512cdb5a-0b4e-45df-af7c-151ec394bbb1",\
    "sender": "bounce-md_30378494.5e13733c.v1-70909b2b6aea414eb7c42562de925835@mandrillapp.com",\
    "from": "PeopleKeep <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 80\
    },\
    "direction": "inbound",\
    "origin": "198.2.187.7",\
    "subject": "Your expense has been verified",\
    "user": {\
      "id": 812111,\
      "name": "mark.glowacz"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:49:49.302+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "mail187-7.suw11.mandrillapp.com",\
    "ptr": "mail187-7.suw11.mandrillapp.com",\
    "ip": "198.2.187.7",\
    "postfix_queue_id": "F1382C2A96"\
  },\
  {\
    "id": "ea65e060-d1ec-45c0-a08f-1cb2ade85b95",\
    "uuid": "ea65e060-d1ec-45c0-a08f-1cb2ade85b95",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "69.75.23.106",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:49:48.981+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "ap-exch2k16.avatarpartners.local",\
    "ptr": "mail.avatarpartners.com",\
    "ip": "69.75.23.106",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "8c91098c-4fa6-4fab-91a4-5c2efd6ae7e8",\
    "uuid": "8c91098c-4fa6-4fab-91a4-5c2efd6ae7e8",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.84.246.51",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-06T17:47:59.706+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-5.outbound.emailsrv.net",\
    "ptr": "otransport-5.outbound.emailsrv.net",\
    "ip": "54.84.246.51",\
    "postfix_queue_id": null\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"aef3435832f5ab5a2a3e10ebeea6d439"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

5342dccd-fcf1-450a-a079-799347be9148

X-Runtime

6.831352

Transfer-Encoding

chunked

Messages

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETReseller Messages

emailservice.io/api/v1/resellers/{{reseller_id}}/messages

Get messages from the quarantine of an entire reseller account. This includes the messages of all customers, domains, user groups and users under the reseller. Max page size of 50.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller Messages

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/messages' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": 1985056110,\
    "uuid": "4F03A4FF-7E36-489E-9F14-D7F95BB0EA2B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"sales\" <[email protected]>",\
    "from": "\"Keans Group Corp.\" <[email protected]>",\
    "cc": "",\
    "subject": "Re;Luminous collect",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38485,\
      "name": "sales"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T20:50:11.000Z"\
  },\
  {\
    "id": 1985012921,\
    "uuid": "4CEEA828-38FB-44CF-A86B-8451E5D556E5.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"info\" <[email protected]>",\
    "from": "\"Keans Group Corp.\" <[email protected]>",\
    "cc": "",\
    "subject": "Re;Luminous collect",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 740\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 682800,\
      "name": "info"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T18:18:14.000Z"\
  },\
  {\
    "id": 1987420093,\
    "uuid": "28E95B58-0820-4232-9A32-958FF0053DBE.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Evalyn\" <[email protected]>",\
    "from": "\"Dahlia\" <[email protected]>",\
    "cc": "",\
    "subject": "Pay less get a real treasure! Order outstanding Levitra!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:26:18.000Z"\
  },\
  {\
    "id": 1987418962,\
    "uuid": "FD14FAF3-9CB1-4F65-A0AB-411F4C7D957D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Natalie Jones <[email protected]>",\
    "cc": "",\
    "subject": "Building on Serverless for Cost Efficiency and Performance",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:24:11.000Z"\
  },\
  {\
    "id": 1987418950,\
    "uuid": "790F645B-C35D-4011-B9C4-6DED5C95305D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Natalie Jones <[email protected]>",\
    "cc": "",\
    "subject": "Building on Serverless for Cost Efficiency and Performance",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 728356,\
      "name": "andy.barringer"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:24:09.000Z"\
  },\
  {\
    "id": 1987414416,\
    "uuid": "B21B372E-1E3C-4554-9BDF-F7F5AF80D5B7.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Brian Gillooly\" <[email protected]>",\
    "cc": "",\
    "subject": "What are your data center objectives for 2020?",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:14:59.000Z"\
  },\
  {\
    "id": 1987413826,\
    "uuid": "5A2090FF-0F8F-48E2-9F4D-D75BFE6E31AD.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Ayleen\" <[email protected]>",\
    "from": "\"Elsie\" <[email protected]>",\
    "cc": "",\
    "subject": "Sex only on special dates? Buy Viagra Soft! Enjoy life.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38445,\
      "name": "ricky.hayes"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:13:46.000Z"\
  },\
  {\
    "id": 1987413601,\
    "uuid": "2626825B-175C-4ECB-8C34-F0D73D42F751.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Stefanie\" <[email protected]>",\
    "from": "\"Francoise\" <[email protected]>",\
    "cc": "",\
    "subject": "Don't be ashamed to buy Cialis! Live full life.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 25,\
        "mode": "inbound",\
        "title": "Policy Block List",\
        "description": "This message came form an IP that is on the Policy Block List. The PBL is a DNSBL database of end-user IP address ranges which should not be delivering unauthenticated SMTP email to any Internet mail server except those provided for specifically by an ISP for that customer's use.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38473,\
      "name": "dhunt"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:13:16.000Z"\
  },\
  {\
    "id": 1987412163,\
    "uuid": "D8BDCF3C-9CC3-4164-9BFA-757E8C1C118D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-mc.us20_118362490.12124687-c421e14df4@mail180.suw12.mcsv.net",\
    "to": "<[email protected]>",\
    "from": "=?utf-8?Q?10X=20Consulting=20Group?= <[email protected]>",\
    "cc": "",\
    "subject": "Why Choose GIGA over a Traditional Data Center?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:10:18.000Z"\
  },\
  {\
    "id": 1987410386,\
    "uuid": "2CDAE67D-38AB-4030-801B-7711C99ACE2B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Mark McNabola <[email protected]>",\
    "cc": "",\
    "subject": "FW: Your thoughts on the game of golf are important",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 320\
    },\
    "results": [\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:06:28.000Z"\
  },\
  {\
    "id": 1987410389,\
    "uuid": "170E594C-768A-455A-84D4-640D719DC8F0.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Mark McNabola <[email protected]>",\
    "cc": "",\
    "subject": "FW: $3.1M Verdict: Animating Spinal Cord Injury After Premature Discharge",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 400\
    },\
    "results": [\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:06:27.000Z"\
  },\
  {\
    "id": 1987407572,\
    "uuid": "21898B44-B96E-4A88-8457-8DB5D78E0453.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Micah\" <[email protected]>",\
    "from": "\"Jordyn\" <[email protected]>",\
    "cc": "",\
    "subject": "Male enhancement overnight delivery",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T22:01:15.000Z"\
  },\
  {\
    "id": 1987400868,\
    "uuid": "95E4ACEA-2DB8-4A29-9A12-0D91EB61BA89.3",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Liana\" <[email protected]>",\
    "from": "\"Kassandra\" <[email protected]>",\
    "cc": "",\
    "subject": "It's going to be pleasantful time! Choose Cialis Soft.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38445,\
      "name": "ricky.hayes"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:47:45.000Z"\
  },\
  {\
    "id": 1987396834,\
    "uuid": "D9A994F3-43F4-4E12-8B55-C29A993D9ABF.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Calliope\" <[email protected]>",\
    "from": "\"Kinslee\" <[email protected]>",\
    "cc": "",\
    "subject": "The science of pleasure. Brand Viagra for real men.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 2,\
        "mode": "inbound",\
        "title": "ISP Reverse DNS",\
        "description": "The server that relayed the message was part of an ISP network which has a high frequency of spam.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 710337,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:41:29.000Z"\
  },\
  {\
    "id": 1987396719,\
    "uuid": "E64C5946-32BB-477D-A6A8-B0D2F4FE9E74.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Micah\" <[email protected]>",\
    "from": "\"Arianna\" <[email protected]>",\
    "cc": "",\
    "subject": "Levitra - a new better you. Purchase now.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38483,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:41:14.000Z"\
  },\
  {\
    "id": 1987395076,\
    "uuid": "7091F33B-CC60-4694-AAA4-D76F1FD4B71A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "return-aikens_a-aikens_a200106-9509014-0f5b36=2@mailer.prospectrmarketing.com",\
    "to": "[email protected]",\
    "from": "Pit Turenne <[email protected]>",\
    "cc": "",\
    "subject": "canada fishing",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 700\
    },\
    "results": [\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 64,\
        "mode": "inbound",\
        "title": "Spamware",\
        "description": "Email marketing services, bullet proof hosting, email databases.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:38:30.000Z"\
  },\
  {\
    "id": 1987393581,\
    "uuid": "D4A65117-F083-42AF-A481-94F67DF99195.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Juniper\" <[email protected]>",\
    "from": "\"Diana\" <[email protected]>",\
    "cc": "",\
    "subject": "Don't know what ED med to chose? Viagra Super Force fits all!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38477,\
      "name": "feedback"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:35:49.000Z"\
  },\
  {\
    "id": 1987393497,\
    "uuid": "4CA36BDE-CF53-4156-AD91-997CBC817B4A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Vivian\" <[email protected]>",\
    "from": "\"Reagan\" <[email protected]>",\
    "cc": "",\
    "subject": "Levitra Soft Tabs for boner to have and to hold!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 600\
    },\
    "results": [\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38477,\
      "name": "feedback"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:35:43.000Z"\
  },\
  {\
    "id": 1987390770,\
    "uuid": "539E80E3-014F-4726-BA1D-6805FCAAC33D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Arianna\" <[email protected]>",\
    "from": "\"Arianna\" <[email protected]>",\
    "cc": "",\
    "subject": "could you meet me today?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:31:14.000Z"\
  },\
  {\
    "id": 1987389954,\
    "uuid": "BA21B9D4-DD99-4A39-A941-9DE4E3E1CA1C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Matilda\" <[email protected]>",\
    "from": "\"Willa\" <[email protected]>",\
    "cc": "",\
    "subject": "The pleasure is where Cialis Super Active takes place. Buy here.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 660\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 682800,\
      "name": "info"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:30:12.000Z"\
  },\
  {\
    "id": 1987389555,\
    "uuid": "6515D5D5-221A-48C5-8F33-C7AC7F19939A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Joslyn\" <[email protected]>",\
    "from": "\"Whitney\" <[email protected]>",\
    "cc": "",\
    "subject": "Love knows no age. Kamagra Brand Oral Jelly helps to feel it.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 880\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 682800,\
      "name": "info"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:29:35.000Z"\
  },\
  {\
    "id": 1987383755,\
    "uuid": "6470A569-2282-4A2B-8907-71459FB2750A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Courtney\" <[email protected]>",\
    "from": "\"Ivanna\" <[email protected]>",\
    "cc": "",\
    "subject": "Forget about doctors. Enjoy better solution. Cialis Super Active.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 25,\
        "mode": "inbound",\
        "title": "Policy Block List",\
        "description": "This message came form an IP that is on the Policy Block List. The PBL is a DNSBL database of end-user IP address ranges which should not be delivering unauthenticated SMTP email to any Internet mail server except those provided for specifically by an ISP for that customer's use.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38473,\
      "name": "dhunt"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:20:25.000Z"\
  },\
  {\
    "id": 1987382057,\
    "uuid": "853BE1E0-8C79-4535-8986-8646FE7DBA40.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Hadlee\" <[email protected]>",\
    "from": "\"Giselle\" <[email protected]>",\
    "cc": "",\
    "subject": "Buy Levitra now! Prices gone mad!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 710337,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:17:40.000Z"\
  },\
  {\
    "id": 1987382112,\
    "uuid": "D10628DF-EF5F-47EC-9324-DC21D92A79ED.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Aubrey\" <[email protected]>",\
    "from": "\"Margot\" <[email protected]>",\
    "cc": "",\
    "subject": "Wild adventures all night long. Viagra Super Active.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38483,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:17:40.000Z"\
  },\
  {\
    "id": 1987380713,\
    "uuid": "67ABDDFF-65CD-4039-8EFB-4CB6EDE31DAB.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Last Republican President\" <[email protected]>",\
    "cc": "",\
    "subject": "Trump: America’s Last Republican President?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 440\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 67,\
        "mode": "inbound",\
        "title": "Insurance",\
        "description": "All kinds of insurance quotes & spam.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:15:31.000Z"\
  },\
  {\
    "id": 1987384155,\
    "uuid": "CBB4DB4A-C593-4371-8E9E-70DAFA7E2B2E.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": null,\
    "from": "\"=?UTF-8?Q?Dat?==?UTF-8?Q?ing?==?UTF-8?Q?.Si?==?UTF-8?Q?lve?==?UTF-8?Q?rSi?==?UTF-8?Q?ngl?==?UTF-8?Q?es.?==?UTF-8?Q?com?==?UTF-8?Q?=20Ad?=\" <[email protected]>",\
    "cc": "",\
    "subject": "love knows no age - meet compatible singles near you",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 760\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 61,\
        "mode": "inbound",\
        "title": "Porn/Adult",\
        "description": "Pornography, Dating, 'organ' augmentation.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:08:30.000Z"\
  },\
  {\
    "id": 1987370844,\
    "uuid": "FC675658-0522-4BE1-8CAD-0295B3E88B6D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "A6Dz49PNwSEuQtdDcSOsjqg==_1102382247786_wH1/[email protected]",\
    "to": "[email protected]",\
    "from": "\"Scott & Scott, LLP\" <[email protected]>",\
    "cc": "",\
    "subject": "Technology Law Update January 2020",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T21:00:31.000Z"\
  },\
  {\
    "id": 1987369886,\
    "uuid": "32B12A72-5316-4E00-A8FB-A08F22EEF530.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Scarlette\" <[email protected]>",\
    "from": "\"Ariel\" <[email protected]>",\
    "cc": "",\
    "subject": "Time for immodest proposals. Buy Viagra Super Force now!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38473,\
      "name": "dhunt"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:58:55.000Z"\
  },\
  {\
    "id": 1987366114,\
    "uuid": "54FD8278-97F6-4187-8E33-E2C8A52C02CE.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Alaya\" <[email protected]>",\
    "from": "\"Sage\" <[email protected]>",\
    "cc": "",\
    "subject": "Viagra Soft lives up it's reputation.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:52:20.000Z"\
  },\
  {\
    "id": 1987361044,\
    "uuid": "806B72D3-E403-4269-8A5B-17E18758024E.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Contacts Database <[email protected]>",\
    "cc": "",\
    "subject": "[WORLDWIDE E-MAILS DATABASE] limited offer: -40% discount",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38485,\
      "name": "sales"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:44:27.000Z"\
  },\
  {\
    "id": 1987358089,\
    "uuid": "F350EC67-FD06-4366-BE9E-0825AEC0E7B3.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Aubrielle\" <[email protected]>",\
    "from": "\"Bethany\" <[email protected]>",\
    "cc": "",\
    "subject": "Viagra Brand - your main equipment for love adventures.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:39:54.000Z"\
  },\
  {\
    "id": 1987358654,\
    "uuid": "050139FA-6F91-4E1E-BFD4-73F26BDE9466.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Rachael Hamilton\" <[email protected]>",\
    "cc": "",\
    "subject": "Bitcoins are driving people out of 9-5 Jobs - Here's Why!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 36,\
        "mode": "inbound",\
        "title": "Junk URL",\
        "description": "This message contained content matching our junk URL heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38389,\
      "name": "brett.hathaway"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:39:44.000Z"\
  },\
  {\
    "id": 1987356076,\
    "uuid": "9315D89E-904E-4C28-BDA5-722ED1AB6A72.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Catalina\" <[email protected]>",\
    "from": "\"Bridget\" <[email protected]>",\
    "cc": "",\
    "subject": "can you meet me",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38505,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 1073,\
      "name": "mailprotector.co.uk user group"\
    },\
    "domain": {\
      "id": 1481,\
      "name": "mailprotector.co.uk"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:36:39.000Z"\
  },\
  {\
    "id": 1987355344,\
    "uuid": "621BCCC2-4EB2-4DFE-A0EB-AD0140412228.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "\"Hilton Honors\" <[email protected]>",\
    "cc": "",\
    "subject": "See how fast you can earn a free night with Points Unlimited!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 68,\
        "mode": "inbound",\
        "title": "Travel",\
        "description": "All kinds of travel / vacation spam.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 827259,\
      "name": "brandy.hancock"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:35:34.000Z"\
  },\
  {\
    "id": 1987353575,\
    "uuid": "56F3F24D-2AE7-4CC5-A935-ED48848DCDD5.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Leia\" <[email protected]>",\
    "from": "\"Lara\" <[email protected]>",\
    "cc": "",\
    "subject": "The energy of bright feelings. Cialis Soft.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 147,\
        "mode": "inbound",\
        "title": "SPF Neutral",\
        "description": "The SPF record specifies explicitly that nothing can be said about validity.",\
        "weight": 0\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38457,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:32:40.000Z"\
  },\
  {\
    "id": 1987353070,\
    "uuid": "4F13524D-0396-41BC-AF15-4FD1B439B196.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Bailee\" <[email protected]>",\
    "from": "\"Charleigh\" <[email protected]>",\
    "cc": "",\
    "subject": "AU Viagra Super Force you won't wish to share a pill.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38489,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:32:00.000Z"\
  },\
  {\
    "id": 1987351737,\
    "uuid": "AB0739C8-4565-4B80-883B-B17A20D847BC.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Canvas Prints Advertisement\" <[email protected]>",\
    "cc": "",\
    "subject": "Get UNLIMITED 16 x 20 Custom Canvas Prints for $14.99",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 560\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:30:14.000Z"\
  },\
  {\
    "id": 1987350405,\
    "uuid": "26A1F95E-62F3-424C-BE62-CF5255A2C58A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Nia\" <[email protected]>",\
    "from": "\"Ryan\" <[email protected]>",\
    "cc": "",\
    "subject": "4 Ways to Make Easy Money",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 147,\
        "mode": "inbound",\
        "title": "SPF Neutral",\
        "description": "The SPF record specifies explicitly that nothing can be said about validity.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38505,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 1073,\
      "name": "mailprotector.co.uk user group"\
    },\
    "domain": {\
      "id": 1481,\
      "name": "mailprotector.co.uk"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:27:54.000Z"\
  },\
  {\
    "id": 1987346985,\
    "uuid": "7DBA87AE-38E8-483E-8E0F-6986A625D136.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Kiana\" <[email protected]>",\
    "from": "\"Kiana\" <[email protected]>",\
    "cc": "",\
    "subject": "I look at you and I cannot resist!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:22:21.000Z"\
  },\
  {\
    "id": 1987346864,\
    "uuid": "BE38EA52-3A1E-4DAE-B008-556B12D04B04.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Tinnitus911 Now\" <[email protected]>",\
    "cc": "",\
    "subject": "Sleep easy once again, end tinnitus now!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 740\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 67,\
        "mode": "inbound",\
        "title": "Insurance",\
        "description": "All kinds of insurance quotes & spam.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:22:07.000Z"\
  },\
  {\
    "id": 1987343787,\
    "uuid": "9942CCAC-BFDB-4F9A-8A6D-1215C04300C1.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "",\
    "to": "<[email protected]>",\
    "from": "<[email protected]>",\
    "cc": "",\
    "subject": "Undeliverable: Inbound Virus Quarantine Notification",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 60,\
        "mode": "inbound",\
        "title": "Malware",\
        "description": "The message contains potentially dangerous message content or known virii.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 56347,\
      "name": "noreply"\
    },\
    "user_group": {\
      "id": 25995,\
      "name": "CloudMail - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:17:30.000Z"\
  },\
  {\
    "id": 1987339938,\
    "uuid": "671683FE-9C41-421B-9975-2FF93D9BC8C7.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Brianna\" <[email protected]>",\
    "from": "\"Melania\" <[email protected]>",\
    "cc": "",\
    "subject": "Viagra Super Force - your main equipment for love adventures.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38477,\
      "name": "feedback"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:11:41.000Z"\
  },\
  {\
    "id": 1987335282,\
    "uuid": "70485C3D-BD07-4DFC-AF29-3BC1D6B6381A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "5311-53-121532-1231-kevin=milestonenetworks.com@mail.montoirnglogd.xyz",\
    "to": "<[email protected]>",\
    "from": "\"Curafen\" <[email protected]>",\
    "cc": "",\
    "subject": "The REAL reason why eye supplements don’t work",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 940\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 36,\
        "mode": "inbound",\
        "title": "Junk URL",\
        "description": "This message contained content matching our junk URL heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:05:23.000Z"\
  },\
  {\
    "id": 1987312409,\
    "uuid": "F08D0AEC-CC42-412D-9DE4-D30ECEFF9459.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "<[email protected]>",\
    "cc": "",\
    "subject": "Hígh dåňgěř. Yøuř åccøuňt wås åttåckěd.",\
    "direction": "inbound",\
    "quarantine_type": "virus",\
    "decision": "quarantine_virus",\
    "score": {\
      "score": 940\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 25,\
        "mode": "inbound",\
        "title": "Policy Block List",\
        "description": "This message came form an IP that is on the Policy Block List. The PBL is a DNSBL database of end-user IP address ranges which should not be delivering unauthenticated SMTP email to any Internet mail server except those provided for specifically by an ISP for that customer's use.",\
        "weight": 200\
      },\
      {\
        "id": 143,\
        "mode": "inbound",\
        "title": "Virus",\
        "description": "This message contained a virus payload or characteristics of a message carrying a virus.",\
        "weight": 0\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38477,\
      "name": "feedback"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T20:02:45.000Z"\
  },\
  {\
    "id": 1987330888,\
    "uuid": "02C2D0D1-AF92-4D5C-80A5-A72BF675C557.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-mc.us11_44738489.3568859-9c61c046bb@mail87.suw131.mcsv.net",\
    "to": "<[email protected]>",\
    "from": "=?utf-8?Q?Justine=20=E2=80=A2=20We=20Work=20Remotely?= <[email protected]>",\
    "cc": "",\
    "subject": "Save 15% on job postings all January long 🕺",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 280\
    },\
    "results": [\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T19:59:28.000Z"\
  },\
  {\
    "id": 1987328441,\
    "uuid": "0E3A5DD7-2F6A-4B7C-AA79-65E32E9997FA.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-131_HTML-105339659-3307476-10959666-44@bounce.email.slackhq.com",\
    "to": "<[email protected]>",\
    "from": "\"Slack\" <[email protected]>",\
    "cc": "",\
    "subject": "Slack API changelog: December-January 2019",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T19:55:51.000Z"\
  },\
  {\
    "id": 1987324690,\
    "uuid": "246641A0-443E-41D3-8C8A-2F0FE370D7AD.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Rachael Hamilton\" <[email protected]>",\
    "cc": "",\
    "subject": "Bitcoins are driving people out of 9-5 Jobs - Here's Why!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 36,\
        "mode": "inbound",\
        "title": "Junk URL",\
        "description": "This message contained content matching our junk URL heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38387,\
      "name": "billing"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T19:49:14.000Z"\
  },\
  {\
    "id": 1987323883,\
    "uuid": "80404D23-3F42-4CDB-A284-B2AFAA693E74.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Helena\" <[email protected]>",\
    "from": "\"Macy\" <[email protected]>",\
    "cc": "",\
    "subject": "AU Be ahead with progressive ED medications! Order Cialis Soft.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38489,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T19:48:46.000Z"\
  },\
  {\
    "id": 1987323847,\
    "uuid": "B7A523AE-5E1C-4617-9FEA-CCAE75EB4293.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Kallie\" <[email protected]>",\
    "from": "\"Adelyn\" <[email protected]>",\
    "cc": "",\
    "subject": "High quality for low price. It's not a trick, it's Cialis Brand!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38457,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T19:48:43.000Z"\
  },\
  {\
    "id": 1987323690,\
    "uuid": "DB0F926D-AFEC-42AC-BAE3-828CD5AA011F.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Aleah\" <[email protected]>",\
    "from": "\"Leona\" <[email protected]>",\
    "cc": "",\
    "subject": "Viagra Soft Tabs for your desire. Buy now and get discount!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 615906,\
      "name": "kevin"\
    },\
    "user_group": {\
      "id": 12972,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 14776,\
      "name": "milestonenetworks.com"\
    },\
    "customer": {\
      "id": 1987,\
      "name": "OCx Networks"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T19:48:33.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"19da220c4459529847c69f79baa58e20"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

2c751747-f348-445d-89bf-6f30cbb19dac

X-Runtime

22.467986

Transfer-Encoding

chunked

POSTRelease Message

emailservice.io/api/v1/messages/{{message_id}}/deliver

Release a message from the quarantine. The recipients field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}

Example Request

Release Message

curl

curl --location -g 'emailservice.io/api/v1/messages/{{message_id}}/deliver' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

e630abe8-ad9d-4ede-9c68-e88a74e273c7

X-Runtime

1.371039

POSTRelease Multiple Messages

emailservice.io/api/v1/resellers/{{reseller_id}}/messages/deliver_many

Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing all_selected: true will release all currently held messages from a reseller's quarantine.

Note: Message ID's provided in the payload that do not belong to a user under the reseller defined in the URL path will not be released, which will be evident in the request response.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}

Example Request

Release Multiple Messages

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/messages/deliver_many' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}'

200 OK

Example Response

  • Body
  • Headers (12)

json

{
  "delivered_messages": [\
    2015573173,\
    2015573567\
  ]
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"3f602713b4241cb2e3030443e7df8e91"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

bf0d4597-81f5-4c67-adc8-163cba6fb724

X-Runtime

1.106498

Transfer-Encoding

chunked

GETResellers

emailservice.io/api/v1/providers/{{provider_id}}/resellers

Get a list of resellers belonging to a provider. This is only available if the token provided has access to the provider whose resellers are being requested.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Resellers

curl

curl --location -g 'emailservice.io/api/v1/providers/{{provider_id}}/resellers' \
--header 'Authorization: Bearer {{your_api_key_here}}'

Example Response

  • Body
  • Headers (0)

No response body

This request doesn't return any response body

No response headers

This request doesn't return any response headers

GETReseller

emailservice.io/api/v1/resellers/{{reseller_id}}

Retrieve the information for a reseller account. Note that most API tokens will only have permission to pull their own reseller account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Reseller

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 188,
  "name": "Mailprotector Direct (old)",
  "provider": {
    "id": 65,
    "name": "United States"
  },
  "reseller": null,
  "created_at": "2010-05-13T18:08:25.000Z",
  "updated_at": "2014-05-13T23:27:51.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/resellers/188

Content-Type

application/json; charset=utf-8

ETag

W/"b09e05db9829f9856b2e3aafcdb67051"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

1046f6c5-bf95-4b03-a8cd-24fd4171e816

X-Runtime

3.742707

Transfer-Encoding

chunked

POSTCreate Reseller

emailservice.io/api/v1/providers/{{provider_id}}/resellers

Create a new reseller account. Only API tokens with provider-level permission may create a new reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "New reseller name",
	"email": "[email protected]"
}

Example Request

Create Reseller

curl

curl --location -g 'emailservice.io/api/v1/providers/{{provider_id}}/resellers' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"name": "New reseller name",
	"email": "[email protected]"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 16608,
  "name": "New reseller name",
  "provider": {
    "id": 65,
    "name": "United States"
  },
  "reseller": null,
  "created_at": "2020-01-03T18:21:54.000Z",
  "updated_at": "2020-01-03T18:21:54.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/resellers/16608

Content-Type

application/json; charset=utf-8

ETag

W/"3742ddf4284f25d335f8d733850b3fae"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

6fce21a5-6d79-4680-a081-8ffda37e5cbc

X-Runtime

5.219084

Transfer-Encoding

chunked

PUTEdit Reseller

emailservice.io/api/v1/resellers/{{reseller_id}}

Edit an existing reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "Different Reseller Name",
	"email": "[email protected]"
}

Example Request

Edit Reseller

curl

curl --location -g --request PUT 'emailservice.io/api/v1/resellers/{{reseller_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"name": "Different Reseller Name",
	"email": "[email protected]"
}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 188,
  "name": "Different Reseller Name",
  "provider": {
    "id": 65,
    "name": "United States"
  },
  "reseller": null,
  "created_at": "2010-05-13T18:08:25.000Z",
  "updated_at": "2020-01-03T19:36:59.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/resellers/188

Content-Type

application/json; charset=utf-8

ETag

W/"5729bc204157907cbc86f76060742602"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

568382ae-dbaf-42a3-9435-afe8c6e5201e

X-Runtime

2.065714

Transfer-Encoding

chunked

DELETEDelete Reseller

emailservice.io/api/v1/resellers/{{reseller_id}}

Deletes a reseller account and all account, domains, and users under it.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Reseller

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/resellers/{{reseller_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

e8772989-c0b1-41ce-8753-79bb9fa84d98

X-Runtime

4.075300

Customers

Retrieve, create, update, or delete customer accounts.

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

Domains

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Domains

emailservice.io/api/v1/customers/{{customer_id}}/domains

Get all domains under a customer.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Domains

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/domains' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 20043,\
    "name": "bracket.email",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2017-03-08T16:07:58.000Z",\
    "updated_at": "2017-05-31T09:14:35.000Z"\
  },\
  {\
    "id": 15650,\
    "name": "cloudmail.email",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2014-07-17T21:07:53.000Z",\
    "updated_at": "2015-09-21T03:06:29.000Z"\
  },\
  {\
    "id": 15288,\
    "name": "cloudmail.net",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2014-05-23T21:53:53.000Z",\
    "updated_at": "2015-09-21T03:05:34.000Z"\
  },\
  {\
    "id": 16370,\
    "name": "emailservice.io",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2015-02-26T20:00:18.000Z",\
    "updated_at": "2015-09-21T03:12:31.000Z"\
  },\
  {\
    "id": 17044,\
    "name": "exchange2016.mpdemo.net",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2015-10-28T15:29:53.000Z",\
    "updated_at": "2018-08-23T03:00:33.000Z"\
  },\
  {\
    "id": 17995,\
    "name": "forcencrypt.email",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2016-06-20T19:24:05.000Z",\
    "updated_at": "2016-06-22T09:12:28.000Z"\
  },\
  {\
    "id": 11744,\
    "name": "getcloudfilter.com",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2012-12-27T17:37:56.000Z",\
    "updated_at": "2016-11-17T09:07:08.000Z"\
  },\
  {\
    "id": 1489,\
    "name": "mailprotector.biz",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2010-08-23T19:31:22.000Z",\
    "updated_at": "2018-02-19T09:00:45.000Z"\
  },\
  {\
    "id": 1481,\
    "name": "mailprotector.co.uk",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2010-08-23T19:29:18.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 1473,\
    "name": "mailprotector.com",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2010-08-23T19:27:24.000Z",\
    "updated_at": "2018-08-23T02:00:48.000Z"\
  },\
  {\
    "id": 1477,\
    "name": "mailprotector.com.au",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2010-08-23T19:28:00.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 9073,\
    "name": "mailprotector.me",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2011-03-01T18:31:01.000Z",\
    "updated_at": "2016-04-28T09:04:09.000Z"\
  },\
  {\
    "id": 1483,\
    "name": "mailprotectorupdate.biz",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2010-08-23T19:29:25.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 1485,\
    "name": "mailprotectorupdate.net",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2010-08-23T19:30:08.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 28480,\
    "name": "new-domain.com",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 1,\
      "name": "Pending"\
    },\
    "parent": null,\
    "verification_token": "otFBZ1SvhceapIOOTiRxYr788GzVnY05ny0OvXyyi6Y=",\
    "address_discovery_enabled": true,\
    "created_at": "2019-12-27T21:47:02.000Z",\
    "updated_at": "2019-12-27T21:47:02.000Z"\
  },\
  {\
    "id": 27614,\
    "name": "newdomain2.com",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 1,\
      "name": "Pending"\
    },\
    "parent": null,\
    "verification_token": "JfqhMDi6OSOGmaTr1I/1j2KI2jQWjSl9ioy+5QPbKMA=",\
    "address_discovery_enabled": true,\
    "created_at": "2019-08-09T16:27:23.000Z",\
    "updated_at": "2019-08-09T16:27:23.000Z"\
  },\
  {\
    "id": 22214,\
    "name": "otransport-1.us-east-1.mailprotector.net",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2018-02-07T15:33:14.000Z",\
    "updated_at": "2018-02-08T09:28:21.000Z"\
  },\
  {\
    "id": 15652,\
    "name": "securestore.email",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2014-07-17T21:09:16.000Z",\
    "updated_at": "2015-09-21T03:06:29.000Z"\
  },\
  {\
    "id": 15648,\
    "name": "xtramail.email",\
    "account": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "address_discovery_enabled": false,\
    "created_at": "2014-07-17T21:03:52.000Z",\
    "updated_at": "2015-09-21T03:06:29.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":19,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"68c69971d8add6df446da4654bc06eb4"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

f1427cfe-6648-49c2-8ecb-5c487e4dc79c

X-Runtime

0.688008

Transfer-Encoding

chunked

POSTCreate Domain

emailservice.io/api/v1/customers/{{customer_id}}/domains

Create a domain under a customer.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "domain.com"
}

Example Request

Create Domain

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/domains' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name": "domain.com"
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 28482,
  "name": "domain.com",
  "account": {
    "id": 329,
    "name": "Different Customer Name"
  },
  "domain_status": {
    "id": 1,
    "name": "Pending"
  },
  "parent": null,
  "verification_token": "jdO5rWCKpUjlRDk13s/PVVtcGVHdPn5syBUrRLKlDkE=",
  "address_discovery_enabled": true,
  "created_at": "2020-01-09T19:00:07.000Z",
  "updated_at": "2020-01-09T19:00:07.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/28482

Content-Type

application/json; charset=utf-8

ETag

W/"2019f2dbe579831bb99a187031589393"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

812e1615-bd35-4094-9bfc-a2f830cf2b37

X-Runtime

2.113758

Transfer-Encoding

chunked

Users

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Users

emailservice.io/api/v1/customers/{{customer_id}}/users

Get all users belonging to a customer.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Users

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/users' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 883326,\
    "name": "abigail.thompson",\
    "parent": null,\
    "user_type": {\
      "id": 11,\
      "name": "Unlicensed User"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Abigail",\
    "last_name": "Thompson",\
    "created_at": "2017-10-06T18:31:17.000Z",\
    "updated_at": "2020-01-09T20:19:58.000Z"\
  },\
  {\
    "id": 1272459,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 29149,\
      "name": "Default"\
    },\
    "domain": {\
      "id": 29102,\
      "name": "emailsrv.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Mailprotector",\
    "last_name": "Abuse",\
    "created_at": "2020-01-03T17:59:11.000Z",\
    "updated_at": "2020-01-09T22:18:37.000Z"\
  },\
  {\
    "id": 38543,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:31:33.000Z",\
    "updated_at": "2020-01-09T08:00:07.000Z"\
  },\
  {\
    "id": 279309,\
    "name": "aca",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "ACA",\
    "last_name": "Email Addy",\
    "created_at": "2011-01-13T18:19:19.000Z",\
    "updated_at": "2020-01-09T08:00:42.000Z"\
  },\
  {\
    "id": 759339,\
    "name": "addressdiscovery",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 17596,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Address",\
    "last_name": "Discovery",\
    "created_at": "2016-10-14T20:28:09.000Z",\
    "updated_at": "2019-03-12T07:32:31.000Z"\
  },\
  {\
    "id": 768865,\
    "name": "addressdiscovery",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 15866,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 17044,\
      "name": "exchange2016.mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Address",\
    "last_name": "Discovery",\
    "created_at": "2016-11-04T18:19:14.000Z",\
    "updated_at": "2020-01-09T05:00:14.000Z"\
  },\
  {\
    "id": 674898,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 15003,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2015-02-26T20:09:36.000Z",\
    "updated_at": "2019-03-12T07:32:31.000Z"\
  },\
  {\
    "id": 734037,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 16829,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 17995,\
      "name": "forcencrypt.email"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2016-06-20T19:25:04.000Z",\
    "updated_at": "2019-03-12T07:37:39.000Z"\
  },\
  {\
    "id": 38517,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1075,\
      "name": "mailprotectorupdate.biz user group"\
    },\
    "domain": {\
      "id": 1483,\
      "name": "mailprotectorupdate.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:29:29.000Z",\
    "updated_at": "2012-08-02T21:34:09.000Z"\
  },\
  {\
    "id": 38523,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1077,\
      "name": "mailprotectorupdate.net user group"\
    },\
    "domain": {\
      "id": 1485,\
      "name": "mailprotectorupdate.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:30:13.000Z",\
    "updated_at": "2012-08-02T21:34:07.000Z"\
  },\
  {\
    "id": 628092,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 13540,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 15288,\
      "name": "cloudmail.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "CloudMail",\
    "last_name": "Admin",\
    "created_at": "2014-05-23T21:54:42.000Z",\
    "updated_at": "2019-03-12T07:30:00.000Z"\
  },\
  {\
    "id": 895646,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 18925,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 20043,\
      "name": "bracket.email"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Bracket",\
    "last_name": "Admin",\
    "created_at": "2017-11-13T19:29:14.000Z",\
    "updated_at": "2019-03-12T07:56:22.000Z"\
  },\
  {\
    "id": 643824,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 14004,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 15648,\
      "name": "xtramail.email"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2014-07-17T21:04:24.000Z",\
    "updated_at": "2019-03-12T07:30:41.000Z"\
  },\
  {\
    "id": 643826,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 14006,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 15650,\
      "name": "cloudmail.email"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2014-07-17T21:08:18.000Z",\
    "updated_at": "2019-03-12T07:30:41.000Z"\
  },\
  {\
    "id": 643828,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 14008,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 15652,\
      "name": "securestore.email"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2014-07-17T21:09:51.000Z",\
    "updated_at": "2019-03-12T07:30:41.000Z"\
  },\
  {\
    "id": 831283,\
    "name": "administrator",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2017-04-03T15:48:13.000Z",\
    "updated_at": "2020-01-09T03:00:22.000Z"\
  },\
  {\
    "id": 831293,\
    "name": "administrator",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1073,\
      "name": "mailprotector.co.uk user group"\
    },\
    "domain": {\
      "id": 1481,\
      "name": "mailprotector.co.uk"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2017-04-03T15:59:15.000Z",\
    "updated_at": "2017-04-03T15:59:15.000Z"\
  },\
  {\
    "id": 589780,\
    "name": "administrator",\
    "parent": null,\
    "user_type": {\
      "id": 8,\
      "name": "Shared"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2013-12-02T17:24:24.000Z",\
    "updated_at": "2019-06-08T00:19:20.000Z"\
  },\
  {\
    "id": 1114288,\
    "name": "admins",\
    "parent": null,\
    "user_type": {\
      "id": 3,\
      "name": "Mailing List"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Admins",\
    "last_name": "",\
    "created_at": "2019-03-12T15:41:28.000Z",\
    "updated_at": "2019-06-08T01:51:30.000Z"\
  },\
  {\
    "id": 38545,\
    "name": "alerts",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:31:33.000Z",\
    "updated_at": "2020-01-09T08:00:07.000Z"\
  },\
  {\
    "id": 985502,\
    "name": "alison.earley",\
    "parent": null,\
    "user_type": {\
      "id": 8,\
      "name": "Shared"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Alison",\
    "last_name": "Earley",\
    "created_at": "2018-05-11T15:31:29.000Z",\
    "updated_at": "2020-01-09T14:04:50.000Z"\
  },\
  {\
    "id": 688238,\
    "name": "alison.vyse",\
    "parent": null,\
    "user_type": {\
      "id": 7,\
      "name": "Equipment"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Alison",\
    "last_name": "Vyse",\
    "created_at": "2015-06-25T18:54:30.000Z",\
    "updated_at": "2019-06-08T00:22:12.000Z"\
  },\
  {\
    "id": 1055444,\
    "name": "alma.figueroa",\
    "parent": null,\
    "user_type": {\
      "id": 8,\
      "name": "Shared"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Alma",\
    "last_name": "Figueroa",\
    "created_at": "2018-10-25T19:35:51.000Z",\
    "updated_at": "2020-01-09T14:21:42.000Z"\
  },\
  {\
    "id": 1001916,\
    "name": "amy.wright.archive",\
    "parent": null,\
    "user_type": {\
      "id": 8,\
      "name": "Shared"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Amy",\
    "last_name": "Wright",\
    "created_at": "2018-06-29T18:20:26.000Z",\
    "updated_at": "2020-01-09T14:08:31.000Z"\
  },\
  {\
    "id": 945189,\
    "name": "andrew.gehrt",\
    "parent": null,\
    "user_type": {\
      "id": 8,\
      "name": "Shared"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Andrew",\
    "last_name": "Gehrt",\
    "created_at": "2018-02-23T16:20:33.000Z",\
    "updated_at": "2020-01-09T22:27:39.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":228,"total_pages":10,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"341cb863f0c0669a398c5fa5f899f35a"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

d5423f8c-332c-476e-b710-c7a1628b11d4

X-Runtime

0.705347

Transfer-Encoding

chunked

Managers

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Managers

emailservice.io/api/v1/customers/{{customer_id}}/managers

Get the managers belonging to a customer account. Managers that belong to the reseller above a customer are not returned in this request.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Managers

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/managers' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 903,\
    "name": "Mail Protector",\
    "username": "mpadmin",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 329,\
        "entity_type": "Account",\
        "entity_name": "Different Customer Name"\
      }\
    ]\
  },\
  {\
    "id": 905,\
    "name": "Mail Protector",\
    "username": "joe",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 1473,\
        "entity_type": "Domain",\
        "entity_name": "mailprotector.com"\
      }\
    ]\
  },\
  {\
    "id": 907,\
    "name": "Mail Protector",\
    "username": "joe_0",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 1489,\
        "entity_type": "Domain",\
        "entity_name": "mailprotector.biz"\
      }\
    ]\
  },\
  {\
    "id": 4687,\
    "name": "Tim Laporte",\
    "username": "tjsupport",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 329,\
        "entity_type": "Account",\
        "entity_name": "Different Customer Name"\
      }\
    ]\
  },\
  {\
    "id": 5039,\
    "name": "Mailprotector newsignups",\
    "username": "noreply",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 329,\
        "entity_type": "Account",\
        "entity_name": "Different Customer Name"\
      }\
    ]\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":5,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"dbe6f6119259fd23627ff8dd640efded"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

288e0697-e3f0-40a4-ab25-ecb9339de1c9

X-Runtime

1.644610

Transfer-Encoding

chunked

POSTCreate Customer Manager

emailservice.io/api/v1/customers/{{customer_id}}/managers

Create a new manager for a customer account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"first_name": "FirstName",
	"last_name": "LastName",
	"email": "[email protected]",
	"username": "CustomerManager",
	"password": "password"
}

Example Request

Create Customer Manager

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/managers' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"first_name": "FirstName",
	"last_name": "LastName",
	"email": "[email protected]",
	"username": "CustomerManager",
	"password": "password"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 14383,
  "name": "FirstName LastName",
  "username": "CustomerManager",
  "email": "[email protected]",
  "roles": []
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/managers/14383

Content-Type

application/json; charset=utf-8

ETag

W/"2f52038cbc5c71707a291cb532e1c920"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

57110a7c-ee52-49f9-92f0-b51a1e711cc1

X-Runtime

1.639669

Transfer-Encoding

chunked

Allow/Block Rules

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Allow/Block Rules

emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules

Get Allow/Block rules belonging to a customer. This does not include rules belonging to domains, user groups, or users under the customer. The rules belonging to the reseller above it are also omitted from the response.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Allow/Block Rules

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 2445355,\
    "entity": {\
      "id": 329,\
      "entity_type": "Account",\
      "name": "Different Customer Name"\
    },\
    "value": "blockdomain.com",\
    "rule_type": "Block"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"3e07d0e3a2c4507b6a992d10347e58a9"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

8cca7875-09c7-43cc-a47b-ca1ed6b5b306

X-Runtime

3.193787

Transfer-Encoding

chunked

POSTCreate Customer Allow/Block Rules

emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules

Create an allow or block rule belonging to a customer account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"value": "[email protected]",
	"rule_type": "block"
}

Example Request

Create Customer Allow/Block Rules

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"value": "[email protected]",
	"rule_type": "block"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 2445356,
  "entity": {
    "id": 329,
    "entity_type": "Account",
    "name": "Different Customer Name"
  },
  "value": "[email protected]",
  "rule_type": "block"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/allow_block_rules/2445356

Content-Type

application/json; charset=utf-8

ETag

W/"997f12eab10752ac0fa993e0a33e4e3f"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

ee057e1e-2d30-4384-b368-996e22bf8e36

X-Runtime

1.501175

Transfer-Encoding

chunked

DELETEDelete Allow/Block Rule

emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}

Delete an allow or block rule.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Allow/Block Rule

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

f49f9830-b6c1-4dca-bfc3-7e6ea2a13305

X-Runtime

0.243252

Configuration

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Configuration

emailservice.io/api/v1/customers/{{customer_id}}/configuration

Get the configuration for a customer account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Configuration

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "configuration": {
    "region": {
      "locale": "en",
      "time_zone": "Eastern Time (US & Canada)"
    },
    "billing": {
      "cc_addresses": []
    },
    "branding": {
      "subdomain": null,
      "logo_filename": null,
      "icon_filename": null,
      "from_email": null,
      "from_name": null,
      "prefix": "console",
      "guide_from_first_name": null,
      "guide_from_last_name": null,
      "guide_from_email": null,
      "support_url": null
    },
    "permissions": {
      "messages": {
        "allow_spam_release": false,
        "allow_policy_release": true,
        "allow_virus_release": true,
        "allow_feed": true
      },
      "console": {
        "allow_console_access": true,
        "allow_user_management_of_allow_block": true,
        "allow_user_management_of_content_rules": null,
        "allow_user_management_of_quarantine_preferences": true,
        "allow_user_management_of_spam_tolerance": true
      }
    },
    "notifications": {
      "link_hours_until_expiration": 72,
      "link_max_logins": 3,
      "schedule": {
        "enabled": false,
        "start_hour": 8,
        "end_hour": 18,
        "days_of_week": [\
          2,\
          3,\
          4,\
          5,\
          6\
        ]
      }
    },
    "messages": {
      "review": {
        "enabled": true,
        "interval": 3,
        "start_hour": 8,
        "end_hour": 17
      },
      "visibility": {
        "threshold": 1000
      }
    },
    "user_sync": {
      "move_users": false
    }
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"7e5b847fb82da0160f5e99c99ae6a23b"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

04164cde-ea4a-4828-857d-8a95b84d51a5

X-Runtime

2.250855

Transfer-Encoding

chunked

PUTEdit Customer Configuration

emailservice.io/api/v1/customers/{{customer_id}}/configuration

Edit the configuration for a customer account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"permissions": {
		"messages": {
			"allow_spam_release": true
		}
	}
}

Example Request

Edit Customer Configuration

curl

curl --location -g --request PUT 'emailservice.io/api/v1/customers/{{customer_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"permissions": {
		"messages": {
			"allow_spam_release": true
		}
	}
}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "region": {
    "locale": "en",
    "time_zone": "Eastern Time (US & Canada)"
  },
  "billing": {
    "cc_addresses": []
  },
  "branding": {
    "subdomain": null,
    "logo_filename": null,
    "icon_filename": null,
    "from_email": null,
    "from_name": null,
    "prefix": "console",
    "guide_from_first_name": null,
    "guide_from_last_name": null,
    "guide_from_email": null,
    "support_url": null
  },
  "permissions": {
    "messages": {
      "allow_spam_release": true,
      "allow_policy_release": true,
      "allow_virus_release": true,
      "allow_feed": true
    },
    "console": {
      "allow_console_access": true,
      "allow_user_management_of_allow_block": true,
      "allow_user_management_of_content_rules": null,
      "allow_user_management_of_quarantine_preferences": true,
      "allow_user_management_of_spam_tolerance": true
    }
  },
  "notifications": {
    "link_hours_until_expiration": 72,
    "link_max_logins": 3,
    "schedule": {
      "enabled": false,
      "start_hour": 8,
      "end_hour": 18,
      "days_of_week": [\
        2,\
        3,\
        4,\
        5,\
        6\
      ]
    }
  },
  "messages": {
    "review": {
      "enabled": true,
      "interval": 3,
      "start_hour": 8,
      "end_hour": 17
    },
    "visibility": {
      "threshold": 1000
    }
  },
  "user_sync": {
    "move_users": false
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"388ae393bd892d4fd0b3410fe37b686b"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

3a339828-15c3-4ed2-8016-1a95d6859272

X-Runtime

1.267437

Transfer-Encoding

chunked

Statements

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Statements

emailservice.io/api/v1/customers/{{customer_id}}/statements

Retrieve statements belonging to a customer.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Statements

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/statements' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 3000448,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2016-10-05",\
    "ending_date": "2016-11-04",\
    "billing_date": "2016-11-04",\
    "due_date": "2016-11-04"\
  },\
  {\
    "id": 3000490,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2016-11-05",\
    "ending_date": "2016-12-04",\
    "billing_date": "2016-12-04",\
    "due_date": "2016-12-04"\
  },\
  {\
    "id": 3001181,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2016-12-05",\
    "ending_date": "2017-01-04",\
    "billing_date": "2017-01-04",\
    "due_date": "2017-01-04"\
  },\
  {\
    "id": 3001792,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-01-05",\
    "ending_date": "2017-02-04",\
    "billing_date": "2017-02-04",\
    "due_date": "2017-02-04"\
  },\
  {\
    "id": 3002308,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-02-05",\
    "ending_date": "2017-03-04",\
    "billing_date": "2017-03-04",\
    "due_date": "2017-03-04"\
  },\
  {\
    "id": 3002805,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-03-05",\
    "ending_date": "2017-04-04",\
    "billing_date": "2017-04-04",\
    "due_date": "2017-04-04"\
  },\
  {\
    "id": 3003277,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-04-05",\
    "ending_date": "2017-05-04",\
    "billing_date": "2017-05-04",\
    "due_date": "2017-05-04"\
  },\
  {\
    "id": 3003746,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-05-05",\
    "ending_date": "2017-06-04",\
    "billing_date": "2017-06-04",\
    "due_date": "2017-06-04"\
  },\
  {\
    "id": 3004214,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-06-05",\
    "ending_date": "2017-07-04",\
    "billing_date": "2017-07-04",\
    "due_date": "2017-07-04"\
  },\
  {\
    "id": 3004684,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-07-05",\
    "ending_date": "2017-08-04",\
    "billing_date": "2017-08-04",\
    "due_date": "2017-08-04"\
  },\
  {\
    "id": 3005150,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-08-05",\
    "ending_date": "2017-09-04",\
    "billing_date": "2017-09-04",\
    "due_date": "2017-09-04"\
  },\
  {\
    "id": 3005621,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-09-05",\
    "ending_date": "2017-10-04",\
    "billing_date": "2017-10-04",\
    "due_date": "2017-10-04"\
  },\
  {\
    "id": 3006103,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-10-05",\
    "ending_date": "2017-11-04",\
    "billing_date": "2017-11-04",\
    "due_date": "2017-11-04"\
  },\
  {\
    "id": 3006595,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-11-05",\
    "ending_date": "2017-12-04",\
    "billing_date": "2017-12-04",\
    "due_date": "2017-12-04"\
  },\
  {\
    "id": 3007097,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2017-12-05",\
    "ending_date": "2018-01-04",\
    "billing_date": "2018-01-04",\
    "due_date": "2018-01-04"\
  },\
  {\
    "id": 3007603,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-01-05",\
    "ending_date": "2018-02-04",\
    "billing_date": "2018-02-04",\
    "due_date": "2018-02-04"\
  },\
  {\
    "id": 3008104,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-02-05",\
    "ending_date": "2018-03-04",\
    "billing_date": "2018-03-04",\
    "due_date": "2018-03-04"\
  },\
  {\
    "id": 3008614,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-03-05",\
    "ending_date": "2018-04-04",\
    "billing_date": "2018-04-04",\
    "due_date": "2018-04-04"\
  },\
  {\
    "id": 3009129,\
    "amount": 50.5,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-04-05",\
    "ending_date": "2018-05-04",\
    "billing_date": "2018-05-04",\
    "due_date": "2018-05-04"\
  },\
  {\
    "id": 3009638,\
    "amount": 55.3,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-05-05",\
    "ending_date": "2018-06-04",\
    "billing_date": "2018-06-04",\
    "due_date": "2018-06-04"\
  },\
  {\
    "id": 3010150,\
    "amount": 59.1,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-06-05",\
    "ending_date": "2018-07-04",\
    "billing_date": "2018-07-04",\
    "due_date": "2018-07-04"\
  },\
  {\
    "id": 3010661,\
    "amount": 53.4,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-07-05",\
    "ending_date": "2018-08-04",\
    "billing_date": "2018-08-04",\
    "due_date": "2018-08-04"\
  },\
  {\
    "id": 3011173,\
    "amount": 52.9,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-08-05",\
    "ending_date": "2018-09-04",\
    "billing_date": "2018-09-04",\
    "due_date": "2018-09-04"\
  },\
  {\
    "id": 3011691,\
    "amount": 50.5,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-09-05",\
    "ending_date": "2018-10-04",\
    "billing_date": "2018-10-04",\
    "due_date": "2018-10-04"\
  },\
  {\
    "id": 3012217,\
    "amount": 50,\
    "currency": "USD",\
    "statement_type": "Automatic",\
    "statement_status": "Settled",\
    "starting_date": "2018-10-05",\
    "ending_date": "2018-11-04",\
    "billing_date": "2018-11-04",\
    "due_date": "2018-11-04"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":37,"total_pages":2,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"05ae395a5975b57036d5a32ce2dbea13"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

74c7c983-64e1-4c3c-aee6-b1f3d78f3be4

X-Runtime

2.929327

Transfer-Encoding

chunked

Logs

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Logs

emailservice.io/api/v1/customers/{{customer_id}}/logs

Retrieve the logs for all users under a customer. Refer to the "Filtering Logs" section at the top of the page for more information on filtering the results.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Logs

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/logs' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": "307b6169-7231-4917-96c9-87f8507d1ec3",\
    "uuid": "307b6169-7231-4917-96c9-87f8507d1ec3",\
    "sender": "[email protected]",\
    "from": "Sonya - Land Air Express/STL <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 100\
    },\
    "direction": "inbound",\
    "origin": "54.208.239.9",\
    "subject": "FW: No More Struggling To Hold Your Tablet!",\
    "user": {\
      "id": 847734,\
      "name": "spamservice"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:24:30.150+00:00",\
    "results_data": [\
      "spf_softfail",\
      "from_spf_softfail",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-13.outbound.emailsrv.net",\
    "ptr": "otransport-13.outbound.emailsrv.net",\
    "ip": "54.208.239.9",\
    "postfix_queue_id": "7E3DBC0295"\
  },\
  {\
    "id": "580e303c-9373-4ff7-b88f-cc5edcc09f36",\
    "uuid": "580e303c-9373-4ff7-b88f-cc5edcc09f36",\
    "sender": "[email protected]",\
    "from": "Sonya - Land Air Express/STL <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 180\
    },\
    "direction": "inbound",\
    "origin": "52.1.21.150",\
    "subject": "FW: No More Struggling To Hold Your Tablet!",\
    "user": {\
      "id": 269891,\
      "name": "naspam"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:24:29.793+00:00",\
    "results_data": [\
      "spf_softfail",\
      "from_spf_softfail",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-17.outbound.emailsrv.net",\
    "ptr": "otransport-17.outbound.emailsrv.net",\
    "ip": "52.1.21.150",\
    "postfix_queue_id": "5D54361189"\
  },\
  {\
    "id": "ddeb1036-6959-4166-83c2-205c3bb06146",\
    "uuid": "ddeb1036-6959-4166-83c2-205c3bb06146",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.165.221",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:24:29.203+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM12-BN8-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn8nam12hn2221.outbound.protection.outlook.com",\
    "ip": "52.100.165.221",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "7d92bfbf-0fc8-4da8-b0a3-e99177a8fa3d",\
    "uuid": "7d92bfbf-0fc8-4da8-b0a3-e99177a8fa3d",\
    "sender": "[email protected]",\
    "from": "Sonya - Land Air Express/STL <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 100\
    },\
    "direction": "inbound",\
    "origin": "54.208.239.9",\
    "subject": "FW: No More Struggling To Hold Your Tablet!",\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:24:29.005+00:00",\
    "results_data": [\
      "spf_softfail",\
      "from_spf_softfail",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-13.outbound.emailsrv.net",\
    "ptr": "otransport-13.outbound.emailsrv.net",\
    "ip": "54.208.239.9",\
    "postfix_queue_id": "D3EDBC2985"\
  },\
  {\
    "id": "bacead78-a44f-4f7c-9d40-bd2768951343",\
    "uuid": "bacead78-a44f-4f7c-9d40-bd2768951343",\
    "sender": "[email protected]",\
    "from": "Sonya - Land Air Express/STL <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 60\
    },\
    "direction": "inbound",\
    "origin": "173.203.187.92",\
    "subject": "FW: No More Struggling To Hold Your Tablet!",\
    "user": {\
      "id": 834193,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 15003,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:24:28.309+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "clean",\
      [\
        "sa_score",\
        1.5\
      ]\
    ],\
    "rule_ids": [],\
    "helo": "smtp92.iad3a.emailsrvr.com",\
    "ptr": "smtp92.iad3a.emailsrvr.com",\
    "ip": "173.203.187.92",\
    "postfix_queue_id": "D16F1C00EA"\
  },\
  {\
    "id": "8dd929d9-2332-4606-b0b8-117ed82d8a1e",\
    "uuid": "8dd929d9-2332-4606-b0b8-117ed82d8a1e",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.55.170",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:24:27.607+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM12-BN8-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn8nam12lp2170.outbound.protection.outlook.com",\
    "ip": "104.47.55.170",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "91af96f4-899d-40bc-9bb2-80c2e72aaf81",\
    "uuid": "91af96f4-899d-40bc-9bb2-80c2e72aaf81",\
    "sender": "[email protected]",\
    "from": "Crunchbase <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 120\
    },\
    "direction": "inbound",\
    "origin": "192.28.156.150",\
    "subject": "Crunchbase Daily: ClassPass, Cafe X, Roofstock, Orchard, and Getaround - January 8, 2020",\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:22:04.148+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "reply_spf_pass",\
      "subject_50_chars",\
      "subject_10_spaces",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "mail2.crunchbase.com",\
    "ptr": "mail2.crunchbase.com",\
    "ip": "192.28.156.150",\
    "postfix_queue_id": "AEF7B61347"\
  },\
  {\
    "id": "7a335bc0-127e-4851-8a09-9303d7541cc4",\
    "uuid": "7a335bc0-127e-4851-8a09-9303d7541cc4",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "34.194.188.63",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:21:51.940+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-22.outbound.emailsrv.net",\
    "ptr": "otransport-22.outbound.emailsrv.net",\
    "ip": "34.194.188.63",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "f71a3842-a485-4d49-b24f-d659b98787f9",\
    "uuid": "f71a3842-a485-4d49-b24f-d659b98787f9",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.0.70.91",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:21:38.902+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "transport-1.inbound.emailservice.io",\
    "ptr": "transport-1.inbound.emailservice.io",\
    "ip": "52.0.70.91",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "ddb77f2a-0c6e-4a69-970f-966a93fffbf7",\
    "uuid": "ddb77f2a-0c6e-4a69-970f-966a93fffbf7",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.137.45",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:21:26.859+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM04-BN3-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bgr052100137045.outbound.protection.outlook.com",\
    "ip": "52.100.137.45",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "ad73261f-c55f-479f-9136-edfeb9b34cb3",\
    "uuid": "ad73261f-c55f-479f-9136-edfeb9b34cb3",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.36.55",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:21:24.906+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM02-SN1-obe.outbound.protection.outlook.com",\
    "ptr": "mail-sn1nam02lp2055.outbound.protection.outlook.com",\
    "ip": "104.47.36.55",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "fd8274a7-6ac7-432f-910d-a4b11f99f50c",\
    "uuid": "fd8274a7-6ac7-432f-910d-a4b11f99f50c",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.101.138.99",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:20:57.527+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "EUR04-DB3-obe.outbound.protection.outlook.com",\
    "ptr": "mail-db3eur04hn2099.outbound.protection.outlook.com",\
    "ip": "52.101.138.99",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "7f0d1549-4c34-401b-8af1-0c97e6e84b07",\
    "uuid": "7f0d1549-4c34-401b-8af1-0c97e6e84b07",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.18.111",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:20:55.699+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "EUR05-AM6-obe.outbound.protection.outlook.com",\
    "ptr": "mail-am6eur05lp2111.outbound.protection.outlook.com",\
    "ip": "104.47.18.111",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "365a2515-9e0c-4398-8781-2d22424d0aa9",\
    "uuid": "365a2515-9e0c-4398-8781-2d22424d0aa9",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "35.153.239.198",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:20:21.549+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-25.outbound.emailsrv.net",\
    "ptr": "otransport-25.outbound.emailsrv.net",\
    "ip": "35.153.239.198",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "216f8c0f-e430-4292-9402-c42cdc6343b9",\
    "uuid": "216f8c0f-e430-4292-9402-c42cdc6343b9",\
    "sender": "[email protected]",\
    "from": "Ora Sanders <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 100\
    },\
    "direction": "inbound",\
    "origin": "209.85.167.177",\
    "subject": "Re: New secure message: [Itemized Receipt from The Therapy Spot]",\
    "user": {\
      "id": 825400,\
      "name": "noreply"\
    },\
    "user_group": {\
      "id": 18925,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 20043,\
      "name": "bracket.email"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:20:19.132+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "bulk"\
    ],\
    "rule_ids": [\
      106101\
    ],\
    "helo": "mail-oi1-f177.google.com",\
    "ptr": "mail-oi1-f177.google.com",\
    "ip": "209.85.167.177",\
    "postfix_queue_id": "563ED6132F"\
  },\
  {\
    "id": "0a9a843f-ad52-48e6-9e9d-2fc062f39d64",\
    "uuid": "0a9a843f-ad52-48e6-9e9d-2fc062f39d64",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.172.228",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:19:57.881+00:00",\
    "results_data": [\
      "no_rdns",\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM11-DM6-obe.outbound.protection.outlook.com",\
    "ptr": "[52.100.172.228]",\
    "ip": "52.100.172.228",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "d9556499-04db-417b-b282-a9efc5dcab99",\
    "uuid": "d9556499-04db-417b-b282-a9efc5dcab99",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.57.173",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:19:56.559+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM11-DM6-obe.outbound.protection.outlook.com",\
    "ptr": "mail-dm6nam11lp2173.outbound.protection.outlook.com",\
    "ip": "104.47.57.173",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "b1df77c1-d70f-4079-be77-650eff39f8df",\
    "uuid": "b1df77c1-d70f-4079-be77-650eff39f8df",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "34.237.235.151",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:19:55.410+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-29.outbound.emailsrv.net",\
    "ptr": "otransport-29.outbound.emailsrv.net",\
    "ip": "34.237.235.151",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "54d5e032-bbfa-436d-8075-81dd7f3d8b5f",\
    "uuid": "54d5e032-bbfa-436d-8075-81dd7f3d8b5f",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.0.31.31",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:19:05.425+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "transport-2.inbound.emailservice.io",\
    "ptr": "transport-2.inbound.emailservice.io",\
    "ip": "52.0.31.31",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "9a348638-b274-4d20-af28-bf00aec9876d",\
    "uuid": "9a348638-b274-4d20-af28-bf00aec9876d",\
    "sender": "[email protected]",\
    "from": "\"Mallory, Heather M (DSHS/DDA)\" <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 20\
    },\
    "direction": "inbound",\
    "origin": "216.47.160.37",\
    "subject": "RE: New secure message: [secure email - EMS Dispatch]",\
    "user": {\
      "id": 825400,\
      "name": "noreply"\
    },\
    "user_group": {\
      "id": 18925,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 20043,\
      "name": "bracket.email"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:19:05.260+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "subject_50_chars",\
      "clean"\
    ],\
    "rule_ids": [\
      106101\
    ],\
    "helo": "m86wasmtp2.m86wa.digitalbackoffice.us",\
    "ptr": "m86wasmtp2.m86wa.digitalbackoffice.us",\
    "ip": "216.47.160.37",\
    "postfix_queue_id": "BAF88C00EA"\
  },\
  {\
    "id": "2d576a64-c4a4-47b5-8c7d-e9460bc92fb7",\
    "uuid": "2d576a64-c4a4-47b5-8c7d-e9460bc92fb7",\
    "sender": "[email protected]",\
    "from": "InterFlex Group - IT Help Desk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "35.153.239.198",\
    "subject": "[#22225]: FW: Payroll Deposit Error",\
    "user": {\
      "id": 847734,\
      "name": "spamservice"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:48.872+00:00",\
    "results_data": [\
      "spf_unknown",\
      "from_spf_unknown",\
      "reply_spf_unknown",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-25.outbound.emailsrv.net",\
    "ptr": "otransport-25.outbound.emailsrv.net",\
    "ip": "35.153.239.198",\
    "postfix_queue_id": "8E888C029B"\
  },\
  {\
    "id": "edc58514-b21f-435c-be3e-d59c057a06ae",\
    "uuid": "edc58514-b21f-435c-be3e-d59c057a06ae",\
    "sender": "[email protected]",\
    "from": "InterFlex Group - IT Help Desk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "54.173.10.57",\
    "subject": "[#22225]: FW: Payroll Deposit Error",\
    "user": {\
      "id": 269891,\
      "name": "naspam"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:48.814+00:00",\
    "results_data": [\
      "spf_unknown",\
      "from_spf_unknown",\
      "reply_spf_unknown",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-21.outbound.emailsrv.net",\
    "ptr": "otransport-21.outbound.emailsrv.net",\
    "ip": "54.173.10.57",\
    "postfix_queue_id": "830ECC02A3"\
  },\
  {\
    "id": "a3d3e46f-cedb-466b-950c-2ecb4e805802",\
    "uuid": "a3d3e46f-cedb-466b-950c-2ecb4e805802",\
    "sender": "[email protected]",\
    "from": "InterFlex Group - IT Help Desk <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 40\
    },\
    "direction": "inbound",\
    "origin": "74.121.109.50",\
    "subject": "[#22225]: FW: Payroll Deposit Error",\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:48.075+00:00",\
    "results_data": [\
      "no_rdns",\
      "spf_unknown",\
      "from_spf_unknown",\
      "reply_spf_unknown",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "webmail.interflexgroup.com",\
    "ptr": "[74.121.109.50]",\
    "ip": "74.121.109.50",\
    "postfix_queue_id": "C1A9261175"\
  },\
  {\
    "id": "66739125-b47f-4764-b1a3-04e095e6f3a2",\
    "uuid": "66739125-b47f-4764-b1a3-04e095e6f3a2",\
    "sender": "microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io",\
    "from": "Chris Chiles <[email protected]>",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "outbound",\
    "origin": "52.23.53.145",\
    "subject": "Invalid sender address microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:42.924+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "MBX1.exchange.emailservice.io",\
    "ptr": "mbx1.exchange.emailservice.io",\
    "ip": "52.23.53.145",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "8cfbe148-145a-4d68-a825-b5417aa9a1e0",\
    "uuid": "8cfbe148-145a-4d68-a825-b5417aa9a1e0",\
    "sender": "microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io",\
    "from": "Chris Chiles <[email protected]>",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "outbound",\
    "origin": "52.71.59.20",\
    "subject": "Invalid sender address microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:42.766+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "MBX2.exchange.emailservice.io",\
    "ptr": "mbx2.exchange.emailservice.io",\
    "ip": "52.71.59.20",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "683571ce-ab88-43c6-9107-dcbf5dfb1ad8",\
    "uuid": "683571ce-ab88-43c6-9107-dcbf5dfb1ad8",\
    "sender": "microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io",\
    "from": "Chris Chiles <[email protected]>",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "outbound",\
    "origin": "52.20.8.186",\
    "subject": "Invalid sender address microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:42.581+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "MBX3.exchange.emailservice.io",\
    "ptr": "mbx3.exchange.emailservice.io",\
    "ip": "52.20.8.186",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "2298eb60-b881-4366-9662-2c2ab5aff83c",\
    "uuid": "2298eb60-b881-4366-9662-2c2ab5aff83c",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.156.234",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:38.450+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM10-DM6-obe.outbound.protection.outlook.com",\
    "ptr": "mail-dm6nam10hn2234.outbound.protection.outlook.com",\
    "ip": "52.100.156.234",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "04de9615-c7a8-46a9-bb02-51b4e1c380a9",\
    "uuid": "04de9615-c7a8-46a9-bb02-51b4e1c380a9",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "34.194.188.63",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:17.349+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-22.outbound.emailsrv.net",\
    "ptr": "otransport-22.outbound.emailsrv.net",\
    "ip": "34.194.188.63",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "9ae985aa-47f5-4de7-b89b-eb4d7bb929a5",\
    "uuid": "9ae985aa-47f5-4de7-b89b-eb4d7bb929a5",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "107.23.53.12",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:16.868+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-24.outbound.emailsrv.net",\
    "ptr": "otransport-24.outbound.emailsrv.net",\
    "ip": "107.23.53.12",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "5930fe3a-5a95-444a-8069-79881931700a",\
    "uuid": "5930fe3a-5a95-444a-8069-79881931700a",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.1.21.150",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:08.229+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-17.outbound.emailsrv.net",\
    "ptr": "otransport-17.outbound.emailsrv.net",\
    "ip": "52.1.21.150",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "a0d3010d-8109-407b-b3ec-e03c58f4d961",\
    "uuid": "a0d3010d-8109-407b-b3ec-e03c58f4d961",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "35.153.239.198",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:18:03.032+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-25.outbound.emailsrv.net",\
    "ptr": "otransport-25.outbound.emailsrv.net",\
    "ip": "35.153.239.198",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "6b44ac4a-b12f-4f2e-b678-090fcfc6c5da",\
    "uuid": "6b44ac4a-b12f-4f2e-b678-090fcfc6c5da",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.1.21.150",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:55.377+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-17.outbound.emailsrv.net",\
    "ptr": "otransport-17.outbound.emailsrv.net",\
    "ip": "52.1.21.150",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "acdb634b-937f-4907-a99e-e0a89f1a5fb4",\
    "uuid": "acdb634b-937f-4907-a99e-e0a89f1a5fb4",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "107.23.53.12",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:48.071+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-24.outbound.emailsrv.net",\
    "ptr": "otransport-24.outbound.emailsrv.net",\
    "ip": "107.23.53.12",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "f8870782-d49d-4e92-ad23-ce622dcd56c8",\
    "uuid": "f8870782-d49d-4e92-ad23-ce622dcd56c8",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "107.23.53.12",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:45.464+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-24.outbound.emailsrv.net",\
    "ptr": "otransport-24.outbound.emailsrv.net",\
    "ip": "107.23.53.12",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "b121c3ad-318b-40c7-ac7a-d1575f98d272",\
    "uuid": "b121c3ad-318b-40c7-ac7a-d1575f98d272",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.155.224",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:08.987+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM10-BN7-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn7nam10hn2224.outbound.protection.outlook.com",\
    "ip": "52.100.155.224",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "c676e0e6-2b0f-47aa-9d62-45edc9c158a2",\
    "uuid": "c676e0e6-2b0f-47aa-9d62-45edc9c158a2",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.46.55",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:07.375+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM04-BN3-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn3nam04lp2055.outbound.protection.outlook.com",\
    "ip": "104.47.46.55",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "9a29da72-4a6b-45c0-8a71-1d3dee39c221",\
    "uuid": "9a29da72-4a6b-45c0-8a71-1d3dee39c221",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.157.222",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:04.205+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM10-MW2-obe.outbound.protection.outlook.com",\
    "ptr": "mail-mw2nam10hn2222.outbound.protection.outlook.com",\
    "ip": "52.100.157.222",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "b6ad39e4-099a-4e15-8d45-6134a398955a",\
    "uuid": "b6ad39e4-099a-4e15-8d45-6134a398955a",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.55.107",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:02.647+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM10-MW2-obe.outbound.protection.outlook.com",\
    "ptr": "mail-mw2nam10lp2107.outbound.protection.outlook.com",\
    "ip": "104.47.55.107",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "602f759e-e8f5-403c-8622-3afcb9073d8f",\
    "uuid": "602f759e-e8f5-403c-8622-3afcb9073d8f",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.156.240",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:17:02.456+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM10-DM6-obe.outbound.protection.outlook.com",\
    "ptr": "mail-dm6nam10hn2240.outbound.protection.outlook.com",\
    "ip": "52.100.156.240",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "e1eab1f0-748a-4f73-8531-a57088f358a5",\
    "uuid": "e1eab1f0-748a-4f73-8531-a57088f358a5",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "107.23.53.12",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:56.028+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-24.outbound.emailsrv.net",\
    "ptr": "otransport-24.outbound.emailsrv.net",\
    "ip": "107.23.53.12",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "fbf5129e-98d6-4935-b43a-b0a7c150098b",\
    "uuid": "fbf5129e-98d6-4935-b43a-b0a7c150098b",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "54.173.10.57",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:47.210+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "otransport-21.outbound.emailsrv.net",\
    "ptr": "otransport-21.outbound.emailsrv.net",\
    "ip": "54.173.10.57",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "e8b8e30a-678d-46df-9a72-16b5c5619898",\
    "uuid": "e8b8e30a-678d-46df-9a72-16b5c5619898",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.0.70.91",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:38.399+00:00",\
    "results_data": [\
      "spf_none"\
    ],\
    "rule_ids": null,\
    "helo": "transport-1.inbound.emailservice.io",\
    "ptr": "transport-1.inbound.emailservice.io",\
    "ip": "52.0.70.91",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "2450c748-2676-4d73-b11f-585b3fa6630b",\
    "uuid": "2450c748-2676-4d73-b11f-585b3fa6630b",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.155.248",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:36.964+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM10-BN7-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn7nam10hn2248.outbound.protection.outlook.com",\
    "ip": "52.100.155.248",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "50e15d08-9dab-404c-9258-ee121bfbe275",\
    "uuid": "50e15d08-9dab-404c-9258-ee121bfbe275",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.70.101",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:35.330+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM10-BN7-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn7nam10lp2101.outbound.protection.outlook.com",\
    "ip": "104.47.70.101",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "71850b82-788a-4f8a-82ac-bf4e7b3da42a",\
    "uuid": "71850b82-788a-4f8a-82ac-bf4e7b3da42a",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.131.94",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:33.375+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM02-BL2-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bgr052100131094.outbound.protection.outlook.com",\
    "ip": "52.100.131.94",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "1afd0502-69d1-4b2c-840f-f6723f79a40c",\
    "uuid": "1afd0502-69d1-4b2c-840f-f6723f79a40c",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.155.225",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:32.775+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM10-BN7-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn7nam10hn2225.outbound.protection.outlook.com",\
    "ip": "52.100.155.225",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "f6e84be8-79ec-4e18-a0da-55c09d05d9e3",\
    "uuid": "f6e84be8-79ec-4e18-a0da-55c09d05d9e3",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.38.50",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:31.684+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM02-BL2-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bl2nam02lp2050.outbound.protection.outlook.com",\
    "ip": "104.47.38.50",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "20c7a229-0776-4fe2-bc9a-f4ea4003a405",\
    "uuid": "20c7a229-0776-4fe2-bc9a-f4ea4003a405",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.70.103",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:31.426+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM10-BN7-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn7nam10lp2103.outbound.protection.outlook.com",\
    "ip": "104.47.70.103",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "14182bad-193d-4304-8c8e-805f228ced78",\
    "uuid": "14182bad-193d-4304-8c8e-805f228ced78",\
    "sender": null,\
    "from": "",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "52.100.167.247",\
    "subject": "Invalid recipient address [email protected]",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:29.619+00:00",\
    "results_data": [\
      "spf_pass"\
    ],\
    "rule_ids": null,\
    "helo": "NAM12-MW2-obe.outbound.protection.outlook.com",\
    "ptr": "mail-mw2nam12hn2247.outbound.protection.outlook.com",\
    "ip": "52.100.167.247",\
    "postfix_queue_id": null\
  },\
  {\
    "id": "688fd05a-2d61-4437-b90a-5bbf1f4913a9",\
    "uuid": "688fd05a-2d61-4437-b90a-5bbf1f4913a9",\
    "sender": "[email protected]",\
    "from": "",\
    "recipient": null,\
    "score": {\
      "score": 1000\
    },\
    "direction": "inbound",\
    "origin": "104.47.70.106",\
    "subject": "Invalid recipient address ",\
    "user": null,\
    "user_group": null,\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-08T17:16:28.375+00:00",\
    "results_data": [],\
    "rule_ids": null,\
    "helo": "NAM10-BN7-obe.outbound.protection.outlook.com",\
    "ptr": "mail-bn7nam10lp2106.outbound.protection.outlook.com",\
    "ip": "104.47.70.106",\
    "postfix_queue_id": null\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"6a2f5b32529e9a97cc83a05bc746f3e9"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

c1a01ab7-4696-46df-a0d9-f94ed4ad8f0a

X-Runtime

13.342396

Transfer-Encoding

chunked

Messages

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETCustomer Messages

emailservice.io/api/v1/customers/{{customer_id}}/messages

Retrieve quarantined messages for users under a customer.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Customer Messages

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/messages' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": 1985056110,\
    "uuid": "4F03A4FF-7E36-489E-9F14-D7F95BB0EA2B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"sales\" <[email protected]>",\
    "from": "\"Keans Group Corp.\" <[email protected]>",\
    "cc": "",\
    "subject": "Re;Luminous collect",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38485,\
      "name": "sales"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T20:50:11.000Z"\
  },\
  {\
    "id": 1987720038,\
    "uuid": "8ED07A77-D3F5-4DD9-9F41-8DBDF2A89A78.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"sales\" <[email protected]>",\
    "from": "Crystal Grey <[email protected]>",\
    "cc": "",\
    "subject": "Website enquiries",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38485,\
      "name": "sales"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T18:23:32.000Z"\
  },\
  {\
    "id": 1985012921,\
    "uuid": "4CEEA828-38FB-44CF-A86B-8451E5D556E5.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"info\" <[email protected]>",\
    "from": "\"Keans Group Corp.\" <[email protected]>",\
    "cc": "",\
    "subject": "Re;Luminous collect",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 740\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 682800,\
      "name": "info"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T18:18:14.000Z"\
  },\
  {\
    "id": 1988097219,\
    "uuid": "3DDFD497-25DA-4A60-917B-8B137FF6C112.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Skylar\" <[email protected]>",\
    "from": "\"Alexandra\" <[email protected]>",\
    "cc": "",\
    "subject": "AU Stronger action - brighter emotions. Kamagra Oral Jelly from our pharmacy.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38489,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:27:13.000Z"\
  },\
  {\
    "id": 1988097188,\
    "uuid": "7A2C9FCA-7478-4470-ACA2-18D7BF7A374C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Simsouda Mahathath <[email protected]>",\
    "cc": "",\
    "subject": "FW: ZipRad Automates Image Ordering",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 212\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 73,\
        "mode": "inbound",\
        "title": "SA",\
        "description": "In some cases we will use Spam Assassin to supplement other filtering conditions. This score is multiplied by 40 to translate to the Mailprotector scoring system.",\
        "weight": 40\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:27:12.000Z"\
  },\
  {\
    "id": 1988084340,\
    "uuid": "647F200F-6213-4B22-9DA1-5D733147699A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Elke\" <[email protected]>",\
    "from": "\"Maria\" <[email protected]>",\
    "cc": "",\
    "subject": "All you need is love. Cialis Professional will give you long action.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 147,\
        "mode": "inbound",\
        "title": "SPF Neutral",\
        "description": "The SPF record specifies explicitly that nothing can be said about validity.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38483,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:14:46.000Z"\
  },\
  {\
    "id": 1988080213,\
    "uuid": "4DA2AD25-214D-476C-ADE7-BD32D2F91256.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Katharina\" <[email protected]>",\
    "from": "\"Sophia\" <[email protected]>",\
    "cc": "",\
    "subject": "Kamagra Oral Jelly inspires! Strengthen your love power now!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 960\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 710337,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:10:45.000Z"\
  },\
  {\
    "id": 1988079634,\
    "uuid": "E40B3CC4-3FB5-42C8-829F-0BF204F99D82.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Ellison\" <[email protected]>,\n\t\"Kristina\" <[email protected]>",\
    "from": "\"Briella\" <[email protected]>",\
    "cc": "",\
    "subject": "Get the best quality of Cialis Soft Tabs! Best price ever!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38387,\
      "name": "billing"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:09:55.000Z"\
  },\
  {\
    "id": 1988079635,\
    "uuid": "E40B3CC4-3FB5-42C8-829F-0BF204F99D82.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Ellison\" <[email protected]>,\n\t\"Kristina\" <[email protected]>",\
    "from": "\"Briella\" <[email protected]>",\
    "cc": "",\
    "subject": "Get the best quality of Cialis Soft Tabs! Best price ever!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38437,\
      "name": "marketing"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:09:55.000Z"\
  },\
  {\
    "id": 1988077799,\
    "uuid": "6439C6BA-3DBF-43E9-A3E0-F5CF011AE072.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Donna Peters <[email protected]>",\
    "cc": "",\
    "subject": "FW: [Possible spam] It's the New Year and a new church budget. Now is the time to plan your next outreach events. CMG can help!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 450\
    },\
    "results": [\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 7,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 50\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:08:02.000Z"\
  },\
  {\
    "id": 1988075168,\
    "uuid": "BA2AD34F-C172-4CB9-BB3B-11BE167B05AA.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Gisela\" <[email protected]>",\
    "from": "\"Heike\" <[email protected]>",\
    "cc": "",\
    "subject": "Realize your dormant temper. Kamagra Oral Jelly.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 2,\
        "mode": "inbound",\
        "title": "ISP Reverse DNS",\
        "description": "The server that relayed the message was part of an ISP network which has a high frequency of spam.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38505,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 1073,\
      "name": "mailprotector.co.uk user group"\
    },\
    "domain": {\
      "id": 1481,\
      "name": "mailprotector.co.uk"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:06:50.000Z"\
  },\
  {\
    "id": 1988082915,\
    "uuid": "A98F39CA-FF49-4088-9215-772579A0DB09.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "new-roofing-deals-jeremy.nigh=mailprotector.com@goodsdepartment.com",\
    "to": "<[email protected]>",\
    "from": "\"New Roofing Deals\" <[email protected]>",\
    "cc": "",\
    "subject": "Save Hundreds on your Energy Bills",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:06:44.000Z"\
  },\
  {\
    "id": 1988073923,\
    "uuid": "E8D83B1F-1405-42E5-B978-9FC830BDEE5B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Myah\" <[email protected]>",\
    "from": "\"Julianna\" <[email protected]>",\
    "cc": "",\
    "subject": "Feel the call of your body with Viagra Professional. The best price here!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38477,\
      "name": "feedback"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:05:59.000Z"\
  },\
  {\
    "id": 1988073718,\
    "uuid": "6E2B4EFB-D3BD-4170-9384-C48ACB119CB6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Order Procurement <[email protected]>",\
    "cc": "",\
    "subject": "Request For Quotation # 8357129047",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 640\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 32,\
        "mode": "inbound",\
        "title": "Phishing",\
        "description": "This message contained content matching our phishing heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 993175,\
      "name": "haleigh.kump"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T17:05:12.000Z"\
  },\
  {\
    "id": 1988041226,\
    "uuid": "A6799461-93C3-4BCE-9621-8D18E2398A50.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "Ben Hathaway <[email protected]>",\
    "from": "John Kampas <[email protected]>",\
    "cc": "",\
    "subject": "Re: Introductory Call",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:44:37.000Z"\
  },\
  {\
    "id": 1988034691,\
    "uuid": "6CD475B2-0C22-4DA0-A926-0EC8725CB3B1.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Louanne Knott <[email protected]>",\
    "cc": "",\
    "subject": "Strategy discussion on Thursday at 1:00 pm - David?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:37:41.000Z"\
  },\
  {\
    "id": 1988028346,\
    "uuid": "D6826CC9-D377-4EC9-AD58-62672320E180.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Heaven\" <[email protected]>",\
    "from": "\"Mary\" <[email protected]>",\
    "cc": "",\
    "subject": "AU Viagra Super Active - your main equipment for love adventures.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 860\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38489,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:31:06.000Z"\
  },\
  {\
    "id": 1988029459,\
    "uuid": "09687D2F-22C2-4602-BE96-30A5375E50C6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Julianna\" <[email protected]>",\
    "from": "\"Vivienne\" <[email protected]>",\
    "cc": "",\
    "subject": "AU Qualitative drugs for lowest price here! Choose Cialis Brand.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38489,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:30:30.000Z"\
  },\
  {\
    "id": 1988027419,\
    "uuid": "EE7808DD-2FE3-413A-97F7-960BD31F3659.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Harleigh\" <[email protected]>",\
    "from": "\"Mary\" <[email protected]>",\
    "cc": "",\
    "subject": "Get strong erection for sure! Levitra.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38457,\
      "name": "support"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:30:08.000Z"\
  },\
  {\
    "id": 1988015145,\
    "uuid": "1532DBAA-E414-4782-B342-92E8C220A42A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Mark McNabola <[email protected]>",\
    "cc": "",\
    "subject": "FW: Working capital exclusively endorsed by NTL",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:17:54.000Z"\
  },\
  {\
    "id": 1988012318,\
    "uuid": "AF8AC3A3-AC6D-424D-9818-0543C2830CF9.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bngeokh_eblijdapch_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com",\
    "to": "[email protected]",\
    "from": "Spectrum Business <[email protected]>",\
    "cc": "",\
    "subject": "[Insights] Thinking About Gigabit Internet?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 280\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38387,\
      "name": "billing"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:14:40.000Z"\
  },\
  {\
    "id": 1988012326,\
    "uuid": "B7A9277F-2EB7-4208-AA5D-A974C6217BCF.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bngeokh_eblijjnnji_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com",\
    "to": "[email protected]",\
    "from": "Spectrum Business <[email protected]>",\
    "cc": "",\
    "subject": "[Insights] Thinking About Gigabit Internet?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 400\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 728356,\
      "name": "andy.barringer"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:13:11.000Z"\
  },\
  {\
    "id": 1988020203,\
    "uuid": "82D72264-8798-4FBE-82BF-093338F9201E.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bngeokh_eblijipnkm_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com",\
    "to": "[email protected]",\
    "from": "Spectrum Business <[email protected]>",\
    "cc": "",\
    "subject": "[Insights] Thinking About Gigabit Internet?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 280\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:13:01.000Z"\
  },\
  {\
    "id": 1988004383,\
    "uuid": "C3ACBF69-1C59-4B37-80A9-CCF9069657C5.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-131_HTML-105339659-3312717-10959666-53@bounce.email.slackhq.com",\
    "to": "<[email protected]>",\
    "from": "\"Slack\" <[email protected]>",\
    "cc": "",\
    "subject": "January admin update",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:10:17.000Z"\
  },\
  {\
    "id": 1988003731,\
    "uuid": "9F4439A4-098B-46E6-93C3-6170B272C2B4.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Rylie\" <[email protected]>",\
    "from": "\"Eleanor\" <[email protected]>",\
    "cc": "",\
    "subject": "Extend the active years of life. Choose Cialis Daily.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38477,\
      "name": "feedback"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:09:50.000Z"\
  },\
  {\
    "id": 1988002165,\
    "uuid": "F7F00B4B-8374-4C7D-BA0F-6AFFD8BCA9FD.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bngeokh_eblijigkaf_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com",\
    "to": "[email protected]",\
    "from": "Spectrum Business <[email protected]>",\
    "cc": "",\
    "subject": "[Insights] Thinking About Gigabit Internet?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 280\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 724133,\
      "name": "weston.gaskill"\
    },\
    "user_group": {\
      "id": 16148,\
      "name": "Exchange 2016"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:08:42.000Z"\
  },\
  {\
    "id": 1988001399,\
    "uuid": "A98B2A6E-16C5-4A80-8D8D-B01DDBED514B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Kendra Hart <[email protected]>",\
    "cc": "",\
    "subject": "Your Commercial Cleaning Needs",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:08:16.000Z"\
  },\
  {\
    "id": 1988000818,\
    "uuid": "692B0CB2-327B-4DD3-BA0C-738E99F09C7B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Hansel Steuer <[email protected]>",\
    "cc": "",\
    "subject": "FW: CNC Plasma Cutter, Press Brakes, Shears, Turret & Engine Lathes, ( 45+) Welders, Large Steel Inventory",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 420\
    },\
    "results": [\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:07:34.000Z"\
  },\
  {\
    "id": 1988008615,\
    "uuid": "0EE3C756-4841-4E49-A480-CB33780D072C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "canvasprints-promo-jeremy.nigh=mailprotector.com@itemsandbackup.com",\
    "to": "<[email protected]>",\
    "from": "\"CanvasPrints Promo\" <[email protected]>",\
    "cc": "",\
    "subject": "Up to 93% off Custom Prints",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 500\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:05:32.000Z"\
  },\
  {\
    "id": 1988004084,\
    "uuid": "5EE9A474-4E52-4B4F-92B4-E550212C13FB.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Snore Fix\" <[email protected]>",\
    "cc": "",\
    "subject": "Are You Tired of Hearing Your Partner Snore Every Day?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:04:33.000Z"\
  },\
  {\
    "id": 1987990759,\
    "uuid": "D87238B8-4337-416F-8E9F-3221AFC5440A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "323280@@bigpond.net.au",\
    "to": "[email protected]",\
    "from": "\"william\" <323280@@bigpond.net.au>",\
    "cc": "",\
    "subject": "metal pen price",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 980\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38485,\
      "name": "sales"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:00:52.000Z"\
  },\
  {\
    "id": 1988020542,\
    "uuid": "85312A4F-C813-440D-9F76-4D702F45F2B4.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "6067-2594-16926-1625-dsetzer=mailprotector.net@mail.sqribplus.bid",\
    "to": "<[email protected]>",\
    "from": "\"Sqribble\" <[email protected]>",\
    "cc": "",\
    "subject": "Sqribble Is The ONLY eBook Creator You’ll Ever Need…",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 61,\
        "mode": "inbound",\
        "title": "Porn/Adult",\
        "description": "Pornography, Dating, 'organ' augmentation.",\
        "weight": 200\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38403,\
      "name": "david.setzer"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T16:00:25.000Z"\
  },\
  {\
    "id": 1988044960,\
    "uuid": "0496CAB2-6898-43C9-A2D1-9028D9E9A3DC.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "6067-2594-23437-1625-ben.hathaway=mailprotector.com@mail.sqribplus.bid",\
    "to": "<[email protected]>",\
    "from": "\"Sqribble\" <[email protected]>",\
    "cc": "",\
    "subject": "No installation required. Sqribble is compatible on all computers.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 960\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 61,\
        "mode": "inbound",\
        "title": "Porn/Adult",\
        "description": "Pornography, Dating, 'organ' augmentation.",\
        "weight": 200\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:59:25.000Z"\
  },\
  {\
    "id": 1987988358,\
    "uuid": "84956ED3-95AC-42AB-8E53-B471D793F986.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounces+864718-5d61-kurin.quintavalle=mailprotector.com@delivery.customeriomail.com",\
    "to": "[email protected]",\
    "from": "DataValidation Support <[email protected]>",\
    "cc": "",\
    "subject": "Start the new year right!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 276\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 73,\
        "mode": "inbound",\
        "title": "SA",\
        "description": "In some cases we will use Spam Assassin to supplement other filtering conditions. This score is multiplied by 40 to translate to the Mailprotector scoring system.",\
        "weight": 40\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 846641,\
      "name": "kurin.quintavalle"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:58:21.000Z"\
  },\
  {\
    "id": 1987986471,\
    "uuid": "C7D18765-78CE-4666-BD49-2E2ED8FC7329.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounces+140056-9737-ben.hathaway=mailprotector.com@emails.mangoapps.com",\
    "to": "[email protected]",\
    "from": "\"Patrick Allman\" <[email protected]>",\
    "cc": "",\
    "subject": "RE: 2020 Digital Employee Initiatives at Mailprotector",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:56:08.000Z"\
  },\
  {\
    "id": 1987981341,\
    "uuid": "AFA319EC-6DDE-4435-ACBB-C4F10BA58DF0.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "6067-2594-23416-1625-jeremy.nigh=mailprotector.com@mail.sqribplus.bid",\
    "to": "<[email protected]>",\
    "from": "\"Sqribble\" <[email protected]>",\
    "cc": "",\
    "subject": "No installation required. Sqribble is compatible on all computers.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 960\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 61,\
        "mode": "inbound",\
        "title": "Porn/Adult",\
        "description": "Pornography, Dating, 'organ' augmentation.",\
        "weight": 200\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:48:02.000Z"\
  },\
  {\
    "id": 1987970948,\
    "uuid": "C41DC0EB-20BE-471F-87AF-0B44B9027D3A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Sharon Wasko <[email protected]>",\
    "cc": "",\
    "subject": "FW: So you probably know how much your roof repair costs",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 400\
    },\
    "results": [\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:36:35.000Z"\
  },\
  {\
    "id": 1987969909,\
    "uuid": "68E711E4-5757-4D93-8603-F2F1A13DBAE1.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Magnolia\" <[email protected]>",\
    "from": "\"Marley\" <[email protected]>",\
    "cc": "",\
    "subject": "what are your plans for the weekend?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 33,\
        "mode": "inbound",\
        "title": "Junk",\
        "description": "This message contained content matching our junk email heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38445,\
      "name": "ricky.hayes"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:36:10.000Z"\
  },\
  {\
    "id": 1987969472,\
    "uuid": "DC23E383-016B-439D-8C5D-1A95E291FA45.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounces+864718-5d61-kurin.quintavalle=mailprotector.com@delivery.customeriomail.com",\
    "to": "[email protected]",\
    "from": "DataValidation <[email protected]>",\
    "cc": "",\
    "subject": "Your email list needs attention",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 276\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 73,\
        "mode": "inbound",\
        "title": "SA",\
        "description": "In some cases we will use Spam Assassin to supplement other filtering conditions. This score is multiplied by 40 to translate to the Mailprotector scoring system.",\
        "weight": 40\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 846641,\
      "name": "kurin.quintavalle"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:35:43.000Z"\
  },\
  {\
    "id": 1987968638,\
    "uuid": "D4EE06E6-3599-4102-9B36-12A881CCDD6D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Chanda Lawrence <[email protected]>",\
    "cc": "",\
    "subject": "FW: CONTACT me via this email { [email protected]) FOR YOUR FUND",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 320\
    },\
    "results": [\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 475236,\
      "name": "spam"\
    },\
    "user_group": {\
      "id": 9246,\
      "name": "CloudMail"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:34:46.000Z"\
  },\
  {\
    "id": 1987956465,\
    "uuid": "11A4EA1C-A1D1-4472-9627-724F4C1CC62A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Sqribble\" <[email protected]>",\
    "cc": "",\
    "subject": "Sqribble Is The ONLY eBook Creator You’ll Ever Need…",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 660\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 54,\
        "mode": "inbound",\
        "title": "Experimental",\
        "description": "Abstract patterns for spam structures.",\
        "weight": 200\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:22:54.000Z"\
  },\
  {\
    "id": 1987949817,\
    "uuid": "4063640E-BBDB-4BB2-BC6C-AB1AA576A59C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Contacts Database <[email protected]>",\
    "cc": "",\
    "subject": "Worldwide E-mail Marketing Database [LIMITED OFFER: -40% DISCOUNT]:",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 620\
    },\
    "results": [\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 710337,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:16:26.000Z"\
  },\
  {\
    "id": 1987947570,\
    "uuid": "E7CDB7DB-E00C-4DA4-B334-A8338214478F.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Kill My Taxes\" <[email protected]>",\
    "cc": "",\
    "subject": "Stop IRS collections",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 700\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T15:07:42.000Z"\
  },\
  {\
    "id": 1987930561,\
    "uuid": "921E6A0D-EFD8-4B0C-AD44-1A5CDE156074.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Isabelle\" <[email protected]>",\
    "from": "\"Ilse\" <[email protected]>",\
    "cc": "",\
    "subject": "Choose Viagra Super Force. Choose maximum pleasure.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38387,\
      "name": "billing"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T14:59:42.000Z"\
  },\
  {\
    "id": 1987927999,\
    "uuid": "EF173F91-8029-4347-A2CD-66417FCEBEC5.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Christina\" <[email protected]>",\
    "from": "\"Esperanza\" <[email protected]>",\
    "cc": "",\
    "subject": "could you meet me today?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 940\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38483,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 1071,\
      "name": "mailprotector.com.au user group"\
    },\
    "domain": {\
      "id": 1477,\
      "name": "mailprotector.com.au"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T14:57:04.000Z"\
  },\
  {\
    "id": 1987927990,\
    "uuid": "E845930D-576C-40DF-866C-932539A402E8.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Brynn\" <[email protected]>",\
    "from": "\"Avalyn\" <[email protected]>",\
    "cc": "",\
    "subject": "If all men were the same as you...",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 710337,\
      "name": "partners"\
    },\
    "user_group": {\
      "id": 28330,\
      "name": "Office 365 - No Archive or Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T14:57:03.000Z"\
  },\
  {\
    "id": 1987922956,\
    "uuid": "A68B53F2-A33C-440C-9C41-E3D73B4A1659.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounces+3633940-b389-billing=mailprotector.com@em.app.postmates.com",\
    "to": "[email protected]",\
    "from": "\"Postmates\" <[email protected]>",\
    "cc": "",\
    "subject": "$100 delivery credit to warm up.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 280\
    },\
    "results": [\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38387,\
      "name": "billing"\
    },\
    "user_group": {\
      "id": 25307,\
      "name": "Office 365 - No Bracket"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T14:51:24.000Z"\
  },\
  {\
    "id": 1987919333,\
    "uuid": "09AA6A64-D5A7-420C-BE25-D1173C190FE8.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "Research Team <[email protected]>",\
    "cc": "",\
    "subject": "Update: New Board Positions Available",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 640\
    },\
    "results": [\
      {\
        "id": 2,\
        "mode": "inbound",\
        "title": "ISP Reverse DNS",\
        "description": "The server that relayed the message was part of an ISP network which has a high frequency of spam.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T14:47:03.000Z"\
  },\
  {\
    "id": 1987930248,\
    "uuid": "E0E2F5FE-E72D-49FE-9196-EF3679AE1B69.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "6063-985-18841-1623-jeremy.nigh=mailprotector.com@mail.sqribplus.bid",\
    "to": "<[email protected]>",\
    "from": "\"Hearing Aids Special\" <[email protected]>",\
    "cc": "",\
    "subject": "These Hearing Aids Will Change Your Life!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38425,\
      "name": "jeremy.nigh"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T14:46:52.000Z"\
  },\
  {\
    "id": 1987915073,\
    "uuid": "7CC963C2-35E5-4D74-B9A3-B58BE7C65842.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "\"Grice, Kevan\" <[email protected]>",\
    "cc": "",\
    "subject": "Re: Missed call Ben",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 0\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 38383,\
      "name": "ben.hathaway"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Different Customer Name"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T14:41:39.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"ca473c962d661b7a2a62d5a198e3d9d9"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

b16f4d7c-311c-4737-ab6d-e383ed718a87

X-Runtime

47.739132

Transfer-Encoding

chunked

POSTRelease Message

emailservice.io/api/v1/messages/{{message_id}}/deliver

Release a message from the quarantine. The recipients field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}

Example Request

Release Message

curl

curl --location -g 'emailservice.io/api/v1/messages/{{message_id}}/deliver' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

e630abe8-ad9d-4ede-9c68-e88a74e273c7

X-Runtime

1.371039

POSTRelease Multiple Messages

emailservice.io/api/v1/customers/{{customer_id}}/messages/deliver_many

Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing all_selected: true will release all currently held messages from a customer's quarantine.

Note: Message ID's provided in the payload that do not belong to a user under the customer specified in the URL path will not be released, which will be evident in the request response.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}

Example Request

Release Multiple Messages

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/messages/deliver_many' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}'

200 OK

Example Response

  • Body
  • Headers (12)

json

{
  "delivered_messages": [\
    2015573173,\
    2015573567\
  ]
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"3f602713b4241cb2e3030443e7df8e91"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

f90ce6bd-4dff-4852-a17e-e31ade67b4b8

X-Runtime

0.465301

Transfer-Encoding

chunked

GETCustomers

emailservice.io/api/v1/resellers/{{reseller_id}}/customers

Retrieve a list of customers belonging to a reseller account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get Customers

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/customers' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 2111,\
    "name": "Able Moving and Storage, Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-10-05T14:29:55.000Z",\
    "updated_at": "2019-01-15T23:05:17.000Z"\
  },\
  {\
    "id": 2009,\
    "name": "Achievehs",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-01-11T18:56:16.000Z",\
    "updated_at": "2019-01-15T23:05:10.000Z"\
  },\
  {\
    "id": 2071,\
    "name": "AGRICORP",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-07-13T12:57:05.000Z",\
    "updated_at": "2015-12-16T18:52:09.000Z"\
  },\
  {\
    "id": 1887,\
    "name": "AIS",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-01-13T09:37:06.000Z",\
    "updated_at": "2019-01-15T23:04:57.000Z"\
  },\
  {\
    "id": 1973,\
    "name": "AMAMCO TOOL",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-10-22T14:31:10.000Z",\
    "updated_at": "2019-01-15T23:05:08.000Z"\
  },\
  {\
    "id": 2099,\
    "name": "AZNORTH",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-09-10T16:43:51.000Z",\
    "updated_at": "2019-01-15T23:05:15.000Z"\
  },\
  {\
    "id": 1995,\
    "name": "Bossio & Associates",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-12-20T15:44:51.000Z",\
    "updated_at": "2015-12-16T18:47:41.000Z"\
  },\
  {\
    "id": 2079,\
    "name": "Breeze-Eastern Corporation",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-07-19T08:46:19.000Z",\
    "updated_at": "2015-12-16T18:52:28.000Z"\
  },\
  {\
    "id": 2025,\
    "name": "Brogans Bakery",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-03-24T10:58:22.000Z",\
    "updated_at": "2015-12-16T18:48:47.000Z"\
  },\
  {\
    "id": 2045,\
    "name": "Cambio Communications, Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-06-14T10:40:27.000Z",\
    "updated_at": "2019-01-15T23:05:13.000Z"\
  },\
  {\
    "id": 1983,\
    "name": "Carlos Douglas Consulting Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-12-04T17:23:14.000Z",\
    "updated_at": "2016-11-23T01:22:37.000Z"\
  },\
  {\
    "id": 1981,\
    "name": "Central Disposal",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-11-18T21:02:15.000Z",\
    "updated_at": "2019-01-15T23:05:11.000Z"\
  },\
  {\
    "id": 2023,\
    "name": "CollinsElectric",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-03-08T08:21:11.000Z",\
    "updated_at": "2019-01-15T23:05:11.000Z"\
  },\
  {\
    "id": 2087,\
    "name": "COMBINED WAREHOUSE, INC",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-08-06T10:57:07.000Z",\
    "updated_at": "2019-01-15T23:05:14.000Z"\
  },\
  {\
    "id": 2005,\
    "name": "Dauphin",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-01-08T16:44:30.000Z",\
    "updated_at": "2015-12-16T18:48:07.000Z"\
  },\
  {\
    "id": 2091,\
    "name": "Donsbach Law",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-08-19T23:48:33.000Z",\
    "updated_at": "2019-01-15T23:05:15.000Z"\
  },\
  {\
    "id": 2075,\
    "name": "dtt broadcasting",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-07-17T13:07:10.000Z",\
    "updated_at": "2015-12-16T18:52:18.000Z"\
  },\
  {\
    "id": 1963,\
    "name": "eLegalSupply.com",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-09-23T15:26:18.000Z",\
    "updated_at": "2019-01-15T23:05:07.000Z"\
  },\
  {\
    "id": 805,\
    "name": "Epic Real Estate Solutions, Inc.",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-07-07T14:09:05.000Z",\
    "updated_at": "2019-01-15T23:05:05.000Z"\
  },\
  {\
    "id": 2017,\
    "name": "Eye Doctors of Washington",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-02-25T10:03:55.000Z",\
    "updated_at": "2015-12-16T18:48:27.000Z"\
  },\
  {\
    "id": 1953,\
    "name": "Fifth Group Restaurants",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-07-27T13:03:46.000Z",\
    "updated_at": "2015-12-16T18:46:10.000Z"\
  },\
  {\
    "id": 1969,\
    "name": "Garden State Baseball",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-10-13T09:12:00.000Z",\
    "updated_at": "2019-01-15T23:05:06.000Z"\
  },\
  {\
    "id": 1959,\
    "name": "Girl Scouts of Greater Atlanta",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-08-20T19:14:33.000Z",\
    "updated_at": "2019-01-15T23:05:07.000Z"\
  },\
  {\
    "id": 1937,\
    "name": "Girl Scouts of NY Penn and Pathways",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2009-06-03T14:56:30.000Z",\
    "updated_at": "2019-01-15T23:05:03.000Z"\
  },\
  {\
    "id": 687,\
    "name": "GLOBE Foundation",\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "created_at": "2010-10-12T10:46:51.000Z",\
    "updated_at": "2019-01-15T23:05:17.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":58,"total_pages":3,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"3f7e234782105a387fd0c297c89f0fe3"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

89b890c3-0c2c-4400-ac29-7d8ae00fa0d3

X-Runtime

0.500454

Transfer-Encoding

chunked

GETCustomer

emailservice.io/api/v1/customers/{{customer_id}}

Retrieve a single customer using its ID.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get Customer

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 329,
  "name": "Mailprotector group",
  "provider": {
    "id": 65,
    "name": "United States"
  },
  "reseller": {
    "id": 188,
    "name": "Mailprotector Direct (old)"
  },
  "created_at": "2010-05-12T10:33:24.000Z",
  "updated_at": "2014-05-13T23:27:51.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/customers/329

Content-Type

application/json; charset=utf-8

ETag

W/"2f40efcfc1d364cbdd6ae655cc86fab1"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

8d96c2ea-2f09-4753-8c1a-b5f51bc2f325

X-Runtime

0.091556

Transfer-Encoding

chunked

POSTCreate Customer

emailservice.io/api/v1/resellers/{{reseller_id}}/customers

Create a new customer under a reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "New Customer",
	"email": "[email protected]"
}

Example Request

Create Customer

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/customers' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"name": "New Customer",
	"email": "[email protected]"
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 16607,
  "name": "New Customer",
  "provider": {
    "id": 65,
    "name": "United States"
  },
  "reseller": {
    "id": 188,
    "name": "Mailprotector Direct (old)"
  },
  "created_at": "2020-01-02T21:55:54.000Z",
  "updated_at": "2020-01-02T21:55:54.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/customers/16607

Content-Type

application/json; charset=utf-8

ETag

W/"d58ac371e75373c50f066ae2fc709c6b"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

42409870-e872-41ea-8096-a7f8551db95a

X-Runtime

1.478414

Transfer-Encoding

chunked

PUTEdit Customer

emailservice.io/api/v1/customers/{{customer_id}}

Edit an existing customer.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "Different Customer Name",
	"email": "[email protected]"
}

Example Request

Edit Customer

curl

curl --location -g --request PUT 'emailservice.io/api/v1/customers/{{customer_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"name": "Different Customer Name",
	"email": "[email protected]"
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 329,
  "name": "Different Customer Name",
  "provider": {
    "id": 65,
    "name": "United States"
  },
  "reseller": {
    "id": 188,
    "name": "Mailprotector Direct (old)"
  },
  "created_at": "2010-05-12T10:33:24.000Z",
  "updated_at": "2020-01-02T22:35:01.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/customers/329

Content-Type

application/json; charset=utf-8

ETag

W/"1cc6c706094fa8354ca2a71f72962814"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

31996179-11a4-48fb-bbe5-30a091e58943

X-Runtime

0.772537

Transfer-Encoding

chunked

DELETEDelete Customer

emailservice.io/api/v1/customers/{{customer_id}}

Delete a customer account. All domains and users under the customer account will also be removed.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Customer

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/customers/{{customer_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

a4dcfa4a-e2cc-493c-b861-41e3aad9cda2

X-Runtime

3.006260

Domains

Get, create, update, and delete domains from Mailprotector.

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

User Groups

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain User Groups

emailservice.io/api/v1/domains/{{domain_id}}/user_groups

Get user groups under a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain User Groups

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/user_groups' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 109,\
    "name": "CloudMail with Bracket",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 47,\
    "created_at": "2010-05-13T18:12:15.000Z",\
    "updated_at": "2019-07-18T02:00:38.000Z"\
  },\
  {\
    "id": 10786,\
    "name": "Exchange+ 2013 with SecureStore",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2013-07-09T20:37:45.000Z",\
    "updated_at": "2019-05-09T19:37:30.000Z"\
  },\
  {\
    "id": 17158,\
    "name": "Bracket (Attachment Filtering)",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 3,\
    "created_at": "2016-07-28T15:40:44.000Z",\
    "updated_at": "2020-01-09T02:00:47.000Z"\
  },\
  {\
    "id": 17333,\
    "name": "Bracket",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 2,\
    "created_at": "2016-09-13T14:10:43.000Z",\
    "updated_at": "2019-07-16T02:00:57.000Z"\
  },\
  {\
    "id": 18149,\
    "name": "Continuity Bundle + SafeSend",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 1,\
    "created_at": "2016-12-05T15:55:18.000Z",\
    "updated_at": "2020-01-09T02:00:48.000Z"\
  },\
  {\
    "id": 19264,\
    "name": "Bracket + SecureStore",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2017-05-11T19:14:51.000Z",\
    "updated_at": "2020-01-09T02:00:48.000Z"\
  },\
  {\
    "id": 19543,\
    "name": "Continuity Bundle (CloudFilter + XtraMail)",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 1,\
    "created_at": "2017-07-11T15:52:50.000Z",\
    "updated_at": "2020-01-09T02:00:49.000Z"\
  },\
  {\
    "id": 19588,\
    "name": "CloudFilter (SafeSend)",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 2,\
    "created_at": "2017-07-19T18:36:59.000Z",\
    "updated_at": "2020-01-09T02:00:49.000Z"\
  },\
  {\
    "id": 19807,\
    "name": "SecureStore",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2017-08-29T21:25:57.000Z",\
    "updated_at": "2020-01-09T02:00:49.000Z"\
  },\
  {\
    "id": 20350,\
    "name": "CloudFilter",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 7,\
    "created_at": "2017-11-20T16:51:47.000Z",\
    "updated_at": "2020-01-09T02:00:49.000Z"\
  },\
  {\
    "id": 26235,\
    "name": "Discovered Users",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2019-05-07T21:46:55.000Z",\
    "updated_at": "2020-01-09T02:00:49.000Z"\
  },\
  {\
    "id": 26259,\
    "name": "Exchange+ 2016",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2019-05-09T19:38:49.000Z",\
    "updated_at": "2019-07-16T02:00:59.000Z"\
  },\
  {\
    "id": 28741,\
    "name": "Tester grouper",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2019-11-14T19:17:05.000Z",\
    "updated_at": "2020-01-09T02:00:51.000Z"\
  },\
  {\
    "id": 28757,\
    "name": "Testing group for cloudmail email pause",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 1,\
    "created_at": "2019-11-15T21:34:14.000Z",\
    "updated_at": "2019-11-16T02:01:48.000Z"\
  },\
  {\
    "id": 29046,\
    "name": "Bracket Group #4",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2019-12-18T15:37:56.000Z",\
    "updated_at": "2020-01-09T02:00:52.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":15,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"f5876c301ff9b9ab4656d5f70bbc33c8"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

48792738-43e4-44a0-b3ea-b14f6cb95480

X-Runtime

0.476637

Transfer-Encoding

chunked

POSTCreate User Group

emailservice.io/api/v1/domains/{{domain_id}}/user_groups

Create a user group under a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "new user group"
}

Example Request

Create User Group

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/user_groups' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name": "new user group"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 29193,
  "name": "new user group",
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "user_count": 0,
  "created_at": "2020-01-10T16:46:02.000Z",
  "updated_at": "2020-01-10T16:46:02.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_groups/29193

Content-Type

application/json; charset=utf-8

ETag

W/"a944ba32e0e45265de432a035e50313f"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

e5109c6b-da70-41fc-9943-448cfe8f9938

X-Runtime

0.791311

Transfer-Encoding

chunked

Users

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUsers

emailservice.io/api/v1/domains/{{domain_id}}/users

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Example Request

Users

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/users' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (17)

View More

json

[\
  {\
    "id": 628092,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 13540,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 15288,\
      "name": "cloudmail.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "CloudMail",\
    "last_name": "Admin",\
    "created_at": "2014-05-23T21:54:42.000Z",\
    "updated_at": "2019-03-12T07:30:00.000Z"\
  },\
  {\
    "id": 628094,\
    "name": "ben",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 13540,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 15288,\
      "name": "cloudmail.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Ben",\
    "last_name": "Hathaway",\
    "created_at": "2014-05-23T21:54:59.000Z",\
    "updated_at": "2019-03-12T07:30:00.000Z"\
  }\
]

Date

Fri, 15 Oct 2021 20:42:44 GMT

Content-Type

application/json; charset=utf-8

Transfer-Encoding

chunked

Connection

keep-alive

Server

nginx/1.21.3

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":2,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Vary

Accept

ETag

W/"55b8761314e040db5769209b5c47be43"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

90f9c9a9-5a0e-4e20-8b98-9f1bccbeaa5a

X-Runtime

0.090380

Aliases

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain Aliases

emailservice.io/api/v1/domains/{{domain_id}}/aliases

Get the aliases for a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain Aliases

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/aliases' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 28481,\
    "name": "domain-alias.com",\
    "account": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "domain_status": {\
      "id": 1,\
      "name": "Pending"\
    },\
    "parent": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "verification_token": "xUA9khcFa6S6fdVAr/li0i/lXXo1wfdbvplUoBrhQ0Y=",\
    "address_discovery_enabled": false,\
    "created_at": "2019-12-30T20:09:39.000Z",\
    "updated_at": "2019-12-30T20:09:39.000Z"\
  },\
  {\
    "id": 11554,\
    "name": "exchange.mpdemo.net",\
    "account": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "verification_token": null,\
    "address_discovery_enabled": true,\
    "created_at": "2012-11-29T18:33:57.000Z",\
    "updated_at": "2015-09-21T02:44:21.000Z"\
  },\
  {\
    "id": 28477,\
    "name": "test.domain.com",\
    "account": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "domain_status": {\
      "id": 1,\
      "name": "Pending"\
    },\
    "parent": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "verification_token": "K5ZkO74Zr6jzj1VfY37X2LzM44MzboRGR4mt+cu39+I=",\
    "address_discovery_enabled": false,\
    "created_at": "2019-11-06T17:12:07.000Z",\
    "updated_at": "2019-11-06T17:12:07.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":3,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"d1d8130550872d7c8b3fe9daa3c81704"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

075d3baf-1ca3-44bd-8a40-1b34dcda92f1

X-Runtime

0.333357

Transfer-Encoding

chunked

POSTCreate Domain Alias

emailservice.io/api/v1/domains/{{domain_id}}/aliases

Create a new domain alias.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "new-domain-alias.com"
}

Example Request

Create Domain Alias

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/aliases' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name": "new-domain-alias.com"
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 28483,
  "name": "new-domain-alias.com",
  "account": {
    "id": 7114,
    "name": "Mailprotector Demo Customer"
  },
  "domain_status": {
    "id": 1,
    "name": "Pending"
  },
  "parent": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "verification_token": "d9qxEzUXAV0xQNx/DJimsa79kxedAUVrLVoRlb4Oqw8=",
  "address_discovery_enabled": false,
  "created_at": "2020-01-09T20:19:52.000Z",
  "updated_at": "2020-01-09T20:19:52.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/28483/aliases

Content-Type

application/json; charset=utf-8

ETag

W/"6ee0fddba2c88e9c95de2e67d8e2edcb"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

1991f0c2-70cd-4c51-b44c-cf0a5b6b0079

X-Runtime

0.685075

Transfer-Encoding

chunked

Allow/Block Rules

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain Allow/Block Rules

emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules

Retrieve the allow and block rules for a domain. Allow and block rules belonging to the user groups and users under the domain are not returned.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain Allow/Block Rules

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 191183,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "wilsonlove.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 191321,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "anotherblockedsite.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 191324,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "againanotherblockedsite.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 212505,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "test102.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 213058,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "aaa.com",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 259461,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "test0812034981289.com",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 259476,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "test12341098102834.net",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 461266,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "[email protected]",\
    "rule_type": "Block"\
  },\
  {\
    "id": 461288,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "chickenfriedfat.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469096,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "howabout.no",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469100,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "cheeseisawesome.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469102,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "whomovedmychee.se",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469104,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "therisnospo.on",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469106,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "xkcd.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469108,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "[email protected]",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469110,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "customersaresill.ly",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469112,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "vwvortex.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469114,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "mye28.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469116,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "bmwcca.org",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469118,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "theawesomer.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469120,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "notalwaysright.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469122,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "notalwaysworking.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469124,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "isittimeforbreakfa.st",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469126,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "whenslunch.com",\
    "rule_type": "Block"\
  },\
  {\
    "id": 469128,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "value": "canigohomenow.net",\
    "rule_type": "Block"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":206,"total_pages":9,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"847abf1ff6767c30f093423aa467f866"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

6484a7a8-5004-473e-b54d-b0fd4bfa64a8

X-Runtime

7.785913

Transfer-Encoding

chunked

POSTCreate Domain Allow/Block Rule

emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"value": "[email protected]",
	"rule_type": "block"
}

Example Request

Create Domain Allow/Block Rule

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"value": "[email protected]",
	"rule_type": "block"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 2445357,
  "entity": {
    "id": 102,
    "entity_type": "Domain",
    "name": "mpdemo.net"
  },
  "value": "[email protected]",
  "rule_type": "block"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/allow_block_rules/2445357

Content-Type

application/json; charset=utf-8

ETag

W/"05fd75626ca6d641be8832d24a041331"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

dc204333-29be-4453-83a8-3a389000f667

X-Runtime

4.517605

Transfer-Encoding

chunked

DELETEDelete Allow/Block Rule

emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}

Delete an allow or block rule.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Allow/Block Rule

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

f49f9830-b6c1-4dca-bfc3-7e6ea2a13305

X-Runtime

0.243252

Configuration

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

Email Destinations

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain Configuration

emailservice.io/api/v1/domains/{{domain_id}}/configuration

Get the configuration for a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain Configuration

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "configuration": {
    "region": {
      "locale": "en",
      "time_zone": "Eastern Time (US & Canada)"
    },
    "archiving": {
      "journal_address": null,
      "smtp_collector_address": null,
      "url": null
    },
    "permissions": {
      "messages": {
        "allow_spam_release": true,
        "allow_policy_release": true,
        "allow_virus_release": false,
        "allow_feed": true
      },
      "console": {
        "allow_console_access": true,
        "allow_user_management_of_allow_block": true,
        "allow_user_management_of_content_rules": false,
        "allow_user_management_of_quarantine_preferences": true,
        "allow_user_management_of_spam_tolerance": true
      }
    },
    "console": {
      "access": {
        "email_authentication_enabled": true,
        "authentication_type": "ldap",
        "authentication_server": null,
        "authentication_port": 389,
        "authentication_use_ssl": false,
        "authentication_radius_secret": null,
        "authentication_username": null
      }
    },
    "encryption": {
      "bracket": {
        "allow_export_default": true,
        "allow_users_to_manage_defaults": true,
        "journaling_address": null,
        "protect_subject_default": false,
        "request_bracket_email": null,
        "rule_enabled": false,
        "rule_trigger": "square",
        "send_open_notification_default": false,
        "company_profile": {
          "allow_users_to_manage": 1,
          "city": null,
          "include_in_notifications": 0,
          "logo_url_for_email": null,
          "logo_url_for_preview": null,
          "name": null,
          "phone": null,
          "postal_code": null,
          "push_to_all_users": null,
          "push_with_new_users": 0,
          "state": null,
          "street_address": null,
          "website": null
        }
      }
    },
    "filtering": {
      "alerts": {
        "addresses": [\
          "[email protected]"\
        ],
        "include_user": 1,
        "inbound": {
          "virus_enabled": true,
          "policy_enabled": false,
          "spam_enabled": false
        },
        "outbound": {
          "virus_enabled": false,
          "policy_enabled": true,
          "spam_enabled": false
        }
      },
      "spam_tolerance": {
        "quarantine_threshold": 200,
        "tag_threshold": 200,
        "tag_text_location": "subject",
        "tag_text": "[Possible spam]"
      }
    },
    "mail_flow": {
      "inbound": {
        "redirect_alias_to_primary": false,
        "smtp_host": "domain-102.routing.emailservice.io",
        "smtp_port": 25,
        "smtp_host_use_mx": true,
        "email_destinations_enabled": false,
        "mail_delivery_enabled": true
      },
      "outbound": {
        "relay_enabled": true
      }
    },
    "notifications": {
      "link_hours_until_expiration": 72,
      "link_max_logins": 3,
      "schedule": {
        "enabled": false,
        "start_hour": 8,
        "end_hour": 18,
        "days_of_week": [\
          2,\
          3,\
          4,\
          5,\
          6\
        ]
      }
    },
    "messages": {
      "review": {
        "enabled": true,
        "interval": 3,
        "start_hour": 8,
        "end_hour": 17
      },
      "visibility": {
        "threshold": 300
      }
    },
    "user_sync": {
      "move_users": true
    }
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"fb45d1d9dba79fc0a9cddcd8ad232f30"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

585fc498-0795-455a-8d19-9ab4517b1124

X-Runtime

19.758003

Transfer-Encoding

chunked

PUTEdit Configuration

emailservice.io/api/v1/domains/{{domain_id}}/configuration

Edit the configuration of a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"permissions": {
		"messages": {
			"allow_spam_release": true
		}
	}
}

Example Request

Edit Configuration

curl

curl --location -g --request PUT 'emailservice.io/api/v1/domains/{{domain_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"permissions": {
		"messages": {
			"allow_spam_release": true
		}
	}
}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "region": {
    "locale": "en",
    "time_zone": "Eastern Time (US & Canada)"
  },
  "archiving": {
    "journal_address": null,
    "smtp_collector_address": null,
    "url": null
  },
  "permissions": {
    "messages": {
      "allow_spam_release": true,
      "allow_policy_release": true,
      "allow_virus_release": false,
      "allow_feed": true
    },
    "console": {
      "allow_console_access": true,
      "allow_user_management_of_allow_block": true,
      "allow_user_management_of_content_rules": false,
      "allow_user_management_of_quarantine_preferences": true,
      "allow_user_management_of_spam_tolerance": true
    }
  },
  "console": {
    "access": {
      "email_authentication_enabled": true,
      "authentication_type": "ldap",
      "authentication_server": null,
      "authentication_port": 389,
      "authentication_use_ssl": false,
      "authentication_radius_secret": null,
      "authentication_username": null
    }
  },
  "encryption": {
    "bracket": {
      "allow_export_default": true,
      "allow_users_to_manage_defaults": true,
      "journaling_address": null,
      "protect_subject_default": false,
      "request_bracket_email": null,
      "rule_enabled": false,
      "rule_trigger": "square",
      "send_open_notification_default": false,
      "company_profile": {
        "allow_users_to_manage": 1,
        "city": null,
        "include_in_notifications": 0,
        "logo_url_for_email": null,
        "logo_url_for_preview": null,
        "name": null,
        "phone": null,
        "postal_code": null,
        "push_to_all_users": null,
        "push_with_new_users": 0,
        "state": null,
        "street_address": null,
        "website": null
      }
    }
  },
  "filtering": {
    "alerts": {
      "addresses": [\
        "[email protected]"\
      ],
      "include_user": 1,
      "inbound": {
        "virus_enabled": true,
        "policy_enabled": false,
        "spam_enabled": false
      },
      "outbound": {
        "virus_enabled": false,
        "policy_enabled": true,
        "spam_enabled": false
      }
    },
    "spam_tolerance": {
      "quarantine_threshold": 200,
      "tag_threshold": 200,
      "tag_text_location": "subject",
      "tag_text": "[Possible spam]"
    }
  },
  "mail_flow": {
    "inbound": {
      "redirect_alias_to_primary": false,
      "smtp_host": "domain-102.routing.emailservice.io",
      "smtp_port": 25,
      "smtp_host_use_mx": true,
      "email_destinations_enabled": false,
      "mail_delivery_enabled": true
    },
    "outbound": {
      "relay_enabled": true
    }
  },
  "notifications": {
    "link_hours_until_expiration": 72,
    "link_max_logins": 3,
    "schedule": {
      "enabled": false,
      "start_hour": 8,
      "end_hour": 18,
      "days_of_week": [\
        2,\
        3,\
        4,\
        5,\
        6\
      ]
    }
  },
  "messages": {
    "review": {
      "enabled": true,
      "interval": 3,
      "start_hour": 8,
      "end_hour": 17
    },
    "visibility": {
      "threshold": 300
    }
  },
  "user_sync": {
    "move_users": true
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"28bb55869da1ebccb1bfe03e1a88ae6b"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

6cd6a91b-c0f4-4b63-a19f-c19fafb3bdbd

X-Runtime

7.129827

Transfer-Encoding

chunked

Email Destinations

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain Email Destinations

emailservice.io/api/v1/domains/{{domain_id}}/email_destinations

Get the Email Destinations for a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain Email Destinations

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/email_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1293,\
    "entity_id": 102,\
    "entity_type": "Domain",\
    "address": "example.com",\
    "priority": 0\
  },\
  {\
    "id": 1294,\
    "entity_id": 102,\
    "entity_type": "Domain",\
    "address": "example2.com",\
    "priority": 1\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":2,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"77cdc8c55ed8f7f4ee7b19d5e2beb266"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

071aa20a-5b18-4bbd-8b2e-bffa3e5ee53c

X-Runtime

0.097664

Transfer-Encoding

chunked

POSTCreate Domain Email Destination

emailservice.io/api/v1/domains/{{domain_id}}/email_destinations

Create an email destination for a domain. Address can be either a domain or IP address.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}}

Content-Type

application/json

Bodyraw

{
	"address": "domain.com"
}

Example Request

Create Domain Email Destination

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/email_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}}' \
--header 'Content-Type: application/json' \
--data '{
	"address": "domain.com"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 1295,
  "entity_id": 102,
  "entity_type": "Domain",
  "address": "domain.com",
  "priority": 2
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/email_destinations/1295

Content-Type

application/json; charset=utf-8

ETag

W/"54708a8ecce08f78218f83c938aa4031"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

84774b00-cdef-4aee-9afa-96a3de77b120

X-Runtime

0.163027

Transfer-Encoding

chunked

Email Sources

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain Email Sources

emailservice.io/api/v1/domains/{{domain_id}}/email_sources

Get the email sources for a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain Email Sources

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/email_sources' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

json

[\
  {\
    "id": 127,\
    "entity": {\
      "id": 102,\
      "entity_type": "Domain",\
      "name": "mpdemo.net"\
    },\
    "address": "97.81.240.155"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"aadc599fe90eb3d754c92fef157077bc"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

30b224c8-8030-4663-bf50-d38eeddf12b1

X-Runtime

0.313140

Transfer-Encoding

chunked

POSTCreate Domain Email Source

emailservice.io/api/v1/domains/{{domain_id}}/email_sources

Create an email source for a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"address": "192.168.0.1"
}

Example Request

Create Domain Email Source

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/email_sources' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"address": "192.168.0.1"
}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 948,
  "entity": {
    "id": 102,
    "entity_type": "Domain",
    "name": "mpdemo.net"
  },
  "address": "192.168.0.1"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/email_sources/948

Content-Type

application/json; charset=utf-8

ETag

W/"f3af83e174a272c9abb585cbf79c2efd"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

9f3ca955-89a5-41be-afde-9bc2d2281999

X-Runtime

0.288054

Transfer-Encoding

chunked

Logs

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain Logs

emailservice.io/api/v1/domains/{{domain_id}}/logs

Get the logs for a domain's users. Refer to the "Filtering Logs" section at the top of the page for more information on filtering the results.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain Logs

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/logs' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": "a96c91c6-fdfe-4e99-a03c-3717b06bcdcb",\
    "uuid": "a96c91c6-fdfe-4e99-a03c-3717b06bcdcb",\
    "sender": "[email protected]",\
    "from": "\"NCAA.com\" <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 340\
    },\
    "direction": "inbound",\
    "origin": "167.89.41.152",\
    "subject": "The Journey to Detroit Continues!",\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-09T15:46:01.913+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_none",\
      "reply_spf_softfail",\
      "multiple_from_replyto",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "o903.abmail.mailings.ncaa.com",\
    "ptr": "o903.abmail.mailings.ncaa.com",\
    "ip": "167.89.41.152",\
    "postfix_queue_id": "29E3A61729"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"6eebecc1a7f48f82bb745e1cce19ad75"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

fa982c18-757d-4693-9ed0-a4c1456f00ce

X-Runtime

0.400795

Transfer-Encoding

chunked

Messages

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETDomain Messages

emailservice.io/api/v1/domains/{{domain_id}}/messages

Get the messages from the quarantine of users on a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain Messages

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/messages' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": 1989091611,\
    "uuid": "7340C1A1-F2B1-4707-8DB3-D04036ACB3ED.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Erase My Back Pain\" <[email protected]>",\
    "cc": "",\
    "subject": "1 Weird Stretch DESTROYS Back Pain & Sciatica",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 940\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T18:02:14.000Z"\
  },\
  {\
    "id": 1989056539,\
    "uuid": "CEF2590F-E55F-4238-A900-1E07B7730FAA.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016f8b5eee4b-f21c8cb8-6a52-4102-b053-d7f3f59f5ea7-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: 'Somebody could have made a mistake,' Trump says about crash of Ukraine jet that U.S. now believes was brought down by Iran",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 270\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 7,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 50\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T17:34:12.000Z"\
  },\
  {\
    "id": 1989046094,\
    "uuid": "8BB711A6-97EA-439D-B749-AB687633A4A1.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Sqribble Review WITH Demo\" <[email protected]>",\
    "cc": "",\
    "subject": "WATCH THIS: Create a product in 60 seconds!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 840\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T17:26:26.000Z"\
  },\
  {\
    "id": 1989010262,\
    "uuid": "9C93945F-8FA5-4BA4-A418-685210585D3A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Delaney\" <[email protected]>",\
    "from": "\"Brenna\" <[email protected]>",\
    "cc": "",\
    "subject": "How To Start Make $950 daily Online?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T16:54:27.000Z"\
  },\
  {\
    "id": 1989007134,\
    "uuid": "EA0FB6CE-D797-420C-8418-9AD35BED7FE3.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "HotNewOffer:[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Hot New Offer : Backyard Revolution\" <HotNewOffer:[email protected]>",\
    "cc": "",\
    "subject": "Orlando Carpenter Saves $975 a Year On Power. [SEE HOW]",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 860\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T16:51:01.000Z"\
  },\
  {\
    "id": 1988994661,\
    "uuid": "DEE15E84-2B79-4F35-8D22-7720BA1E23C8.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bfkdnep_fjcackpmfo_gcpjfffj_gcpjfffj_a@bounce.e.theatlantic.com",\
    "to": "[email protected]",\
    "from": "The Atlantic <[email protected]>",\
    "cc": "",\
    "subject": "Essential journalism for the year ahead",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T16:39:22.000Z"\
  },\
  {\
    "id": 1988986249,\
    "uuid": "A5B8D224-A83F-4C13-A934-8FC6D3D02142.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Channel Futures\" <[email protected]>",\
    "cc": "",\
    "subject": "MSP eBook - Growing & Sustaining Your Business",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T16:32:42.000Z"\
  },\
  {\
    "id": 1988976799,\
    "uuid": "BF26C8D5-6D3D-4142-8CAD-4CE8F13ED71F.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016f8b1ee466-711e8f2d-9678-4082-b865-8bc83b5b308a-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "The Daily 202: The ghosts of 1979 still haunt U.S. policy toward Iran and shadow Trump’s response to missile strikes",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 40\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T16:24:15.000Z"\
  },\
  {\
    "id": 1988964229,\
    "uuid": "60700622-624B-4BCD-B341-E00F86F88DFC.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Laurel\" <[email protected]>",\
    "from": "\"Jaylee\" <[email protected]>",\
    "cc": "",\
    "subject": "Viagra Super Force. Oh, yes...",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 640\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T16:13:59.000Z"\
  },\
  {\
    "id": 1988962470,\
    "uuid": "99F454C8-893F-4A3A-81F9-5B236875F4FA.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"iShop Chargers\" <[email protected]>",\
    "cc": "",\
    "subject": "The Last Charging Cable You'll Ever Buy. Guaranteed.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 960\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T16:13:03.000Z"\
  },\
  {\
    "id": 1988928134,\
    "uuid": "115FFC21-5BD8-45F4-A29F-B8EB821E6153.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounces+6692116-dc2e-carnegie=mpdemo.net@abmail.mailings.ncaa.com",\
    "to": "[email protected]",\
    "from": "\"NCAA.com\" <[email protected]>",\
    "cc": "",\
    "subject": "The Journey to Detroit Continues!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T15:45:59.000Z"\
  },\
  {\
    "id": 1988920101,\
    "uuid": "4C154493-1D75-42F3-939D-804C437BBCE2.2",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "\"Prostate 911\" <[email protected]>",\
    "cc": "",\
    "subject": "Your Prostate Is the Size Of A Lemon",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 740\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T15:39:19.000Z"\
  },\
  {\
    "id": 1988909229,\
    "uuid": "BB29034B-4132-4DB7-B5FA-06D7C9842164.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Morgan\" <[email protected]>",\
    "from": "\"Johanna\" <[email protected]>",\
    "cc": "",\
    "subject": "Earn $500 daily  - its easy!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 58,\
        "mode": "inbound",\
        "title": "Get Rich",\
        "description": "Business opportunities, work at home offers, mlm, get rich on eBay, etc.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T15:28:25.000Z"\
  },\
  {\
    "id": 1988872203,\
    "uuid": "4D05BB49-4FBE-4F77-8A07-65D850560B5B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Fast Company Compass <[email protected]>",\
    "cc": "",\
    "subject": "7 books to help you be a better leader in 2020",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T14:49:22.000Z"\
  },\
  {\
    "id": 1988872469,\
    "uuid": "7575CF14-8901-4173-8505-2AFBA01A5488.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Fast Company Compass <[email protected]>",\
    "cc": "",\
    "subject": "7 books to help you be a better leader in 2020",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T14:49:22.000Z"\
  },\
  {\
    "id": 1988825679,\
    "uuid": "06F1C5B0-ED91-4D44-84BE-782E1FBEC39F.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Computerworld Online Resources <[email protected]>",\
    "cc": "",\
    "subject": "Why you should be using low-code for app dev and how to get started.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 9635,\
      "name": "david"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T14:02:06.000Z"\
  },\
  {\
    "id": 1988804164,\
    "uuid": "4E45D1FC-215B-4A57-9330-BE624EE92497.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Patricia\" <[email protected]>",\
    "from": "\"Kaitlyn\" <[email protected]>",\
    "cc": "",\
    "subject": "Viagra Brand inspires! Strengther your love power now!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T13:40:23.000Z"\
  },\
  {\
    "id": 1988799167,\
    "uuid": "CD8C9762-2333-434E-BA52-A1F7382A67B4.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"192.88.135.9 SRNNews.com Newsletter Popup\" <[email protected]>",\
    "from": "Bill Bennett's American Patriot's Daily Almanac\n <[email protected]>",\
    "cc": "",\
    "subject": "Thomas Paine Publishes Common Sense",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 540\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T13:36:29.000Z"\
  },\
  {\
    "id": 1988791616,\
    "uuid": "BB1A2080-29BC-4CAD-9DBD-F0502584362A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Everlee\" <[email protected]>",\
    "from": "\"Regina\" <[email protected]>",\
    "cc": "",\
    "subject": "Cialis Soft Tabs - the best friend of man. Try it, you like it!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 980\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 25,\
        "mode": "inbound",\
        "title": "Policy Block List",\
        "description": "This message came form an IP that is on the Policy Block List. The PBL is a DNSBL database of end-user IP address ranges which should not be delivering unauthenticated SMTP email to any Internet mail server except those provided for specifically by an ISP for that customer's use.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T13:30:29.000Z"\
  },\
  {\
    "id": 1988758174,\
    "uuid": "870BED74-D173-4A12-9D0E-35111C68ED37.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Ashlynn\" <[email protected]>",\
    "from": "\"Leanna\" <[email protected]>",\
    "cc": "",\
    "subject": "can you be free tomorrow",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1185169,\
      "name": "porn"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T12:59:18.000Z"\
  },\
  {\
    "id": 1988752392,\
    "uuid": "7E0C11C6-287E-4EF2-A117-CF99984ECE0E.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "Brett <[email protected]>",\
    "from": "Celestine B. <[email protected]>",\
    "cc": "",\
    "subject": "Hi, my name is Anna, I am an engineer.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 33,\
        "mode": "inbound",\
        "title": "Junk",\
        "description": "This message contained content matching our junk email heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 17,\
        "mode": "inbound",\
        "title": "Abused Legit Spam Domain",\
        "description": "The message contained a link to an abused domain reported with abused legit spam.",\
        "weight": 200\
      },\
      {\
        "id": 61,\
        "mode": "inbound",\
        "title": "Porn/Adult",\
        "description": "Pornography, Dating, 'organ' augmentation.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T12:54:07.000Z"\
  },\
  {\
    "id": 1988712980,\
    "uuid": "3E748884-0EB9-404F-BE85-64877C9F558B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Friend\" <[email protected]>",\
    "from": "Jonathan Garthwaite <[email protected]>",\
    "cc": "",\
    "subject": "Townhall Daily - Jan 09 - Kurt  Schlichter,Victor Davis Hanson,Derek Hunter,John Stossel,Todd Starnes and More",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T12:12:55.000Z"\
  },\
  {\
    "id": 1988704856,\
    "uuid": "96997535-BE66-4015-8254-4F5AFDAC1FF5.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "\"Nat Ives, WSJ\" <[email protected]>",\
    "cc": "",\
    "subject": "CMO Today: Teen Vogue’s Facebook Ad",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T12:03:31.000Z"\
  },\
  {\
    "id": 1988672581,\
    "uuid": "1BDE0031-2FA5-490B-AE18-2E571C4961D6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016f8a155aca-1176c4c5-d477-4cb9-a806-e990165274ba-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Trump to move to exempt some major pipeline, drilling and other projects from environmental review",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T11:34:12.000Z"\
  },\
  {\
    "id": 1988669207,\
    "uuid": "B09DD187-79F8-41B9-ABF4-EFA3F78759FB.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "theSkimm <[email protected]>",\
    "cc": "",\
    "subject": "Daily Skimm: And we'll never be royals",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1187359,\
      "name": "codye.test"\
    },\
    "user_group": null,\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": null,\
    "provider": null,\
    "message_date": "2020-01-09T11:31:41.000Z"\
  },\
  {\
    "id": 1988656267,\
    "uuid": "32E5D4DC-C018-4EFE-ABA9-C071CEF4B591.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Laila\" <[email protected]>",\
    "from": "\"Itzel\" <[email protected]>",\
    "cc": "",\
    "subject": "Wild adventures all night long. Kamagra Oral Jelly.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T11:18:52.000Z"\
  },\
  {\
    "id": 1988641078,\
    "uuid": "5229D5CE-F9EA-4D30-A48C-6D438AD1F452.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016f89f9d206-4a814a3d-9ab8-4645-9a46-6426d7c1bff8-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Facebook won’t limit how politicians target ads or lie to voters under new rules",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T11:04:08.000Z"\
  },\
  {\
    "id": 1988639171,\
    "uuid": "9ECF91AB-F033-403C-814D-69487FE19D5D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-63_HTML-328761131-3155861-7219217-238@bounce.aaas.sciencepubs.org",\
    "to": "<[email protected]>",\
    "from": "\"News from Science\" <[email protected]>",\
    "cc": "",\
    "subject": "How many of our comets come from alien solar systems?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 360\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T11:01:45.000Z"\
  },\
  {\
    "id": 1988632253,\
    "uuid": "E12D3F6D-9B3F-4791-A97C-EC6B8836D965.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Veronique\" <[email protected]>",\
    "from": "\"Barbara\" <[email protected]>",\
    "cc": "",\
    "subject": "Cialis Professional. More than effectual medication!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 960\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T10:51:52.000Z"\
  },\
  {\
    "id": 1988605152,\
    "uuid": "6BA215C4-F0AB-4587-A337-265D175BDF24.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "Brett <[email protected]>",\
    "from": "Gilbertina I. Newsham <[email protected]>",\
    "cc": "",\
    "subject": "I am an interesting and not boring girl",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 25,\
        "mode": "inbound",\
        "title": "Policy Block List",\
        "description": "This message came form an IP that is on the Policy Block List. The PBL is a DNSBL database of end-user IP address ranges which should not be delivering unauthenticated SMTP email to any Internet mail server except those provided for specifically by an ISP for that customer's use.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 36,\
        "mode": "inbound",\
        "title": "Junk URL",\
        "description": "This message contained content matching our junk URL heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 17,\
        "mode": "inbound",\
        "title": "Abused Legit Spam Domain",\
        "description": "The message contained a link to an abused domain reported with abused legit spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T10:10:38.000Z"\
  },\
  {\
    "id": 1988604236,\
    "uuid": "D318C6EC-E0E6-405F-AC22-F6986A771C94.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"192.88.135.9 SRNNews.com Newsletter Popup\" <[email protected]>",\
    "from": "Daybreak Insider <[email protected]>",\
    "cc": "",\
    "subject": "States Seek to Stop Boys from Competing as Girls",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 540\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T10:09:05.000Z"\
  },\
  {\
    "id": 1988597277,\
    "uuid": "CB6ED0DC-351B-4DB3-8DD2-25E0E0A3A8A8.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Everly\" <[email protected]>",\
    "from": "\"Angie\" <[email protected]>",\
    "cc": "",\
    "subject": "Get pure enjoyment. Use Cialis.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T09:54:56.000Z"\
  },\
  {\
    "id": 1988579308,\
    "uuid": "6CA0D516-BB56-487C-9090-2F3BEBDE5574.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Marcus Wondracek <[email protected]>",\
    "cc": "",\
    "subject": "433 Hilburn Way, Simpsonville, SC",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 9634,\
      "name": "ben"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T09:16:55.000Z"\
  },\
  {\
    "id": 1988576032,\
    "uuid": "C09A4282-BAAB-41D8-9530-7FFB04A47B6E.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Angie\" <[email protected]>",\
    "from": "\"Yareli\" <[email protected]>",\
    "cc": "",\
    "subject": "It's incredibly confusing and drives me on simultaneously. Watch until I removed it from the access.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 980\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1185169,\
      "name": "porn"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T09:09:48.000Z"\
  },\
  {\
    "id": 1988570094,\
    "uuid": "E7F1C478-3164-453D-9C34-CEC5DF41CF9D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "Brett <[email protected]>",\
    "from": "Mrs. Carmita Preast <[email protected]>",\
    "cc": "",\
    "subject": "Let’s make our life beautiful and adore it together.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 3,\
        "mode": "inbound",\
        "title": "ISP Helo",\
        "description": "The HELO value used was from an ISP.",\
        "weight": 40\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 36,\
        "mode": "inbound",\
        "title": "Junk URL",\
        "description": "This message contained content matching our junk URL heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 13,\
        "mode": "inbound",\
        "title": "Spam Domain",\
        "description": "The message contained a link to a spam domain.",\
        "weight": 200\
      },\
      {\
        "id": 61,\
        "mode": "inbound",\
        "title": "Porn/Adult",\
        "description": "Pornography, Dating, 'organ' augmentation.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T08:59:04.000Z"\
  },\
  {\
    "id": 1988469746,\
    "uuid": "8437E6DB-EC79-4272-ACE7-049B2A5D9E1C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Madison\" <[email protected]>",\
    "from": "\"Jennifer\" <[email protected]>",\
    "cc": "",\
    "subject": "It's incredibly confusing and drives me on simultaneously. Watch until I removed it from the access.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T04:15:07.000Z"\
  },\
  {\
    "id": 1988411187,\
    "uuid": "DA4F5B9B-5760-410F-9564-7AA41951C612.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Julia\" <[email protected]>",\
    "from": "\"Dahlia\" <[email protected]>",\
    "cc": "",\
    "subject": "You can make it all! Levitra Soft.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1185169,\
      "name": "porn"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T01:31:24.000Z"\
  },\
  {\
    "id": 1988405709,\
    "uuid": "CBA20042-CE3B-4381-87C0-C1D01D08D01E.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bfkcnog_fjcackpmfo_gcpinabi_gcpinabi_a@bounce.e.theatlantic.com",\
    "to": "[email protected]",\
    "from": "The Atlantic <[email protected]>",\
    "cc": "",\
    "subject": "Americans still aren't rallying behind Trump on Iran",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 360\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T01:16:59.000Z"\
  },\
  {\
    "id": 1988381908,\
    "uuid": "D8AE728D-33BD-407E-A842-04A59828F5AB.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Grace\" <[email protected]>",\
    "from": "\"Tiffany\" <[email protected]>",\
    "cc": "",\
    "subject": "Get your fantastic pleasures. Buy Levitra.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 63,\
        "mode": "inbound",\
        "title": "Snake Oil",\
        "description": "Online pharmacies, hgh, viagra, weight loss, no prescription needed.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1185169,\
      "name": "porn"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T00:21:50.000Z"\
  },\
  {\
    "id": 1988377354,\
    "uuid": "02C31EA4-A692-4A26-AC55-68AB73927FCB.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bfkcnip_fjcackpmfo_gcpillab_gcpillab_a@bounce.e.theatlantic.com",\
    "to": "[email protected]",\
    "from": "The Atlantic Politics <[email protected]>",\
    "cc": "",\
    "subject": "Will Trump take the high road?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T00:11:48.000Z"\
  },\
  {\
    "id": 1988313403,\
    "uuid": "C5AA67BF-07E6-47EE-B391-99F8B1050E27.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Laura\" <[email protected]>",\
    "from": "\"Olivia\" <[email protected]>",\
    "cc": "",\
    "subject": "There's a lot of bright stripes in life with Viagra Super Force.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 24,\
        "mode": "inbound",\
        "title": "Exploits Block List",\
        "description": "This message came from an IP that is on the Exploits Block List. The XBL is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits.",\
        "weight": 200\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 23,\
        "mode": "inbound",\
        "title": "Spamhaus Block List",\
        "description": "This message came from an IP that is on the Spamhaus Block List.",\
        "weight": 200\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1185169,\
      "name": "porn"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T22:03:10.000Z"\
  },\
  {\
    "id": 1988295023,\
    "uuid": "9733A427-1D0C-4340-8481-A83E7A3BD8F1.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Zaria\" <[email protected]>",\
    "from": "\"Juniper\" <[email protected]>",\
    "cc": "",\
    "subject": "Kamagra Brand Oral Jelly - best ED medication. Cheaper now!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1185169,\
      "name": "porn"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T21:29:33.000Z"\
  },\
  {\
    "id": 1988285415,\
    "uuid": "B9C468A0-C89B-40C3-9BBA-F613C22C65BE.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016f87011e46-cc24048e-f310-44c7-9893-e4974f6256f5-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Pelosi says House will vote Thursday on measure to limit Trump's military actions regarding Iran",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T21:13:15.000Z"\
  },\
  {\
    "id": 1988281473,\
    "uuid": "BA8095BA-95A3-4542-8F1D-A63BCA9C17DE.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"[email protected]\" <[email protected]>",\
    "from": "\"WSJ.com Editors\" <[email protected]>",\
    "cc": "",\
    "subject": "Opinion: Best of the Web - A Reagan Revival in Trump’s Foreign Policy?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T21:07:18.000Z"\
  },\
  {\
    "id": 1988280486,\
    "uuid": "48BDDBF5-94DC-4CA9-8110-A6070781307C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Sunny\" <[email protected]>",\
    "from": "\"Avah\" <[email protected]>",\
    "cc": "",\
    "subject": "can we schedule an appointment for the weekend?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1139911,\
      "name": "*"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T21:06:10.000Z"\
  },\
  {\
    "id": 1988279850,\
    "uuid": "DEC2CE14-F1CA-4355-9575-4CB6C42636C4.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Bloomberg\" <[email protected]>",\
    "cc": "",\
    "subject": "New Year, new deal: Subscribe for just $1.99",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T21:05:12.000Z"\
  },\
  {\
    "id": 1988275241,\
    "uuid": "8BE01A59-DC69-47F5-B46C-DFA2E7F1E18A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "=?utf-8?Q?NextDraft?= <[email protected]>",\
    "cc": "",\
    "subject": "Flame War",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T20:57:31.000Z"\
  },\
  {\
    "id": 1988264493,\
    "uuid": "55A73FDF-B408-4582-9546-7622C34BBD60.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Isla\" <[email protected]>",\
    "from": "\"Addison\" <[email protected]>",\
    "cc": "",\
    "subject": "remember the weekend?",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 1000\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 11,\
        "mode": "inbound",\
        "title": "SPF Soft Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send but is in transition\t.",\
        "weight": 100\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 170,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 34,\
        "mode": "inbound",\
        "title": "Spam",\
        "description": "This message contained content matching our spam heuristics.",\
        "weight": 200\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 1185169,\
      "name": "porn"\
    },\
    "user_group": {\
      "id": 20350,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T20:43:19.000Z"\
  },\
  {\
    "id": 1988250964,\
    "uuid": "C5E16916-10E3-44A5-9274-A38ECB8DA2E8.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Friend\" <[email protected]>",\
    "from": "Jonathan Garthwaite <[email protected]>",\
    "cc": "",\
    "subject": "Trump Declares Victory Over Iran",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T20:22:26.000Z"\
  },\
  {\
    "id": 1988184786,\
    "uuid": "4DC0CC28-78F7-4C6A-9907-E100018B97D0.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Tara Pollak\" <[email protected]>",\
    "cc": "",\
    "subject": "Your 2020 Security Checklist",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "Different User Group Name"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-08T19:01:03.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"15cd9ac1c7ae9f9a5e92e1a24326332e"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

c03a01ec-404e-417c-9fbf-be7e4d8a6aa9

X-Runtime

14.264853

Transfer-Encoding

chunked

POSTRelease Message

emailservice.io/api/v1/messages/{{message_id}}/deliver

Release a message from the quarantine. The recipients field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}

Example Request

Release Message

curl

curl --location -g 'emailservice.io/api/v1/messages/{{message_id}}/deliver' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

e630abe8-ad9d-4ede-9c68-e88a74e273c7

X-Runtime

1.371039

POSTRelease Multiple Messages

emailservice.io/api/v1/domains/{{domain_id}}/messages/deliver_many

Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing all_selected: true will release all currently held messages from a domain's quarantine.

Note: Message ID's provided in the payload that do not belong to a user under the domain specified in the URL path will not be released, which will be evident in the request response.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}

Example Request

Release Multiple Messages

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/messages/deliver_many' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}'

200 OK

Example Response

  • Body
  • Headers (12)

json

{
  "delivered_messages": [\
    2015573173,\
    2015573567\
  ]
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"3f602713b4241cb2e3030443e7df8e91"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

e5ca6bef-d2ff-4a98-9fa5-6047f1b8fd0c

X-Runtime

1.059916

Transfer-Encoding

chunked

User Syncs

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

User Sync Schedules

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Sync Schedule

emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule

Get a user sync schedule for a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Sync Schedule

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 370,
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "interval": 60,
  "enabled": true,
  "last_run_at": "2020-01-09T22:19:05.000Z",
  "next_run_at": "2020-01-09T23:19:05.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/102/user_sync_schedule

Content-Type

application/json; charset=utf-8

ETag

W/"c3e317a58b37260f188fdeea18a90ebd"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

9cced8cf-3ae9-425e-9f62-9b995a6fa716

X-Runtime

3.487420

Transfer-Encoding

chunked

PUTUpdate User Sync Schedule

emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule

Update a domain's user sync schedule. The interval is used to calculate the minutes between user syncs.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Content-Type

application/json

Bodyraw

{
	"interval": 30,
	"enabled": true
}

Example Request

Update User Sync Schedule

curl

curl --location -g --request PUT 'emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule' \
--header 'Content-Type: application/json' \
--data '{
	"interval": 30,
	"enabled": true
}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 370,
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "interval": 30,
  "enabled": true,
  "last_run_at": "2020-01-09T22:19:05.000Z",
  "next_run_at": "2020-01-09T23:19:05.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/102/user_sync_schedule

Content-Type

application/json; charset=utf-8

ETag

W/"765069aa1558d360557ee9442e7c32af"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

fddbbe6a-da19-4ea0-8b8c-cda7ca0ef87f

X-Runtime

0.661128

Transfer-Encoding

chunked

User Sync Filters

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Sync Filters

emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters

Get a list of user sync filters belonging to a particular user sync.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Sync Filters

curl

curl --location -g 'emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 2820,\
    "field": "Department",\
    "value": "Accounting",\
    "filter_group": "all",\
    "comparison_type": {\
      "id": 1,\
      "name": "equals"\
    }\
  },\
  {\
    "id": 2841,\
    "field": "userprincipalname",\
    "value": "value",\
    "filter_group": "any",\
    "comparison_type": {\
      "id": 1,\
      "name": "equals"\
    }\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":2,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"71e5f1e7b30966048af8f9d94e40059c"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

31ce77fc-0a8f-4edf-bfc1-56ee67348336

X-Runtime

6.850352

Transfer-Encoding

chunked

GETUser Sync Filter

emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}

Get a user sync filter by its ID

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Sync Filter

curl

curl --location -g 'emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 2820,
  "field": "Department",
  "value": "Accounting",
  "filter_group": "all",
  "comparison_type": {
    "id": 1,
    "name": "equals"
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_syncs/2820/filters

Content-Type

application/json; charset=utf-8

ETag

W/"e7fcde3599dba0d4e0901fc269a57cef"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

84610078-d063-4e85-9dfd-14cc2c0da6ba

X-Runtime

2.353154

Transfer-Encoding

chunked

POSTCreate User Sync Filter

emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters

Create a user sync filter.

Comparison Type IDDescription
1Equals
2Does not equal
3Greater than
4Less Than
5Contains
6Does not contain
7Matches
8Does not match

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"field": "userprincipalname",
	"value": "value",
	"filter_group": "any",
	"comparison_type_id": 1
}

Example Request

Create User Sync Filter

curl

curl --location -g 'emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"field": "userprincipalname",
	"value": "value",
	"filter_group": "any",
	"comparison_type_id": 1
}'

201 Created

Example Response

  • Body
  • Headers (12)

json

{
  "id": 2842,
  "field": "userprincipalname",
  "value": "value",
  "filter_group": "any",
  "comparison_type": {
    "id": 1,
    "name": "equals"
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"3f78cef3664b945b179112248f0a2b1e"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

d32e2f11-2f1c-4194-9f19-36318cba874b

X-Runtime

0.861734

Transfer-Encoding

chunked

DELETEDelete User Sync Filter

emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}

Remove a user sync filter from a user sync.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete User Sync Filter

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

59edff1f-b988-4f88-95cb-477150f7c563

X-Runtime

5.992195

GETDomain User Syncs

emailservice.io/api/v1/domains/{{domain_id}}/user_syncs

Get a list of user syncs belonging to a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Domain User Syncs

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/user_syncs' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 3229,\
    "name": "Active Directory",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "destination_user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "source_type": "UserSync::LdapSource",\
    "source": {\
      "id": 1138,\
      "host": null,\
      "port": null,\
      "usersname": null,\
      "password": null,\
      "search_base": null,\
      "use_ssl": false\
    },\
    "filters": [\
      {\
        "id": 2820,\
        "field": "Department",\
        "value": "Accounting",\
        "comparison_type": 1\
      }\
    ],\
    "alive": true,\
    "priority": null,\
    "enabled": false\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"eb8f26d5578f30a018c92f17ed49be20"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

37fc5ccc-3b64-4124-b916-da803882efcc

X-Runtime

4.435091

Transfer-Encoding

chunked

GETGet User Sync

emailservice.io/api/v1/user_syncs/{{user_sync_id}}

Get a single user sync using its ID.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get User Sync

curl

curl --location -g 'emailservice.io/api/v1/user_syncs/{{user_sync_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 3229,
  "name": "Active Directory",
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "destination_user_group": {
    "id": 109,
    "name": "CloudMail with Bracket"
  },
  "source_type": "UserSync::LdapSource",
  "source": {
    "id": 1138,
    "host": null,
    "port": null,
    "usersname": null,
    "password": null,
    "search_base": null,
    "use_ssl": false
  },
  "filters": [\
    {\
      "id": 2820,\
      "field": "Department",\
      "value": "Accounting",\
      "comparison_type": 1\
    }\
  ],
  "alive": true,
  "priority": null,
  "enabled": false
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_syncs/3229

Content-Type

application/json; charset=utf-8

ETag

W/"34c29f7dcd0a599b1760907d41acfcf1"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

9fe1f37e-e876-49cd-9683-65ee7aabb7d4

X-Runtime

2.910249

Transfer-Encoding

chunked

POSTCreate User Sync

emailservice.io/api/v1/domains/{{domain_id}}/user_syncs

Create a new user sync for a domain. When creating a user sync, the user sync's source should be supplied. New user syncs are disabled by default unless enabled: "true" is passed in the payload.

Source TypeDescription
UserSync::LdapSourceLdap source.
UserSync::GoogleSourceGSuite source. Not available through the API. Must be provisioned through the web console.
UserSync::MicrosoftGraphSourceMicrosoft Office365 source. Not available through the API. Must be provisioned through the web console.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

View More

{
	"destination_user_group_id": 109,
	"source_type": "UserSync::LdapSource",
	"enabled": "true",
	"source": {
		"host": "host.com",
		"port": "389",
		"use_ssl": "false",
		"username": "username",
		"password": "password",
		"search_base": "dc=MAILPROTECTOR,dc=local, OU=OrgUnit"
	}
}

Example Request

Create User Sync

View More

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/user_syncs' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"destination_user_group_id": 109,
	"source_type": "UserSync::LdapSource",
	"enabled": "true",
	"source": {
		"host": "host.com",
		"port": "389",
		"use_ssl": "false",
		"username": "username",
		"password": "password",
		"search_base": "dc=MAILPROTECTOR,dc=local, OU=OrgUnit"
	}
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 3279,
  "name": "Active Directory",
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "destination_user_group": {
    "id": 109,
    "name": "CloudMail with Bracket"
  },
  "source_type": "UserSync::LdapSource",
  "source": {
    "id": 1156,
    "host": "host.com",
    "port": "389",
    "usersname": "username",
    "password": "password",
    "search_base": "dc=MAILPROTECTOR,dc=local, OU=OrgUnit",
    "use_ssl": false
  },
  "filters": [],
  "alive": true,
  "priority": null,
  "enabled": true
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_syncs/3279

Content-Type

application/json; charset=utf-8

ETag

W/"f52a7209bdffd2a64232ba4465f36f19"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

21526cc1-b52a-4f68-b008-a0cd642640c3

X-Runtime

0.732769

Transfer-Encoding

chunked

PUTUpdate User Sync

emailservice.io/api/v1/user_syncs/{{user_sync_id}}

Update an existing user sync. Accepts the same parameters as creating a user sync.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

View More

{
	"destination_user_group_id": 19543,
	"source_type": "UserSync::LdapSource",
	"enabled": true,
	"source": {
		"host": "new-host.com",
		"port": "389",
		"use_ssl": "false",
		"username": "username",
		"password": "password",
		"search_base": "dc=MAILPROTECTOR,dc=local, OU=OrgUnit"
	}
}

Example Request

Update User Sync

View More

curl

curl --location -g --request PUT 'emailservice.io/api/v1/user_syncs/{{user_sync_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"destination_user_group_id": 19543,
	"source_type": "UserSync::LdapSource",
	"enabled": false,
	"source": {
		"host": "new-host.com",
		"port": "389",
		"use_ssl": "false",
		"username": "username",
		"password": "password",
		"search_base": "dc=MAILPROTECTOR,dc=local, OU=OrgUnit"
	}
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 3229,
  "name": "Active Directory",
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "destination_user_group": {
    "id": 19543,
    "name": "Continuity Bundle (CloudFilter + XtraMail)"
  },
  "source_type": "UserSync::LdapSource",
  "source": {
    "id": 1138,
    "host": "new-host.com",
    "port": "389",
    "usersname": "username",
    "password": "password",
    "search_base": "dc=MAILPROTECTOR,dc=local, OU=OrgUnit",
    "use_ssl": false
  },
  "filters": [\
    {\
      "id": 2820,\
      "field": "Department",\
      "value": "Accounting",\
      "comparison_type": 1\
    }\
  ],
  "alive": true,
  "priority": null,
  "enabled": false
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_syncs/3229

Content-Type

application/json; charset=utf-8

ETag

W/"4f83bba5a66485bfe7c8aaaf95f2bf0e"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

dc5d64b1-9c22-4377-95dc-75efdeeb2970

X-Runtime

0.534408

Transfer-Encoding

chunked

DELETEDelete User Sync

emailservice.io/api/v1/user_syncs/{{user_sync_id}}

Delete a user sync.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete User Sync

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/user_syncs/{{user_sync_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

f50474a3-c68e-4e85-aa0b-99fd44d0b80d

X-Runtime

1.761101

GETDomains

emailservice.io/api/v1/{{entity}}/{{entity_id}}/domains

Get information about many domains at once.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get Domains Under Customer

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/domains' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 20043,\
    "name": "bracket.email",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2017-03-08T16:07:58.000Z",\
    "updated_at": "2017-05-31T09:14:35.000Z"\
  },\
  {\
    "id": 15650,\
    "name": "cloudmail.email",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2014-07-17T21:07:53.000Z",\
    "updated_at": "2015-09-21T03:06:29.000Z"\
  },\
  {\
    "id": 15288,\
    "name": "cloudmail.net",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2014-05-23T21:53:53.000Z",\
    "updated_at": "2015-09-21T03:05:34.000Z"\
  },\
  {\
    "id": 16370,\
    "name": "emailservice.io",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2015-02-26T20:00:18.000Z",\
    "updated_at": "2015-09-21T03:12:31.000Z"\
  },\
  {\
    "id": 17044,\
    "name": "exchange2016.mpdemo.net",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2015-10-28T15:29:53.000Z",\
    "updated_at": "2018-08-23T03:00:33.000Z"\
  },\
  {\
    "id": 17995,\
    "name": "forcencrypt.email",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2016-06-20T19:24:05.000Z",\
    "updated_at": "2016-06-22T09:12:28.000Z"\
  },\
  {\
    "id": 11744,\
    "name": "getcloudfilter.com",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2012-12-27T17:37:56.000Z",\
    "updated_at": "2016-11-17T09:07:08.000Z"\
  },\
  {\
    "id": 1489,\
    "name": "mailprotector.biz",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2010-08-23T19:31:22.000Z",\
    "updated_at": "2018-02-19T09:00:45.000Z"\
  },\
  {\
    "id": 1481,\
    "name": "mailprotector.co.uk",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2010-08-23T19:29:18.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 1473,\
    "name": "mailprotector.com",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2010-08-23T19:27:24.000Z",\
    "updated_at": "2018-08-23T02:00:48.000Z"\
  },\
  {\
    "id": 1477,\
    "name": "mailprotector.com.au",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2010-08-23T19:28:00.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 9073,\
    "name": "mailprotector.me",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2011-03-01T18:31:01.000Z",\
    "updated_at": "2016-04-28T09:04:09.000Z"\
  },\
  {\
    "id": 1483,\
    "name": "mailprotectorupdate.biz",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2010-08-23T19:29:25.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 1485,\
    "name": "mailprotectorupdate.net",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2010-08-23T19:30:08.000Z",\
    "updated_at": "2015-09-21T02:00:54.000Z"\
  },\
  {\
    "id": 27614,\
    "name": "newdomain2.com",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 1,\
      "name": "Pending"\
    },\
    "parent": null,\
    "verification_token": "JfqhMDi6OSOGmaTr1I/1j2KI2jQWjSl9ioy+5QPbKMA=",\
    "created_at": "2019-08-09T16:27:23.000Z",\
    "updated_at": "2019-08-09T16:27:23.000Z"\
  },\
  {\
    "id": 22214,\
    "name": "otransport-1.us-east-1.mailprotector.net",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2018-02-07T15:33:14.000Z",\
    "updated_at": "2018-02-08T09:28:21.000Z"\
  },\
  {\
    "id": 15652,\
    "name": "securestore.email",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2014-07-17T21:09:16.000Z",\
    "updated_at": "2015-09-21T03:06:29.000Z"\
  },\
  {\
    "id": 15648,\
    "name": "xtramail.email",\
    "account": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "domain_status": {\
      "id": 2,\
      "name": "Active"\
    },\
    "parent": null,\
    "verification_token": null,\
    "created_at": "2014-07-17T21:03:52.000Z",\
    "updated_at": "2015-09-21T03:06:29.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":18,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"83147d3044b2eb13359f5c8907e8f37b"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

5d2c3e70-8774-470a-829c-669092933788

X-Runtime

1.260417

Transfer-Encoding

chunked

GETDomain

emailservice.io/api/v1/domains/{{domain_id}}

Get information about a single domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get Domain By ID

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 102,
  "name": "mpdemo.net",
  "account": {
    "id": 7114,
    "name": "Mailprotector Demo Customer"
  },
  "domain_status": {
    "id": 2,
    "name": "Active"
  },
  "parent": null,
  "verification_token": null,
  "created_at": "2010-01-02T00:00:00.000Z",
  "updated_at": "2019-08-23T02:00:52.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/102

Content-Type

application/json; charset=utf-8

ETag

W/"e83f63cc9575e0f4d96f00b2efa1d97f"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

655a87cc-7fb2-469d-bd17-c18314f442c6

X-Runtime

0.217272

Transfer-Encoding

chunked

POSTCreate Domain

emailservice.io/api/v1/customers/{{customer_id}}/domains

Create a new domain under a customer account. The new domain will automatically be put in a "pending" state which will require verification before mail is filtered for that domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "new-domain.com"
}

Example Request

Create Domain

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/domains' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--data '{
	"name": "new-domain.com"
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 28480,
  "name": "new-domain.com",
  "account": {
    "id": 329,
    "name": "Mailprotector group"
  },
  "domain_status": {
    "id": 1,
    "name": "Pending"
  },
  "parent": null,
  "verification_token": "otFBZ1SvhceapIOOTiRxYr788GzVnY05ny0OvXyyi6Y=",
  "created_at": "2019-12-27T21:47:02.000Z",
  "updated_at": "2019-12-27T21:47:02.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/28480

Content-Type

application/json; charset=utf-8

ETag

W/"6ca94589ee57bd10dabe5f41819f6e81"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

74dc4a16-6bcd-4559-9b1e-8455d695d170

X-Runtime

2.400473

Transfer-Encoding

chunked

POSTCreate Domain Alias

emailservice.io/api/v1/domains/{{domain_id}}/aliases

Create a new domain alias for a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name":"domain-alias.com"
}

Example Request

Create Domain Alias

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/aliases' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name":"domain-alias.com"
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 28481,
  "name": "domain-alias.com",
  "account": {
    "id": 7114,
    "name": "Mailprotector Demo Customer"
  },
  "domain_status": {
    "id": 1,
    "name": "Pending"
  },
  "parent": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "verification_token": "xUA9khcFa6S6fdVAr/li0i/lXXo1wfdbvplUoBrhQ0Y=",
  "created_at": "2019-12-30T20:09:39.000Z",
  "updated_at": "2019-12-30T20:09:39.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/28481/aliases

Content-Type

application/json; charset=utf-8

ETag

W/"cffd98fdd64812632beac14c11b0d4e4"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

5041fe2b-f145-4841-a823-1ba0c070ffd8

X-Runtime

12.727952

Transfer-Encoding

chunked

POSTMove Domain

emailservice.io/api/v1/domains/{{domain_id}}/move

Move a domain from one customer to another within the same reseller.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"customer_id": 16998
}

Example Request

Move Domain

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/move' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"customer_id": 16998
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 102,
  "name": "mpdemo.net",
  "account": {
    "id": 16998,
    "name": "Test Customer 3"
  },
  "domain_status": {
    "id": 2,
    "name": "Active"
  },
  "parent": null,
  "verification_token": "dY6sAmKzoYcZONSYtxswGZqZhPWQpa1PbrX1chJgQY4=",
  "address_discovery_enabled": true,
  "created_at": "2010-01-02T00:00:00.000Z",
  "updated_at": "2020-01-16T17:20:30.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/102

Content-Type

application/json; charset=utf-8

ETag

W/"489984d4afd9447f577469361a55a2ae"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

e1f17f23-dfcf-46ff-a471-8bc4ddd22be1

X-Runtime

28.877149

Transfer-Encoding

chunked

PUTUpdate Domain

emailservice.io/api/v1/domains/{{domain_id}}

Update a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"address_discovery_enabled": false
}

Example Request

Update Domain

curl

curl --location -g --request PUT 'emailservice.io/api/v1/domains/{{domain_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"address_discovery_enabled": false
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 102,
  "name": "mpdemo.net",
  "account": {
    "id": 7114,
    "name": "Mailprotector Demo Customer"
  },
  "domain_status": {
    "id": 2,
    "name": "Active"
  },
  "parent": null,
  "verification_token": "4wEFVdi7Ym0TXGOaJBNoy95Z99YXm87CVMyQxaaa6SQ=",
  "address_discovery_enabled": false,
  "created_at": "2010-01-02T00:00:00.000Z",
  "updated_at": "2019-12-30T22:24:37.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/domains/102

Content-Type

application/json; charset=utf-8

ETag

W/"3bdeabd62720d3eb15dabc3128ff8d27"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

e4dcb52b-ffcf-4d15-9d5d-7649871f9691

X-Runtime

0.255831

Transfer-Encoding

chunked

DELETEDelete Domain

emailservice.io/api/v1/domains/{{domain_id}}

Delete a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Domain

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/domains/{{domain_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

f01be778-28ef-4f48-8d31-37afb8f77c87

X-Runtime

1.157667

User Groups

Get, create, update, and delete user groups.

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

Users

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Group Users

emailservice.io/api/v1/user_groups/{{user_group_id}}/users

Get users belonging to a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group Users

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/users' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 826457,\
    "name": "andy",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2017-03-10T16:14:42.000Z",\
    "updated_at": "2020-01-09T13:28:16.000Z"\
  },\
  {\
    "id": 700549,\
    "name": "athena",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Athena ",\
    "last_name": "",\
    "created_at": "2015-10-20T14:18:11.000Z",\
    "updated_at": "2020-01-09T13:08:23.000Z"\
  },\
  {\
    "id": 9634,\
    "name": "ben",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Ben",\
    "last_name": "Hathaway",\
    "created_at": "2010-05-13T18:12:15.000Z",\
    "updated_at": "2020-01-09T13:00:09.000Z"\
  },\
  {\
    "id": 848411,\
    "name": "bill",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2017-05-22T20:16:20.000Z",\
    "updated_at": "2020-01-09T13:30:09.000Z"\
  },\
  {\
    "id": 871139,\
    "name": "carnegie",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Carnegie",\
    "last_name": "User",\
    "created_at": "2017-08-11T19:00:29.000Z",\
    "updated_at": "2020-01-09T13:33:47.000Z"\
  },\
  {\
    "id": 865693,\
    "name": "charles",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Charles ",\
    "last_name": "Love",\
    "created_at": "2017-07-25T14:11:09.000Z",\
    "updated_at": "2020-01-09T13:31:49.000Z"\
  },\
  {\
    "id": 9635,\
    "name": "david",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-05-13T18:12:15.000Z",\
    "updated_at": "2020-01-09T13:00:10.000Z"\
  },\
  {\
    "id": 848410,\
    "name": "dennis",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2017-05-22T20:15:56.000Z",\
    "updated_at": "2020-01-09T13:30:09.000Z"\
  },\
  {\
    "id": 746912,\
    "name": "forcencrypt",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "ForcEncrypt",\
    "last_name": "Demo",\
    "created_at": "2016-08-16T16:29:34.000Z",\
    "updated_at": "2020-01-09T13:12:53.000Z"\
  },\
  {\
    "id": 1123452,\
    "name": "hsolo",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Han",\
    "last_name": "Solo",\
    "created_at": "2019-04-01T22:05:28.000Z",\
    "updated_at": "2020-01-09T14:41:12.000Z"\
  },\
  {\
    "id": 811831,\
    "name": "information",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2017-01-25T21:04:33.000Z",\
    "updated_at": "2020-01-09T13:26:54.000Z"\
  },\
  {\
    "id": 9637,\
    "name": "jeremy",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Jeremy",\
    "last_name": "Nigh",\
    "created_at": "2010-05-13T18:12:15.000Z",\
    "updated_at": "2020-01-09T13:00:10.000Z"\
  },\
  {\
    "id": 849879,\
    "name": "john",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "John",\
    "last_name": "Henderson",\
    "created_at": "2017-05-28T17:56:53.000Z",\
    "updated_at": "2020-01-09T13:30:14.000Z"\
  },\
  {\
    "id": 1198487,\
    "name": "joshcmnametest",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Josh",\
    "last_name": "NameTest",\
    "created_at": "2019-08-12T16:15:02.000Z",\
    "updated_at": "2020-01-09T15:05:55.000Z"\
  },\
  {\
    "id": 1182450,\
    "name": "joshtest",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Josh",\
    "last_name": "Test",\
    "created_at": "2019-07-17T19:00:10.000Z",\
    "updated_at": "2020-01-09T16:23:27.000Z"\
  },\
  {\
    "id": 894395,\
    "name": "justin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Justin",\
    "last_name": "Hathaway",\
    "created_at": "2017-11-09T15:15:31.000Z",\
    "updated_at": "2020-01-09T13:37:10.000Z"\
  },\
  {\
    "id": 849530,\
    "name": "kurin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Kurin",\
    "last_name": "Quintavalle",\
    "created_at": "2017-05-25T17:51:39.000Z",\
    "updated_at": "2020-01-09T13:30:12.000Z"\
  },\
  {\
    "id": 846968,\
    "name": "laura",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2017-05-15T19:19:45.000Z",\
    "updated_at": "2020-01-09T13:30:02.000Z"\
  },\
  {\
    "id": 862746,\
    "name": "markgcm",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Mark",\
    "last_name": "G Demo",\
    "created_at": "2017-07-11T20:56:50.000Z",\
    "updated_at": "2020-01-09T13:31:26.000Z"\
  },\
  {\
    "id": 9646,\
    "name": "michael",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-05-13T18:12:15.000Z",\
    "updated_at": "2020-01-09T13:00:10.000Z"\
  },\
  {\
    "id": 848413,\
    "name": "rachel",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2017-05-22T20:16:45.000Z",\
    "updated_at": "2020-01-09T13:30:09.000Z"\
  },\
  {\
    "id": 883647,\
    "name": "smtptest",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2017-10-09T14:56:13.000Z",\
    "updated_at": "2020-01-09T13:35:35.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":22,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"72cc8880158523664270550d16245ce5"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

81dd49df-d813-4472-9c79-733726865496

X-Runtime

1.076381

Transfer-Encoding

chunked

POSTCreate User

emailservice.io/api/v1/user_groups/{{user_group_id}}/users

Create a single user under a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name":"Username",
	"first_name":"First Name",
	"last_name": "Last Name",
	"user_type_id": 1,
	"aliases": ["alias_username","alias_username2"]
}

Example Request

Create User

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/users' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name":"Username",
	"first_name":"First Name",
	"last_name": "Last Name",
	"user_type_id": 1,
	"aliases": ["alias_username","alias_username2"]
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1274645,\
    "name": "username",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "First Name",\
    "last_name": "Last Name",\
    "created_at": "2020-01-10T17:01:23.000Z",\
    "updated_at": "2020-01-10T17:01:23.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/users/1274645

Content-Type

application/json; charset=utf-8

ETag

W/"dc9756db58e781d4dc8fbf7a3674a409"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

2da0fbd6-d0fb-4a31-a18f-69578bb79aaf

X-Runtime

1.154319

Transfer-Encoding

chunked

POSTCreate Multiple Users

emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many

Create multiple users under a user group at once.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

View More

{
	"users":[\
		{\
			"name":"Username1",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username1-1","alias_username1-2"]\
		},\
		{\
			"name":"Username2",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username2-1","alias_username2-2"]\
		}\
	]
}

Example Request

Create Multiple Users

View More

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"users":[\
		{\
			"name":"Username1",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username1-1","alias_username1-2"]\
		},\
		{\
			"name":"Username2",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username2-1","alias_username2-2"]\
		}\
	]
}
'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1237621,\
    "name": "username1",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "First Name",\
    "last_name": "Last Name",\
    "created_at": "2019-12-12T23:02:00.000Z",\
    "updated_at": "2019-12-12T23:02:00.000Z"\
  },\
  {\
    "id": 1237622,\
    "name": "username2",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "First Name",\
    "last_name": "Last Name",\
    "created_at": "2019-12-12T23:02:00.000Z",\
    "updated_at": "2019-12-12T23:02:00.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/users/1237621

Content-Type

application/json; charset=utf-8

ETag

W/"247a4069de5a69ec9ebe8527746561e4"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

1c91f5fb-c944-4ff7-bb4f-703e70ae5f8b

X-Runtime

12.588969

Transfer-Encoding

chunked

Conifiguration

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Group Configuration

emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration

Get the configuration for a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group Configuration

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "configuration": {
    "region": {
      "locale": "en",
      "time_zone": "Eastern Time (US & Canada)"
    },
    "archiving": {
      "journal_address": null,
      "smtp_collector_address": null,
      "url": null
    },
    "permissions": {
      "messages": {
        "allow_spam_release": true,
        "allow_policy_release": false,
        "allow_virus_release": false,
        "allow_feed": true
      },
      "console": {
        "allow_console_access": true,
        "allow_user_management_of_allow_block": true,
        "allow_user_management_of_content_rules": false,
        "allow_user_management_of_quarantine_preferences": true,
        "allow_user_management_of_spam_tolerance": true
      }
    },
    "console": {
      "access": {
        "email_authentication_enabled": true,
        "authentication_type": "ldap",
        "authentication_server": "delivery.cloudmail.email",
        "authentication_port": 389,
        "authentication_use_ssl": false,
        "authentication_radius_secret": null,
        "authentication_username": null
      }
    },
    "encryption": {
      "bracket": {
        "allow_export_default": true,
        "allow_users_to_manage_defaults": true,
        "journaling_address": null,
        "protect_subject_default": false,
        "request_bracket_email": "[email protected]",
        "rule_enabled": true,
        "rule_trigger": "square",
        "send_open_notification_default": false,
        "company_profile": {
          "allow_users_to_manage": 1,
          "city": null,
          "include_in_notifications": 0,
          "logo_url_for_email": null,
          "logo_url_for_preview": null,
          "name": null,
          "phone": null,
          "postal_code": null,
          "push_to_all_users": null,
          "push_with_new_users": 0,
          "state": null,
          "street_address": null,
          "website": null
        }
      }
    },
    "filtering": {
      "alerts": {
        "addresses": [\
          "[email protected]"\
        ],
        "include_user": 1,
        "inbound": {
          "virus_enabled": true,
          "policy_enabled": false,
          "spam_enabled": false
        },
        "outbound": {
          "virus_enabled": true,
          "policy_enabled": true,
          "spam_enabled": false
        }
      },
      "spam_tolerance": {
        "quarantine_threshold": 240,
        "tag_threshold": 240,
        "tag_text_location": "subject",
        "tag_text": "[Possible spam]"
      }
    },
    "mail_flow": {
      "inbound": {
        "redirect_alias_to_primary": false,
        "smtp_host": "user_group-109.dev.routing.emailservice.io",
        "smtp_port": 25,
        "smtp_host_use_mx": true,
        "email_destinations_enabled": true,
        "mail_delivery_enabled": true
      },
      "outbound": {
        "relay_enabled": true
      }
    },
    "notifications": {
      "link_hours_until_expiration": 72,
      "link_max_logins": 3,
      "schedule": {
        "enabled": false,
        "start_hour": 8,
        "end_hour": 18,
        "days_of_week": [\
          2,\
          3,\
          4,\
          5,\
          6\
        ]
      }
    },
    "messages": {
      "review": {
        "enabled": true,
        "interval": 24,
        "start_hour": 8,
        "end_hour": 18
      },
      "visibility": {
        "threshold": 400
      }
    }
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"791fc359433e4a7c4a6421ad4367e3bf"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

3f134bc6-541e-4127-896d-49e7d61c7abe

X-Runtime

1.811274

Transfer-Encoding

chunked

PUTEdit User Group Configuration

emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration

Edit the configuration for a user group. Fields not supplied will not be overwritten.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"permissions": {
		"messages": {
			"allow_spam_release": true
		}
	}
}

Example Request

Edit User Group Configuration

curl

curl --location -g --request PUT 'emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"permissions": {
		"messages": {
			"allow_spam_release": true
		}
	}
}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "region": {
    "locale": "en",
    "time_zone": "Eastern Time (US & Canada)"
  },
  "archiving": {
    "journal_address": null,
    "smtp_collector_address": null,
    "url": null
  },
  "permissions": {
    "messages": {
      "allow_spam_release": true,
      "allow_policy_release": false,
      "allow_virus_release": false,
      "allow_feed": true
    },
    "console": {
      "allow_console_access": true,
      "allow_user_management_of_allow_block": true,
      "allow_user_management_of_content_rules": false,
      "allow_user_management_of_quarantine_preferences": true,
      "allow_user_management_of_spam_tolerance": true
    }
  },
  "console": {
    "access": {
      "email_authentication_enabled": true,
      "authentication_type": "ldap",
      "authentication_server": "delivery.cloudmail.email",
      "authentication_port": 389,
      "authentication_use_ssl": false,
      "authentication_radius_secret": null,
      "authentication_username": null
    }
  },
  "encryption": {
    "bracket": {
      "allow_export_default": true,
      "allow_users_to_manage_defaults": true,
      "journaling_address": null,
      "protect_subject_default": false,
      "request_bracket_email": "[email protected]",
      "rule_enabled": true,
      "rule_trigger": "square",
      "send_open_notification_default": false,
      "company_profile": {
        "allow_users_to_manage": 1,
        "city": null,
        "include_in_notifications": 0,
        "logo_url_for_email": null,
        "logo_url_for_preview": null,
        "name": null,
        "phone": null,
        "postal_code": null,
        "push_to_all_users": null,
        "push_with_new_users": 0,
        "state": null,
        "street_address": null,
        "website": null
      }
    }
  },
  "filtering": {
    "alerts": {
      "addresses": [\
        "[email protected]"\
      ],
      "include_user": 1,
      "inbound": {
        "virus_enabled": true,
        "policy_enabled": false,
        "spam_enabled": false
      },
      "outbound": {
        "virus_enabled": true,
        "policy_enabled": true,
        "spam_enabled": false
      }
    },
    "spam_tolerance": {
      "quarantine_threshold": 240,
      "tag_threshold": 240,
      "tag_text_location": "subject",
      "tag_text": "[Possible spam]"
    }
  },
  "mail_flow": {
    "inbound": {
      "redirect_alias_to_primary": false,
      "smtp_host": "user_group-109.dev.routing.emailservice.io",
      "smtp_port": 25,
      "smtp_host_use_mx": true,
      "email_destinations_enabled": true,
      "mail_delivery_enabled": true
    },
    "outbound": {
      "relay_enabled": true
    }
  },
  "notifications": {
    "link_hours_until_expiration": 72,
    "link_max_logins": 3,
    "schedule": {
      "enabled": false,
      "start_hour": 8,
      "end_hour": 18,
      "days_of_week": [\
        2,\
        3,\
        4,\
        5,\
        6\
      ]
    }
  },
  "messages": {
    "review": {
      "enabled": true,
      "interval": 24,
      "start_hour": 8,
      "end_hour": 18
    },
    "visibility": {
      "threshold": 400
    }
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"5778b31dbb8588752d0466469dc85d15"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

c68b4f3d-de99-428f-bc73-271be78507f8

X-Runtime

0.874262

Transfer-Encoding

chunked

Email Destinations

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Group Email Destinations

emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations

Get the email destinations belonging to a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group Email Destinations

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

json

[\
  {\
    "id": 554,\
    "entity_id": 109,\
    "entity_type": "UserGroup",\
    "address": "delivery.cloudmail.email",\
    "priority": 0\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"8b90b4b046d757d44869c709806cc7f4"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

2a1348f9-9ff1-4e15-8a43-3a9b87cab7b3

X-Runtime

0.183173

Transfer-Encoding

chunked

POSTCreate User Group Email Destination

emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations

Create a new email destination for a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"address": "hostname.domain.com"
}

Example Request

Create User Group Email Destination

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"address": "hostname.domain.com"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 1652,
  "entity_id": 109,
  "entity_type": "UserGroup",
  "address": "hostname.domain.com",
  "priority": 1
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/email_destinations/1652

Content-Type

application/json; charset=utf-8

ETag

W/"b52a005f004b05ba4e952cbd41ea1dd4"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

05f9f4c2-1cf9-4aad-be81-8b257e9bd40d

X-Runtime

0.141219

Transfer-Encoding

chunked

Email Sources

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Group Email Sources

emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources

Get all email sources for a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group Email Sources

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

json

[\
  {\
    "id": 128,\
    "entity": {\
      "id": 109,\
      "entity_type": "UserGroup",\
      "name": "CloudMail with Bracket"\
    },\
    "address": "97.81.240.155"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"53bea90083978cfc856e4f76fba0a828"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

3bc12c10-d7a5-4a23-a072-a3a9114d5237

X-Runtime

0.641113

Transfer-Encoding

chunked

POSTCreate User Group Email Source

emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources

Create a new email source for a user group

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"address": "192.168.0.1"
}

Example Request

Create User Group Email Source

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"address": "192.168.0.1"
}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 1642,
  "entity": {
    "id": 109,
    "entity_type": "UserGroup",
    "name": "CloudMail with Bracket"
  },
  "address": "192.168.0.1"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/email_sources/1642

Content-Type

application/json; charset=utf-8

ETag

W/"a8778d918d86b855ab1a8e64341f9963"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

ef2bf6d0-381c-4454-b68b-e5cd7d10b6f0

X-Runtime

0.139784

Transfer-Encoding

chunked

Services

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETGet User Group Services

emailservice.io/api/v1/user_groups/{{user_group_id}}/services

Get the active services for a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get User Group Services

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/services' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 9529,\
    "service_type": "CloudFilter Email Security",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2012-04-30T18:57:35.000Z"\
  },\
  {\
    "id": 38598,\
    "service_type": "CloudMail",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2018-03-06T19:43:00.000Z"\
  },\
  {\
    "id": 7911,\
    "service_type": "SafeSend Outbound",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2012-03-05T03:26:51.000Z"\
  },\
  {\
    "id": 49266,\
    "service_type": "Bracket w/ CloudFilter & SafeSend",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2019-07-25T19:45:48.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":4,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"8e9e1861a6bc508975d47b58a843609b"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

47e0cf6d-589a-4413-8919-1e383e89538c

X-Runtime

0.137099

Transfer-Encoding

chunked

PUTUpdate User Group Services

emailservice.io/api/v1/user_groups/{{user_group_id}}/services

Provision new services or remove active services by updating the services for a user group.

Services are separated into two categories: "Hosting" and "Addons". Any number of "addons" can be supplied, but only one "hosting" option may exist. See the various services below for optional parameters in the request.

The full product names, as listed in the "product" column of the tables below, can be passed to the API to provision the new services. Any services that are not included in the body of the request will be deactivated if they were activated previously.

Hosting

ProductDescription
OtherYou are supplying your own mail server.
GSuiteSame as "other", but implies the mail server is hosted on GSuite.
Office365Same as "other", but implies the mail server is hosted on Office 365.
CloudMailMailprotector's basic mail hosting option. Users can manage email via secure webmail console or email client via (POP3 or IMAP syncing).
ExchangeMailprotector's hosted Exchange 2016.

Addons

ProductDescription
SafeSendEnhanced Outbound Protection
BracketEncrypted Email
SecureStoreEmail Archiving
XtraMailEmail Continuity

Note:

  • CloudFilter cannot be added/removed as a service as it is mandatory for all user groups. If supplied as an addon in the request, it will be ignored.
  • SafeSend must be provisioned with Bracket. If it is not supplied in the request, it will be automatically provisioned when Bracket is activated.
  • The API will remove any services that are not listed in the body of the request. Ex: A user group with SafeSend enabled will have SafeSend deactivated if only "securestore" is provided as an addon.
  • Hosting can only be changed if the user group does not have any currently active users. The recommended way to provision hosting for existing users is to move them from one user group to another which has the desired hosting option activated.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"service_types": {
		"addons": ["bracket", "securestore"],
		"hosting": "other"
	}
}

Example Request

Update User Group Services

curl

curl --location -g --request PUT 'emailservice.io/api/v1/user_groups/{{user_group_id}}/services' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"service_types": {
		"addons": ["bracket", "securestore"],
		"hosting": "other"
	}
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 9529,\
    "service_type": "CloudFilter Email Security",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2012-04-30T18:57:35.000Z"\
  },\
  {\
    "id": 53901,\
    "service_type": "Other",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2020-01-14T21:05:11.000Z"\
  },\
  {\
    "id": 53911,\
    "service_type": "Bracket w/ CloudFilter & SafeSend",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2020-01-14T21:41:15.000Z"\
  },\
  {\
    "id": 53913,\
    "service_type": "SecureStore",\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "created_at": "2020-01-14T22:03:36.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_groups/109/services

Content-Type

application/json; charset=utf-8

ETag

W/"e90311488469cdf478b96f1435f743e8"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

885f518b-49ae-463f-b2d0-2a645ba16419

X-Runtime

0.468191

Transfer-Encoding

chunked

Messages

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Group Messages

emailservice.io/api/v1/user_groups/{{user_group_id}}/messages

Get the messages from the quarantines of users under a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group Messages

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/messages' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": 1994268904,\
    "uuid": "1B93DF58-63E7-4CD0-BB80-89A70F7A3E50.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa9f24269-7833c710-d055-49ac-b0b2-2ab4ffbcf625-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "Environment Alert: The past decade was the hottest ever recorded, driven by spiking temperatures in the past five years",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T16:03:43.000Z"\
  },\
  {\
    "id": 1994268473,\
    "uuid": "04A72C3F-B930-4C59-8588-4B49F62471D6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"\" <[email protected]>",\
    "from": "Fast Company Events <[email protected]>",\
    "cc": "",\
    "subject": "RSVP Now! Join us in Austin at the Fast Company Grill",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T16:01:53.000Z"\
  },\
  {\
    "id": 1994268556,\
    "uuid": "7377EA8D-FFE1-4BE5-88A2-28B20D72FA17.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"\" <[email protected]>",\
    "from": "Fast Company Events <[email protected]>",\
    "cc": "",\
    "subject": "RSVP Now! Join us in Austin at the Fast Company Grill",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T16:01:53.000Z"\
  },\
  {\
    "id": 1994216861,\
    "uuid": "035BF8F2-E632-4034-A7E4-0E3D7B665B92.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa9c71747-98e4dd43-546c-4667-86c7-c7a9654f2829-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Schiff, Nadler are among the House members named as impeachment managers who will prosecute the case against Trump",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T15:16:34.000Z"\
  },\
  {\
    "id": 1994213189,\
    "uuid": "9F4B926A-EA3F-4669-998D-415E4D592012.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Fast Company Compass <[email protected]>",\
    "cc": "",\
    "subject": "The perfect ergonomic keyboard is here",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": "2020-01-15T15:24:18.000Z",\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T15:13:28.000Z"\
  },\
  {\
    "id": 1994213191,\
    "uuid": "68F681F0-1587-421A-A2C0-9D59A132CE1B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Fast Company Compass <[email protected]>",\
    "cc": "",\
    "subject": "The perfect ergonomic keyboard is here",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T15:13:27.000Z"\
  },\
  {\
    "id": 1994184714,\
    "uuid": "3B03D365-B95F-48E9-A78F-626434CB5C83.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa9aaad0e-f89267f9-514e-4572-96b0-f1c920cece30-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Speaker Pelosi expected to name team of House managers who will prosecute the case against Trump. Watch live coverage and analysis.",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 270\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 7,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 50\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T14:45:32.000Z"\
  },\
  {\
    "id": 1994150424,\
    "uuid": "37BB6DEC-4058-4182-87F4-C3097BB658A9.3",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa98bd8cc-cc0fefc8-c0f0-4017-879c-d0b18fe4a688-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Russian cabinet resigns after Putin calls for constitutional change that could give him significant influence after term finishes",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T14:11:52.000Z"\
  },\
  {\
    "id": 1994114526,\
    "uuid": "D01EC168-1D65-42F5-96B2-C20B7166D8FB.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"192.88.135.9 SRNNews.com Newsletter Popup\" <[email protected]>",\
    "from": "Bill Bennett's American Patriot's Daily Almanac\n <[email protected]>",\
    "cc": "",\
    "subject": "Remembering Martin Luther King Jr.",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 540\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T13:36:49.000Z"\
  },\
  {\
    "id": 1994050917,\
    "uuid": "31611E0E-228A-445C-9CAD-1BBA17982A03.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Friend\" <[email protected]>",\
    "from": "Jonathan Garthwaite <[email protected]>",\
    "cc": "",\
    "subject": "Townhall Daily - Jan 15 - Kurt  Schlichter,Ben Shapiro,Walter E. Williams,John Stossel,Sean Spicer and More",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T12:12:50.000Z"\
  },\
  {\
    "id": 1993986685,\
    "uuid": "A5284607-E015-41AA-9B1E-B5719E9CFA92.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-63_HTML-328761131-3163769-7219217-238@bounce.aaas.sciencepubs.org",\
    "to": "<[email protected]>",\
    "from": "\"News from Science\" <[email protected]>",\
    "cc": "",\
    "subject": "World on alert for potential spread of new SARS-like virus found in China",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 380\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T11:01:36.000Z"\
  },\
  {\
    "id": 1993973605,\
    "uuid": "0A670970-82A3-4D54-A583-450DEFEC0FA8.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"192.88.135.9 SRNNews.com Newsletter Popup\" <[email protected]>",\
    "from": "Daybreak Insider <[email protected]>",\
    "cc": "",\
    "subject": "CNN Takes Sides in Dem Debate",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 540\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T10:08:48.000Z"\
  },\
  {\
    "id": 1993995201,\
    "uuid": "C32C1254-08DF-4C42-9636-546A62D957B6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Marcus Wondracek <[email protected]>",\
    "cc": "",\
    "subject": "428 Hilburn Way, Simpsonville, SC + 1 Other New Property",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 420\
    },\
    "results": [\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 9634,\
      "name": "ben"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T09:10:51.000Z"\
  },\
  {\
    "id": 1994004621,\
    "uuid": "8A5F4746-AA7A-4DF2-B458-6BD1A46A24EF.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa76fddf5-1b0da981-fa9a-4c4c-84ec-f5510114d469-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Warren and Sanders managed their growing tensions well. One candidate was a surprising bystander. Read our full debate analysis.",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T04:22:04.000Z"\
  },\
  {\
    "id": 1994057771,\
    "uuid": "C2F8A4FA-AB88-4C42-BE8E-FB3358F9B900.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa746b1a7-9d060edb-631c-4843-b5f9-47addbe3da19-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Ukraine prosecutor offered information related to Biden in exchange for U.S. ambassador’s ouster, newly released materials show",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T03:37:05.000Z"\
  },\
  {\
    "id": 1994035035,\
    "uuid": "1644AAA4-176C-458B-9445-BDCDAC2548A2.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa742ee73-2c28032d-2dcb-46df-9481-026d119bdef0-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "Local Politics Alert: Northam to announce temporary ban on firearms on the grounds of Va. state Capitol, according to two people briefed on his plans",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 270\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 7,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 50\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T03:32:59.000Z"\
  },\
  {\
    "id": 1993990654,\
    "uuid": "342DA022-9906-461D-BD3D-2A4BAAE498C2.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa723a4b8-c47aabec-5509-4c0f-9ccc-7fdf549d4ea2-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Warren and Sanders spar onstage over whether Sanders said a woman couldn't win the presidency",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T02:58:48.000Z"\
  },\
  {\
    "id": 1993986094,\
    "uuid": "24536E49-7A05-403E-9F35-4B2926A020B7.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa701ff85-cbf5a944-ffa1-4625-8e53-798c706294c3-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Michael Flynn moves to withdraw guilty plea, in reversal for former Trump national security adviser",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T02:22:03.000Z"\
  },\
  {\
    "id": 1993998265,\
    "uuid": "F2A38BA1-4D74-4A7F-B44B-49E82D46A622.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa6fe1e72-e163fb18-0522-4394-8fef-19999af1009e-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Tonight's Democratic debate opens with discussion of Iran, war and commander-in-chief credentials. Follow The Post's live coverage.",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T02:17:49.000Z"\
  },\
  {\
    "id": 1993971787,\
    "uuid": "337CB572-CE89-4233-9BD3-1ED03A5E56D6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bfkjlcd_fjcackpmfo_gcpoahnc_gcpoahnc_a@bounce.e.theatlantic.com",\
    "to": "[email protected]",\
    "from": "The Atlantic Politics <[email protected]>",\
    "cc": "",\
    "subject": "Getting out the (Latino) vote",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T00:55:53.000Z"\
  },\
  {\
    "id": 1994055440,\
    "uuid": "C21B0210-F377-4E24-A0D3-5A827032A71B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa6ad9eb0-19159be3-9391-453d-9075-c48c94eb6f35-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Boston Red Sox 'part ways' with manager Alex Cora, who was implicated in MLB sign-stealing scandal",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T00:49:53.000Z"\
  },\
  {\
    "id": 1993970416,\
    "uuid": "FBA4F4E2-0745-4CE9-AE01-3EC679A040F6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bfkjlbe_fjcackpmfo_gcpoacfd_gcpoacfd_a@bounce.e.theatlantic.com",\
    "to": "[email protected]",\
    "from": "The Atlantic <[email protected]>",\
    "cc": "",\
    "subject": "The small rebellion of reading fiction",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T00:29:06.000Z"\
  },\
  {\
    "id": 1993993858,\
    "uuid": "8FC50E31-8C6F-4375-B2AF-B9E503627E96.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa68ecb15-9042c6b0-f9f0-420b-8bc7-0d4f12ff4398-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "Post Exclusive: More than 100 billion pain pills were shipped nationwide over nine years, newly disclosed data shows",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-15T00:16:13.000Z"\
  },\
  {\
    "id": 1993659797,\
    "uuid": "DE46197A-5AE0-41FF-8879-B7174AEE583B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bfkjilh_fjcackpmfo_gcpnoapi_gcpnoapi_a@bounce.e.theatlantic.com",\
    "to": "[email protected]",\
    "from": "The Atlantic <[email protected]>",\
    "cc": "",\
    "subject": "The Atlantic Photo - Winners of the 2019 Ocean Art Underwater Photo Contest",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 380\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T21:04:40.000Z"\
  },\
  {\
    "id": 1993656279,\
    "uuid": "F8D84D99-2216-4272-816F-61091ECC4501.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Bloomberg\" <[email protected]>",\
    "cc": "",\
    "subject": "2020 is a big deal - and so is this",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T21:02:43.000Z"\
  },\
  {\
    "id": 1993655835,\
    "uuid": "18354311-500D-4044-8B9D-57A31363FACF.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Friend\" <[email protected]>",\
    "from": "Jonathan Garthwaite <[email protected]>",\
    "cc": "",\
    "subject": "Pelosi Had a Dirty Little Secret for Withholding Impeachment Articles",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 320\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T20:59:47.000Z"\
  },\
  {\
    "id": 1993679595,\
    "uuid": "8DA55367-D1E3-4A1B-941C-5E8C231AAAB6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "<[email protected]>",\
    "from": "=?utf-8?Q?NextDraft?= <[email protected]>",\
    "cc": "",\
    "subject": "SAD!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T20:32:26.000Z"\
  },\
  {\
    "id": 1993658447,\
    "uuid": "B931BD1E-DB7B-44C3-AB58-F5BC1E5A8C87.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Channel Futures\" <[email protected]>",\
    "cc": "",\
    "subject": "Guide to Setting Hourly Rates for Field Service Technicians",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 320\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T20:31:19.000Z"\
  },\
  {\
    "id": 1993576997,\
    "uuid": "83DEFEDA-A0FA-4897-A719-25B9C2B94DE0.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa5bc523d-84bc7be7-011e-4fea-9f32-e3e466792b01-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Senate resolution to limit Trump's military authority on Iran has enough Republican votes to pass, key Democrat says",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T20:26:20.000Z"\
  },\
  {\
    "id": 1993668763,\
    "uuid": "91FB47C5-2718-4B75-B68B-5E5E97679B92.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa4fad264-e4cfce96-010d-4880-99fa-81bef8148ddb-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "The Daily 202: 10 questions after Pelosi announces a Wednesday vote on transmitting the articles of impeachment",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 40\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T16:54:58.000Z"\
  },\
  {\
    "id": 1993380671,\
    "uuid": "9B4E2AAE-990E-445B-8559-6149091BC11A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "[email protected]",\
    "cc": "",\
    "subject": "test Tue, 14 Jan 2020 11:44:51 -0500",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 440\
    },\
    "results": [\
      {\
        "id": 1,\
        "mode": "inbound",\
        "title": "No Reverse DNS",\
        "description": "The server that relayed the message did not have a reverse DNS record.",\
        "weight": 40\
      },\
      {\
        "id": 25,\
        "mode": "inbound",\
        "title": "Policy Block List",\
        "description": "This message came form an IP that is on the Policy Block List. The PBL is a DNSBL database of end-user IP address ranges which should not be delivering unauthenticated SMTP email to any Internet mail server except those provided for specifically by an ISP for that customer's use.",\
        "weight": 200\
      },\
      {\
        "id": 10,\
        "mode": "inbound",\
        "title": "SPF Hard Fail",\
        "description": "The SPF record has designated the host as NOT being allowed to send.",\
        "weight": 300\
      },\
      {\
        "id": 169,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (From)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the from header.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 9634,\
      "name": "ben"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T16:44:51.000Z"\
  },\
  {\
    "id": 1993367346,\
    "uuid": "E610F239-8CC2-4BDB-BE8F-81309756746F.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Channel Futures\" <[email protected]>",\
    "cc": "",\
    "subject": "🎣 Hook, Line & Sinker: Phishing Report",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 300\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T16:32:05.000Z"\
  },\
  {\
    "id": 1993356114,\
    "uuid": "61C9F31F-7176-4473-8E18-739E6D4E4B8D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"iPhone Life\" <[email protected]>",\
    "cc": "",\
    "subject": "STM Goods: Charge into the New Year with 20% Off Wireless Powerbank",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T16:23:17.000Z"\
  },\
  {\
    "id": 1993278651,\
    "uuid": "70839F9B-4E39-4A4D-811D-E0A40F6C831C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa49d74dd-e2b16abd-eacf-428e-93ed-e04513a25b87-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: NSA found a dangerous Microsoft software flaw and alerted the firm — rather than weaponize it",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T15:13:00.000Z"\
  },\
  {\
    "id": 1993264045,\
    "uuid": "20D07D09-E673-4DD2-BC0D-70E65DDEF908.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Fast Company Compass <[email protected]>",\
    "cc": "",\
    "subject": "It’s official: Data visualization has gone mainstream",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T15:01:45.000Z"\
  },\
  {\
    "id": 1993264097,\
    "uuid": "027AF2A2-8B5C-4F79-885D-AF22A597E264.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Fast Company Compass <[email protected]>",\
    "cc": "",\
    "subject": "It’s official: Data visualization has gone mainstream",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 220\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T15:01:45.000Z"\
  },\
  {\
    "id": 1993261772,\
    "uuid": "82821312-C5A7-42D0-B76C-BFE3045C0F17.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounces+6692116-dc2e-carnegie=mpdemo.net@abmail.mailings.ncaa.com",\
    "to": "[email protected]",\
    "from": "\"NCAA.com\" <[email protected]>",\
    "cc": "",\
    "subject": "The Journey to Detroit Continues!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 173,\
        "mode": "inbound",\
        "title": "SPF Soft Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header but is in transition\t.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T15:00:16.000Z"\
  },\
  {\
    "id": 1993244610,\
    "uuid": "80E1CD32-CD39-42BC-AC56-6C16F5493506.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0100016fa48211d2-05eda1c9-13b7-437a-97ec-4edb131a87fa-000000@email.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: House to vote Wednesday to send impeachment articles against Trump to the Senate",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T14:43:05.000Z"\
  },\
  {\
    "id": 1993194920,\
    "uuid": "E4DB7CE2-1146-4EE1-9E20-1E6AC0F5DE57.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Channel Futures\" <[email protected]>",\
    "cc": "",\
    "subject": "Digging into Cloud, Microsoft Growth | Dell Technologies Leans in on Channel | JEDI Update",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 140\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 172,\
        "mode": "inbound",\
        "title": "SPF Hard Fail (Reply-To)",\
        "description": "The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T14:01:18.000Z"\
  },\
  {\
    "id": 1993169204,\
    "uuid": "BAE742B4-768E-419D-8CF1-A2DF1BE6BCBA.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"192.88.135.9 SRNNews.com Newsletter Popup\" <[email protected]>",\
    "from": "Bill Bennett's American Patriot's Daily Almanac\n <[email protected]>",\
    "cc": "",\
    "subject": "A Prayer at Valley Forge",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 540\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T13:36:04.000Z"\
  },\
  {\
    "id": 1993141384,\
    "uuid": "56BE65BA-D79C-4639-816A-ECF49B8E4040.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"192.88.135.9 SRNNews.com Newsletter Popup\" <[email protected]>",\
    "from": "SRN News Editorial Cartoons <[email protected]>",\
    "cc": "",\
    "subject": "New Editorial Cartoons from SRNNews.com",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T13:11:02.000Z"\
  },\
  {\
    "id": 1993089135,\
    "uuid": "337A1488-A4BF-4899-908C-CF53EA29155A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"Friend\" <[email protected]>",\
    "from": "Jonathan Garthwaite <[email protected]>",\
    "cc": "",\
    "subject": "Townhall Daily - Jan 14 - Derek Hunter,Dennis Prager,Sheriff David  Clarke, Ret.,Salena Zito,Ken Blackwell and More",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 340\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 55,\
        "mode": "inbound",\
        "title": "Ungrouped",\
        "description": "Rules that have not yet been categorized or that don't fit in a category.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T12:11:44.000Z"\
  },\
  {\
    "id": 1993064081,\
    "uuid": "66FF41C4-13C6-4AD9-8581-73761F13DE0A.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa3d6f3c3-fd413edd-f813-407a-a082-a0b07dc6b967-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: France, Britain and Germany launch process to hold Iran accountable for violating nuclear deal, opening way for sanctions",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T11:36:10.000Z"\
  },\
  {\
    "id": 1993043690,\
    "uuid": "BAB3AC1A-B570-4F4F-B7FD-3291A83D1225.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-63_HTML-328761131-3162276-7219217-238@bounce.aaas.sciencepubs.org",\
    "to": "<[email protected]>",\
    "from": "\"News from Science\" <[email protected]>",\
    "cc": "",\
    "subject": "FDA and NIH let clinical trial sponsors keep results secret and break the law",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 380\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T11:01:31.000Z"\
  },\
  {\
    "id": 1993017190,\
    "uuid": "E796E4A2-7971-4816-BF96-FED878EF151B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "\"192.88.135.9 SRNNews.com Newsletter Popup\" <[email protected]>",\
    "from": "Daybreak Insider <[email protected]>",\
    "cc": "",\
    "subject": "Warren and Sanders Spar Over Female President",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 540\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T10:12:01.000Z"\
  },\
  {\
    "id": 1992989257,\
    "uuid": "0F2971A2-B6D7-4DEB-9A6E-C57C64E2B4A2.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Marcus Wondracek <[email protected]>",\
    "cc": "",\
    "subject": "331 Kelsey Glen Lane, Simpsonville, SC + 4 Other New Properties this week",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 9634,\
      "name": "ben"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T09:15:51.000Z"\
  },\
  {\
    "id": 1992880468,\
    "uuid": "9F77F5D0-36D1-45F0-BE8B-AA26C12CC11B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa27c3d17-dc1ef609-659e-451c-8884-8d2015bbd9ef-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: LSU beats Clemson in college football's national championship game, completing dream season",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T05:17:28.000Z"\
  },\
  {\
    "id": 1992812718,\
    "uuid": "1F17EA85-5F7F-4B25-B934-46E2C538CDB6.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa1e91b3d-df0e200c-7022-4d3d-bc17-b0d05e645331-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Russian spies hacked Ukrainian gas company at heart of Trump impeachment trial, again entangling Moscow in domestic U.S. politics",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T02:36:46.000Z"\
  },\
  {\
    "id": 1992756644,\
    "uuid": "97C99FAF-0B7D-4649-808D-C2178DD6946B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "v-bfkieim_fjcackpmfo_gcpncehe_gcpncehe_a@bounce.e.theatlantic.com",\
    "to": "[email protected]",\
    "from": "The Atlantic <[email protected]>",\
    "cc": "",\
    "subject": "'Joker' laughs its way to the top of the Oscar pack",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 360\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 135,\
        "mode": "inbound",\
        "title": "Multiple From/Reply",\
        "description": "This message had headers from multiple addresses.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T00:38:17.000Z"\
  },\
  {\
    "id": 1992756515,\
    "uuid": "E625104C-1DC3-44F5-B166-C1FFCE4BCAE9.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "0101016fa17c6507-1cb0a470-583e-4dab-8a7f-75a3478933a0-000000@us-west-2.washingtonpost.com",\
    "to": "[email protected]",\
    "from": "The Washington Post <[email protected]>",\
    "cc": "",\
    "subject": "News Alert: Trump planning to divert additional $7.2 billion in Pentagon funds for border wall",\
    "direction": "inbound",\
    "quarantine_type": "policy",\
    "decision": "quarantine_policy",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      },\
      {\
        "id": 138,\
        "mode": "inbound",\
        "title": "Block",\
        "description": "A block rule triggered on the sender or from address for this message causing it to be quarantined.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 871139,\
      "name": "carnegie"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-14T00:38:01.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"0c7c1ff7eec2b031a5c66b8ed7f3b6fa"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

022581a7-758e-4f2e-8818-e1712f1ef988

X-Runtime

13.646537

Transfer-Encoding

chunked

POSTRelease Message

emailservice.io/api/v1/messages/{{message_id}}/deliver

Release a message from the quarantine. The recipients field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}

Example Request

Release Message

curl

curl --location -g 'emailservice.io/api/v1/messages/{{message_id}}/deliver' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

e630abe8-ad9d-4ede-9c68-e88a74e273c7

X-Runtime

1.371039

POSTRelease Multiple Messages

emailservice.io/api/v1/user_groups/{{user_group_id}}/messages/deliver_many

Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing all_selected: true will release all currently held messages from a user group's quarantine.

Note: Message ID's provided in the payload that do not belong to a user under the user group in the URL path will not be released, which will be evident in the request response.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}

Example Request

Release Multiple Messages Copy

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/messages/deliver_many' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}'

200 OK

Example Response

  • Body
  • Headers (12)

json

{
  "delivered_messages": [\
    2015573173,\
    2015573567\
  ]
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"3f602713b4241cb2e3030443e7df8e91"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

31f40aa7-d879-4fa4-b0b0-8b636971911c

X-Runtime

3.386540

Transfer-Encoding

chunked

Logs

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Group Logs

emailservice.io/api/v1/user_groups/{{user_group_id}}/logs

Get the logs for users under a user group. Refer to the "Filtering Logs" section at the top of the page for more information on filtering the results.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group Logs

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/logs' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": "6391f62d-332e-491b-914a-a2a0501b50b1",\
    "uuid": "6391f62d-332e-491b-914a-a2a0501b50b1",\
    "sender": "[email protected]",\
    "from": "Tierney Roland <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 300\
    },\
    "direction": "inbound",\
    "origin": "142.0.174.40",\
    "subject": "Security Guide Exclusive for You",\
    "user": {\
      "id": 865693,\
      "name": "charles"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "customer": {\
      "id": 7114,\
      "name": "Mailprotector Demo Customer"\
    },\
    "reseller": {\
      "id": 343,\
      "name": "Mailprotector Demos Reseller"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-15T17:40:38.632+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "reply_spf_fail",\
      "multiple_from_replyto",\
      "bulk"\
    ],\
    "rule_ids": [],\
    "helo": "mail02.info.pentontech.com",\
    "ptr": "mail02.info.pentontech.com",\
    "ip": "142.0.174.40",\
    "postfix_queue_id": "72D23C0D7D"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"284547d3cd5d3406c7217369c4d5052f"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

ec7a8bd4-9282-4b7c-b008-bd2833eb0dbf

X-Runtime

1.395310

Transfer-Encoding

chunked

Allow/Block Rules

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Group Allow/Block Rules

emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules

Get the allow and block rules for a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group Allow/Block Rules

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 2968113,\
    "entity": {\
      "id": 109,\
      "entity_type": "UserGroup",\
      "name": "CloudMail with Bracket"\
    },\
    "value": "domain.com",\
    "rule_type": "Allow"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"50a99c566e65ddcecf29242f0f78e0d0"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

1f912035-bd95-4b5d-984e-39da7e667909

X-Runtime

0.188105

Transfer-Encoding

chunked

POSTCreate User Group Allow/Block Rule

emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules

Create an allow or block rule for a user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"value": "[email protected]",
	"rule_type": "block"
}

Example Request

Create User Group Block Rule

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"value": "[email protected]",
	"rule_type": "block"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 2968114,
  "entity": {
    "id": 109,
    "entity_type": "UserGroup",
    "name": "CloudMail with Bracket"
  },
  "value": "[email protected]",
  "rule_type": "block"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/allow_block_rules/2968114

Content-Type

application/json; charset=utf-8

ETag

W/"0b5ad80742eda24f7c8b9966b7ab748d"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

f4d88981-0cb9-4a11-9774-936e43e240db

X-Runtime

0.415998

Transfer-Encoding

chunked

DELETEDelete Allow/Block Rule

emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}

Delete an allow or block rule.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Allow/Block Rule

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

f49f9830-b6c1-4dca-bfc3-7e6ea2a13305

X-Runtime

0.243252

GETUser Groups

emailservice.io/api/v1/domains/{{domain_id}}}}/user_groups

Retrieve a list of user groups belonging to a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get User Groups

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}}}/user_groups' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 109,\
    "name": "CloudMail with Bracket",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 56,\
    "created_at": "2010-05-13T18:12:15.000Z",\
    "updated_at": "2019-07-18T02:00:38.000Z"\
  },\
  {\
    "id": 10786,\
    "name": "Exchange+ 2013 with SecureStore",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 13,\
    "created_at": "2013-07-09T20:37:45.000Z",\
    "updated_at": "2019-05-09T19:37:30.000Z"\
  },\
  {\
    "id": 17158,\
    "name": "Bracket (Attachment Filtering)",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 3,\
    "created_at": "2016-07-28T15:40:44.000Z",\
    "updated_at": "2019-08-23T02:00:48.000Z"\
  },\
  {\
    "id": 17333,\
    "name": "Bracket",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 1,\
    "created_at": "2016-09-13T14:10:43.000Z",\
    "updated_at": "2019-07-16T02:00:57.000Z"\
  },\
  {\
    "id": 18149,\
    "name": "Continuity Bundle + SafeSend",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 1,\
    "created_at": "2016-12-05T15:55:18.000Z",\
    "updated_at": "2019-08-23T02:00:50.000Z"\
  },\
  {\
    "id": 19264,\
    "name": "Bracket + SecureStore",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2017-05-11T19:14:51.000Z",\
    "updated_at": "2019-08-23T02:00:50.000Z"\
  },\
  {\
    "id": 19543,\
    "name": "Continuity Bundle (CloudFilter + XtraMail)",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 1,\
    "created_at": "2017-07-11T15:52:50.000Z",\
    "updated_at": "2019-08-23T02:00:50.000Z"\
  },\
  {\
    "id": 19588,\
    "name": "CloudFilter (SafeSend)",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 2,\
    "created_at": "2017-07-19T18:36:59.000Z",\
    "updated_at": "2019-08-23T02:00:50.000Z"\
  },\
  {\
    "id": 19807,\
    "name": "SecureStore",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2017-08-29T21:25:57.000Z",\
    "updated_at": "2019-08-23T02:00:50.000Z"\
  },\
  {\
    "id": 20350,\
    "name": "CloudFilter",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 7,\
    "created_at": "2017-11-20T16:51:47.000Z",\
    "updated_at": "2019-08-23T02:00:50.000Z"\
  },\
  {\
    "id": 26235,\
    "name": "Discovered Users",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2019-05-07T21:46:55.000Z",\
    "updated_at": "2019-08-23T02:00:50.000Z"\
  },\
  {\
    "id": 26259,\
    "name": "Exchange+ 2016",\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "user_count": 0,\
    "created_at": "2019-05-09T19:38:49.000Z",\
    "updated_at": "2019-07-16T02:00:59.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":12,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"5fd729c0503cfb8ba9021a5f63661fae"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

8b8b5526-de92-4f70-af8d-d58aaffdce84

X-Runtime

1.699390

Transfer-Encoding

chunked

GETUser Group

emailservice.io/api/v1/user_groups/{{user_group_id}}

Get a single user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Group

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 109,
  "name": "CloudMail with Bracket",
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "user_count": 56,
  "created_at": "2010-05-13T18:12:15.000Z",
  "updated_at": "2019-07-18T02:00:38.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_groups/109

Content-Type

application/json; charset=utf-8

ETag

W/"a5264a25efb32c13e1f354dec1d0f132"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

e3291986-6a11-49d1-b312-50210b8bf660

X-Runtime

0.825061

Transfer-Encoding

chunked

POSTCreate User Group

emailservice.io/api/v1/domains/{{domain_id}}/user_groups

Create a new user group under a domain.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "new user group"
}

Example Request

Create User Group

curl

curl --location -g 'emailservice.io/api/v1/domains/{{domain_id}}/user_groups' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name": "new user group"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 28493,
  "name": "new user group",
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "user_count": 0,
  "created_at": "2020-01-02T18:41:30.000Z",
  "updated_at": "2020-01-02T18:41:30.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_groups/28493

Content-Type

application/json; charset=utf-8

ETag

W/"18fc30e7ef435d08c869b4f676cc3e5e"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

043f1724-fb95-4d48-9d3b-c190e69596ec

X-Runtime

5.943313

Transfer-Encoding

chunked

PUTEdit User Group

emailservice.io/api/v1/user_groups/{{user_group_id}}

Edit an existing user group.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name": "Different User Group Name"
}

Example Request

Edit User Group

curl

curl --location -g --request PUT 'emailservice.io/api/v1/user_groups/{{user_group_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name": "Different User Group Name"
}'

200 OK

Example Response

  • Body
  • Headers (13)

json

{
  "id": 109,
  "name": "Different User Group Name",
  "domain": {
    "id": 102,
    "name": "mpdemo.net"
  },
  "user_count": 56,
  "created_at": "2010-05-13T18:12:15.000Z",
  "updated_at": "2020-01-02T21:07:01.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/user_groups/109

Content-Type

application/json; charset=utf-8

ETag

W/"faa6da03bac7bac9a0c405e4f58cc7a4"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

4ba08cd8-5180-4934-a0c8-b82ff60647ee

X-Runtime

10.249480

Transfer-Encoding

chunked

DELETEDelete User Group

emailservice.io/api/v1/user_groups/{{user_group_id}}

Remove a User Group. This will also remove all users that are active under that group. To preserve users, move them to another group before deleting.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete User Group

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/user_groups/{{user_group_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

b6dfce1b-c104-4118-95fb-7ffe694bd60b

X-Runtime

0.523060

Users

View and manage users belonging to a reseller, customer, domain, or user group.

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

Aliases

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Aliases

emailservice.io/api/v1/users/{{user_id}}/aliases

Get all aliases belonging to a user.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Aliases

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/aliases' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1274646,\
    "name": "alias-username",\
    "parent": {\
      "id": 883326,\
      "name": "abigail.thompson",\
      "primary_address": "[email protected]"\
    },\
    "user_type": {\
      "id": 2,\
      "name": "Alias"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2020-01-15T17:28:56.000Z",\
    "updated_at": "2020-01-15T17:28:56.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"a1e4bdb6706cbdb2a5ef5d66e9938f8a"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

62cc2a8a-48f8-4b98-bc51-16ed6418a6ba

X-Runtime

0.273826

Transfer-Encoding

chunked

POSTCreate User Alias

emailservice.io/api/v1/users/{{user_id}}/aliases

Create an alias for a user. Creating a user alias will also create a new alias address for each of the user's domain's aliases. The parent user must be of type "User" before an alias can be created for them. Eg. Mailing lists, equipment users, and other non-"user" accounts cannot have aliases added to them.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"alias": {
		"name": "alias-username"
	}
}

Example Request

Create User Alias

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/aliases' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"alias": {
		"name": "alias-username"
	}
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 1274646,
  "name": "alias-username",
  "parent": {
    "id": 883326,
    "name": "abigail.thompson",
    "primary_address": "[email protected]"
  },
  "user_type": {
    "id": 2,
    "name": "Alias"
  },
  "user_group": {
    "id": 25212,
    "name": "Office 365"
  },
  "domain": {
    "id": 1473,
    "name": "mailprotector.com"
  },
  "primary_address": "[email protected]",
  "email_addresses": [\
    "[email protected]",\
    "[email protected]"\
  ],
  "first_name": "",
  "last_name": "",
  "created_at": "2020-01-15T17:28:56.000Z",
  "updated_at": "2020-01-15T17:28:56.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/users/1274646

Content-Type

application/json; charset=utf-8

ETag

W/"782c5dd7762f031d42174069dbbc07ae"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

696f445f-6135-4d8e-af1d-cd1448fafc4e

X-Runtime

1.161436

Transfer-Encoding

chunked

Notification Destinations

Get, create, and remove the destinations for notifications to be sent for users. To control the intervals that they are sent, manage the "configuration" for the appropriate entity.

Level ID

LevelDescription
1Normal
2Urgent

Destination Type ID

TypeDescription
1Email
2SMS

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Notification Destination

emailservice.io/api/v1/users/{{user_id}}/notification_destinations

Get the notification destinations for a user.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Notification Destination

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/notification_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1868,\
    "value": "[email protected]",\
    "owner": {\
      "id": 883326,\
      "name": "abigail.thompson",\
      "entity_type": "User"\
    },\
    "level": {\
      "level_id": 1,\
      "level": "Normal"\
    },\
    "destination_type": {\
      "destination_type_id": 1,\
      "destination_type": "Email"\
    }\
  },\
  {\
    "id": 1869,\
    "value": "[email protected]",\
    "owner": {\
      "id": 883326,\
      "name": "abigail.thompson",\
      "entity_type": "User"\
    },\
    "level": {\
      "level_id": 2,\
      "level": "Urgent"\
    },\
    "destination_type": {\
      "destination_type_id": 1,\
      "destination_type": "Email"\
    }\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":2,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"e6d6cd77c1bf143091ccf615c8d40b58"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

89ee9d85-7f09-4e90-ae00-0b1810dec957

X-Runtime

8.580254

Transfer-Encoding

chunked

POSTCreate User Notification Destination

emailservice.io/api/v1/users/{{user_id}}/notification_destinations

Create a new notification destination for a user.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"value": "[email protected]",
	"destination_type_id": 1,
	"level_id": 1
}

Example Request

Create User Notification Destination

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/notification_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"value": "[email protected]",
	"destination_type_id": 1,
	"level_id": 1
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 312879,
  "value": "[email protected]",
  "owner": {
    "id": 883326,
    "name": "abigail.thompson",
    "entity_type": "User"
  },
  "level": {
    "level_id": 1,
    "level": "Normal"
  },
  "destination_type": {
    "destination_type_id": 1,
    "destination_type": "Email"
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/notification_destinations/312879

Content-Type

application/json; charset=utf-8

ETag

W/"01ed7f70e9aacabbea7d00dc61c6cb76"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

5ffcbbba-1699-42e3-abc7-8f3ebb45ca7a

X-Runtime

0.363529

Transfer-Encoding

chunked

DELETEDelete Notification Destination

emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}

Remove a notification destination.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Notification Destination

View More

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

6bf9d2fe-6206-4457-8b91-47c0f2d45c2b

X-Runtime

0.259220

Messages

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Messages

emailservice.io/api/v1/users/{{user_id}}/messages

Get a user's messages quarantined messages.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Messages

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/messages' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": 1999362832,\
    "uuid": "7BCCAD3C-373D-47FE-8B49-5127736736C0.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "Matt Langie <[email protected]>",\
    "cc": "",\
    "subject": "Fwd: Virtual Event for Sales Development",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-19T23:44:02.000Z"\
  },\
  {\
    "id": 1998898382,\
    "uuid": "D8D1A9D4-7903-4DA5-896E-075B04DB2134.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Bowlero\" <[email protected]>",\
    "cc": "",\
    "subject": "❗Tune in TODAY for the PBA Hall of Fame Classic!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 200\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-19T13:35:39.000Z"\
  },\
  {\
    "id": 1996341988,\
    "uuid": "B641EF62-8209-4CDF-97A9-96B430BCD42C.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Bowlero\" <[email protected]>",\
    "cc": "",\
    "subject": "The NEW MVB Rewards is Rolling Your Way Soon!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 280\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-17T02:04:27.000Z"\
  },\
  {\
    "id": 1995863906,\
    "uuid": "CF6A9872-F4C3-4968-AC69-2E9B1F01455D.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "\"Bowlero\" <[email protected]>",\
    "cc": "",\
    "subject": "🏆 Kick Off the 2020 PBA Tour with the Hall of Fame Classic this Sunday!",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 240\
    },\
    "results": [\
      {\
        "id": 29,\
        "mode": "inbound",\
        "title": "Barracuda Reputation Block List",\
        "description": "This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 6,\
        "mode": "inbound",\
        "title": "Subject Length",\
        "description": "The length of the subject exceeded 50 characters.",\
        "weight": 20\
      },\
      {\
        "id": 8,\
        "mode": "inbound",\
        "title": "Subject Spaces",\
        "description": "The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.",\
        "weight": 20\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-16T18:06:01.000Z"\
  },\
  {\
    "id": 1988868038,\
    "uuid": "22620DE0-A0F3-48D1-89E4-8D056C1A3AD8.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "XANT <[email protected]>",\
    "cc": "",\
    "subject": "5 Mistakes Wreaking Havoc on Your Revenue",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 500\
    },\
    "results": [\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 62,\
        "mode": "inbound",\
        "title": "Scam",\
        "description": "Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.",\
        "weight": 200\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-09T14:44:16.000Z"\
  },\
  {\
    "id": 1987330888,\
    "uuid": "02C2D0D1-AF92-4D5C-80A5-A72BF675C557.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "bounce-mc.us11_44738489.3568859-9c61c046bb@mail87.suw131.mcsv.net",\
    "to": "<[email protected]>",\
    "from": "=?utf-8?Q?Justine=20=E2=80=A2=20We=20Work=20Remotely?= <[email protected]>",\
    "cc": "",\
    "subject": "Save 15% on job postings all January long 🕺",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 280\
    },\
    "results": [\
      {\
        "id": 30,\
        "mode": "inbound",\
        "title": "Spamcop",\
        "description": "This message came from an IP on the Spamcop DNS-based Blocking List. ",\
        "weight": 200\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 72,\
        "mode": "inbound",\
        "title": "Promotions",\
        "description": "Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.",\
        "weight": 75\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T19:59:28.000Z"\
  },\
  {\
    "id": 1986977668,\
    "uuid": "9656D38B-F2EF-4825-990B-8B1B7A72623B.1",\
    "address": "[email protected]",\
    "recipients": [\
      "[email protected]"\
    ],\
    "sender": "[email protected]",\
    "to": "[email protected]",\
    "from": "XANT <[email protected]>",\
    "cc": "",\
    "subject": "Webinar: 5 Counterintuitive Sales Mistakes",\
    "direction": "inbound",\
    "quarantine_type": "spam",\
    "decision": "quarantine_spam",\
    "score": {\
      "score": 600\
    },\
    "results": [\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      },\
      {\
        "id": 12,\
        "mode": "inbound",\
        "title": "SPF Pass",\
        "description": "The SPF record designates the host to be allowed to send.",\
        "weight": 0\
      },\
      {\
        "id": 171,\
        "mode": "inbound",\
        "title": "SPF Pass (From)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the from header.",\
        "weight": 0\
      },\
      {\
        "id": 174,\
        "mode": "inbound",\
        "title": "SPF Pass (Reply-To)",\
        "description": "The SPF record designates the host to be allowed to send for an address in the reply-to header.",\
        "weight": 0\
      },\
      {\
        "id": 70,\
        "mode": "inbound",\
        "title": "Truncate",\
        "description": "The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.",\
        "weight": 300\
      }\
    ],\
    "released_at": null,\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "message_date": "2020-01-07T13:45:18.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"b63013427819d0c3d55c621f5b818993"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

d76d8fdc-8305-4aad-a6e0-b93a61dfb474

X-Runtime

4.452263

Transfer-Encoding

chunked

POSTRelease Message

emailservice.io/api/v1/messages/{{message_id}}/deliver

Release a message from the quarantine. The recipients field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}

Example Request

Release Message

curl

curl --location -g 'emailservice.io/api/v1/messages/{{message_id}}/deliver' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]"
}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

e630abe8-ad9d-4ede-9c68-e88a74e273c7

X-Runtime

1.371039

POSTRelease Multiple Messages

emailservice.io/api/v1/users/{{user_id}}/messages/deliver_many

Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing all_selected: true will release all currently held messages from a user's quarantine.

Note: Message ID's provided in the payload that do not belong to the user in the URL path will not be released, which will be evident in the request response.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}

Example Request

Release Multiple Messages

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/messages/deliver_many' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"include_original_recipients": 1,
	"recipients": "[email protected], [email protected]",
	"all_selected": "false",
	"ids": "2015573567,2015573173"
}'

200 OK

Example Response

  • Body
  • Headers (12)

json

{
  "delivered_messages": [\
    2015573173,\
    2015573567\
  ]
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"3f602713b4241cb2e3030443e7df8e91"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

3dab7f58-54e3-432c-8c26-903a7cf7d875

X-Runtime

11.883478

Transfer-Encoding

chunked

Logs

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Logs

emailservice.io/api/v1/users/{{user_id}}/logs

Get the logs for a user. Refer to the "Filtering Logs" section at the top of the page for more information on filtering the results.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Logs

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/logs' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

[\
  {\
    "id": "98976b29-a69c-4684-ae11-d2c5577e54e4",\
    "uuid": "98976b29-a69c-4684-ae11-d2c5577e54e4",\
    "sender": "[email protected]",\
    "from": "Justin Hathaway <[email protected]>",\
    "recipient": "[email protected]",\
    "score": {\
      "score": 0\
    },\
    "direction": "inbound",\
    "origin": "34.194.188.63",\
    "subject": "Mailprotector API Test Message",\
    "user": {\
      "id": 883326,\
      "name": "abigail.thompson"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "customer": {\
      "id": 329,\
      "name": "Mailprotector group"\
    },\
    "reseller": {\
      "id": 188,\
      "name": "Mailprotector Direct (old)"\
    },\
    "provider": {\
      "id": 65,\
      "name": "United States"\
    },\
    "received_at": "2020-01-20T22:09:47.872+00:00",\
    "results_data": [\
      "spf_pass",\
      "from_spf_pass",\
      "clean"\
    ],\
    "rule_ids": [],\
    "helo": "otransport-22.outbound.emailsrv.net",\
    "ptr": "otransport-22.outbound.emailsrv.net",\
    "ip": "34.194.188.63",\
    "postfix_queue_id": "94ECB612C6"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"85d36b9abb5065ccb24b94c334c45ecd"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

e12e71ff-8bf3-458f-a945-9411b7069dfc

X-Runtime

1.168470

Transfer-Encoding

chunked

Allow/Block Rules

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETUser Allow/Block Rules

emailservice.io/api/v1/users/{{user_id}}/allow_block_rules

Get the allow and block rules for a user.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

User Allow/Block Rules

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1311824,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1497522,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1422347,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "bounces+1611861-9fe1-abigail.thompson=mailprotector.com@mail6.shared.hubspot.com",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2200906,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1846554,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1497519,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1703249,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1495539,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2027879,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2041358,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2032837,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1301280,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1640111,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2066415,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2198567,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1736073,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2040438,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 2200908,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  },\
  {\
    "id": 1756343,\
    "entity": {\
      "id": 883326,\
      "entity_type": "User",\
      "name": "abigail.thompson"\
    },\
    "value": "[email protected]",\
    "rule_type": "Allow"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":19,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"e4b27e9206fc2a8ba16288a811571103"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

df42e46b-57e8-4d71-89e9-537b61a2859f

X-Runtime

0.784350

Transfer-Encoding

chunked

POSTCreate User Allow/Block Rule

emailservice.io/api/v1/users/{{user_id}}/allow_block_rules

Create an allow or block rule for a user.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"value": "[email protected]",
	"rule_type": "block"
}

Example Request

Create User Allow/Block Rule

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/allow_block_rules' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"value": "[email protected]",
	"rule_type": "block"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 2968115,
  "entity": {
    "id": 883326,
    "entity_type": "User",
    "name": "abigail.thompson"
  },
  "value": "[email protected]",
  "rule_type": "block"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/allow_block_rules/2968115

Content-Type

application/json; charset=utf-8

ETag

W/"7acd69d7d732d00220f1bd6d7ca8d317"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

9e14b528-6c62-47e6-ae5f-7d3c96f11301

X-Runtime

0.308933

Transfer-Encoding

chunked

DELETEDelete Allow/Block Rule

emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}

Delete an allow or block rule.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Allow/Block Rule

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

141556ae-9be4-425e-b181-37149ef78c6a

X-Runtime

0.140735

GETUsers

emailservice.io/api/v1/{{entity}}/{{entity_id}}/users

Get all users belonging to an entity.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get Users Under Reseller

curl

curl --location -g 'emailservice.io/api/v1/resellers/{{reseller_id}}/users' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 883326,\
    "name": "abigail.thompson",\
    "parent": null,\
    "user_type": {\
      "id": 11,\
      "name": "Unlicensed User"\
    },\
    "user_group": {\
      "id": 25212,\
      "name": "Office 365"\
    },\
    "domain": {\
      "id": 1473,\
      "name": "mailprotector.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Abigail",\
    "last_name": "Thompson",\
    "created_at": "2017-10-06T18:31:17.000Z",\
    "updated_at": "2019-10-21T12:20:22.000Z"\
  },\
  {\
    "id": 252227,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6241,\
      "name": "ocxnet.com user group"\
    },\
    "domain": {\
      "id": 8239,\
      "name": "ocxnet.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Domain",\
    "last_name": "Abuse",\
    "created_at": "2010-11-20T09:40:24.000Z",\
    "updated_at": "2014-03-28T20:22:01.000Z"\
  },\
  {\
    "id": 38543,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:31:33.000Z",\
    "updated_at": "2019-10-21T07:00:07.000Z"\
  },\
  {\
    "id": 250261,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6169,\
      "name": "vxray2.out user group"\
    },\
    "domain": {\
      "id": 8149,\
      "name": "vxray2.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:21:38.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250265,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6171,\
      "name": "vxray3.out user group"\
    },\
    "domain": {\
      "id": 8151,\
      "name": "vxray3.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:21:56.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250269,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6173,\
      "name": "vxray4.out user group"\
    },\
    "domain": {\
      "id": 8153,\
      "name": "vxray4.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:22:14.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250273,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6175,\
      "name": "vxray5.out user group"\
    },\
    "domain": {\
      "id": 8155,\
      "name": "vxray5.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:22:32.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250277,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6177,\
      "name": "mpsupport.out user group"\
    },\
    "domain": {\
      "id": 8157,\
      "name": "mpsupport.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:22:49.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250281,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6179,\
      "name": "calelite.out user group"\
    },\
    "domain": {\
      "id": 8159,\
      "name": "calelite.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:23:07.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250285,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6181,\
      "name": "interflexgroup.out user group"\
    },\
    "domain": {\
      "id": 8161,\
      "name": "interflexgroup.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:23:25.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250289,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6183,\
      "name": "interflexgroupcouk.out user group"\
    },\
    "domain": {\
      "id": 8163,\
      "name": "interflexgroupcouk.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:23:43.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250293,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6185,\
      "name": "matsysinc.out user group"\
    },\
    "domain": {\
      "id": 8165,\
      "name": "matsysinc.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:01.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250297,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6187,\
      "name": "mncpap.out user group"\
    },\
    "domain": {\
      "id": 8167,\
      "name": "mncpap.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:19.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250301,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6189,\
      "name": "e-inbusiness.out user group"\
    },\
    "domain": {\
      "id": 8169,\
      "name": "e-inbusiness.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:37.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 250305,\
    "name": "abuse",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6191,\
      "name": "nzymes.out user group"\
    },\
    "domain": {\
      "id": 8171,\
      "name": "nzymes.out"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-11-20T09:24:56.000Z",\
    "updated_at": "2011-02-28T16:29:25.000Z"\
  },\
  {\
    "id": 279309,\
    "name": "aca",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1081,\
      "name": "mailprotector.biz user group"\
    },\
    "domain": {\
      "id": 1489,\
      "name": "mailprotector.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "ACA",\
    "last_name": "Email Addy",\
    "created_at": "2011-01-13T18:19:19.000Z",\
    "updated_at": "2019-10-21T07:00:12.000Z"\
  },\
  {\
    "id": 615532,\
    "name": "accounting",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6241,\
      "name": "ocxnet.com user group"\
    },\
    "domain": {\
      "id": 8239,\
      "name": "ocxnet.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2014-03-28T20:21:12.000Z",\
    "updated_at": "2019-10-21T09:02:18.000Z"\
  },\
  {\
    "id": 683333,\
    "name": "adam",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 6241,\
      "name": "ocxnet.com user group"\
    },\
    "domain": {\
      "id": 8239,\
      "name": "ocxnet.com"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Adam",\
    "last_name": "Dilk",\
    "created_at": "2015-05-11T16:21:09.000Z",\
    "updated_at": "2019-10-21T09:02:19.000Z"\
  },\
  {\
    "id": 759339,\
    "name": "addressdiscovery",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 17596,\
      "name": "CloudFilter"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Address",\
    "last_name": "Discovery",\
    "created_at": "2016-10-14T20:28:09.000Z",\
    "updated_at": "2019-03-12T07:32:31.000Z"\
  },\
  {\
    "id": 768865,\
    "name": "addressdiscovery",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 15866,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 17044,\
      "name": "exchange2016.mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "Address",\
    "last_name": "Discovery",\
    "created_at": "2016-11-04T18:19:14.000Z",\
    "updated_at": "2019-10-21T05:00:25.000Z"\
  },\
  {\
    "id": 674898,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 15003,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 16370,\
      "name": "emailservice.io"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "Admin",\
    "last_name": "",\
    "created_at": "2015-02-26T20:09:36.000Z",\
    "updated_at": "2019-03-12T07:32:31.000Z"\
  },\
  {\
    "id": 734037,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 16829,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 17995,\
      "name": "forcencrypt.email"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2016-06-20T19:25:04.000Z",\
    "updated_at": "2019-03-12T07:37:39.000Z"\
  },\
  {\
    "id": 38517,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1075,\
      "name": "mailprotectorupdate.biz user group"\
    },\
    "domain": {\
      "id": 1483,\
      "name": "mailprotectorupdate.biz"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:29:29.000Z",\
    "updated_at": "2012-08-02T21:34:09.000Z"\
  },\
  {\
    "id": 38523,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 1077,\
      "name": "mailprotectorupdate.net user group"\
    },\
    "domain": {\
      "id": 1485,\
      "name": "mailprotectorupdate.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]"\
    ],\
    "first_name": "",\
    "last_name": "",\
    "created_at": "2010-08-23T19:30:13.000Z",\
    "updated_at": "2012-08-02T21:34:07.000Z"\
  },\
  {\
    "id": 628092,\
    "name": "admin",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 13540,\
      "name": "Main"\
    },\
    "domain": {\
      "id": 15288,\
      "name": "cloudmail.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "CloudMail",\
    "last_name": "Admin",\
    "created_at": "2014-05-23T21:54:42.000Z",\
    "updated_at": "2019-03-12T07:30:00.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":279,"total_pages":12,"per_page":25,"first_page":true,"last_page":false,"previous_page":null,"current_page":1,"next_page":2,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"94f41996df7342de708623a44dd45abe"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

2511b31b-6462-4144-9e9b-fe886cab6afc

X-Runtime

6.051138

Transfer-Encoding

chunked

GETUser

emailservice.io/api/v1/users/{{user_id}}

Get a single user using its ID.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get User by Id

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 883326,
  "name": "abigail.thompson",
  "parent": null,
  "user_type": {
    "id": 11,
    "name": "Unlicensed User"
  },
  "user_group": {
    "id": 25212,
    "name": "Office 365"
  },
  "domain": {
    "id": 1473,
    "name": "mailprotector.com"
  },
  "primary_address": "[email protected]",
  "email_addresses": [\
    "[email protected]",\
    "[email protected]"\
  ],
  "first_name": "Abigail",
  "last_name": "Thompson",
  "created_at": "2017-10-06T18:31:17.000Z",
  "updated_at": "2019-10-21T12:20:22.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/users/883326

Content-Type

application/json; charset=utf-8

ETag

W/"12f4a82f7ecc26fec2e97245e245eb53"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

7f3a8a85-5d7f-46a1-85dc-90be046ff4b0

X-Runtime

0.451799

Transfer-Encoding

chunked

POSTCreate User

emailservice.io/api/v1/user_groups/{{user_group_id}}/users

Create a User under a User Group.

Note: Each user created will have a new address generated for the domain and each of its aliases. For example, domain "domain.com" with alias "domain-alias.com" will produce two new addresses for all users created under it. Adding a user with username "test" to a user group under "domain.com" will allow that user to accept mail at both " [email protected]" and " [email protected]".

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"name":"Username",
	"password": "password",
	"first_name":"First Name",
	"last_name": "Last Name",
	"user_type_id": 1,
	"aliases": ["alias_username","alias_username2"]
}

Example Request

Create User

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/users' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"name":"Username",
	"password": "password",
	"first_name":"First Name",
	"last_name": "Last Name",
	"user_type_id": 1,
	"aliases": ["alias_username","alias_username2"]
}'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1237629,\
    "name": "username",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "First Name",\
    "last_name": "Last Name",\
    "created_at": "2019-12-23T18:53:04.000Z",\
    "updated_at": "2019-12-23T18:53:04.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/users/1237629

Content-Type

application/json; charset=utf-8

ETag

W/"4f4fd13f2962b75ea8a075bf6d2da478"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

91508ee4-f243-4ff6-8b3a-a31f3f8b1e01

X-Runtime

2.548647

Transfer-Encoding

chunked

POSTCreate Multiple Users

emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many

Create multiple users at once.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

View More

{
	"users":[\
		{\
			"name":"Username1",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username1-1","alias_username1-2"]\
		},\
		{\
			"name":"Username2",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username2-1","alias_username2-2"]\
		}\
	]
}

Example Request

Create Multiple Users

View More

curl

curl --location -g 'emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"users":[\
		{\
			"name":"Username1",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username1-1","alias_username1-2"]\
		},\
		{\
			"name":"Username2",\
			"first_name":"First Name",\
			"last_name": "Last Name",\
			"user_type_id": 1,\
			"aliases": ["alias_username2-1","alias_username2-2"]\
		}\
	]
}
'

201 Created

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 1237621,\
    "name": "username1",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "First Name",\
    "last_name": "Last Name",\
    "created_at": "2019-12-12T23:02:00.000Z",\
    "updated_at": "2019-12-12T23:02:00.000Z"\
  },\
  {\
    "id": 1237622,\
    "name": "username2",\
    "parent": null,\
    "user_type": {\
      "id": 1,\
      "name": "User"\
    },\
    "user_group": {\
      "id": 109,\
      "name": "CloudMail with Bracket"\
    },\
    "domain": {\
      "id": 102,\
      "name": "mpdemo.net"\
    },\
    "primary_address": "[email protected]",\
    "email_addresses": [\
      "[email protected]",\
      "[email protected]",\
      "[email protected]"\
    ],\
    "first_name": "First Name",\
    "last_name": "Last Name",\
    "created_at": "2019-12-12T23:02:00.000Z",\
    "updated_at": "2019-12-12T23:02:00.000Z"\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/users/1237621

Content-Type

application/json; charset=utf-8

ETag

W/"247a4069de5a69ec9ebe8527746561e4"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

1c91f5fb-c944-4ff7-bb4f-703e70ae5f8b

X-Runtime

12.588969

Transfer-Encoding

chunked

PUTUpdate User

emailservice.io/api/v1/users/{{user_id}}

Update a user's first and last name.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"first_name": "First Name",
	"last_name": "Last Name",
	"phone": "8888888888",
	"user_type_id": 1
}

Example Request

Update User

curl

curl --location -g --request PUT 'emailservice.io/api/v1/users/{{user_id}}' \
--header 'Content-Type: application/json' \
--data '{
	"first_name": "First Name",
	"last_name": "Last Name",
	"phone": "8888888888",
	"user_type_id": 3
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 883326,
  "name": "abigail.thompson",
  "parent": null,
  "user_type": {
    "id": 3,
    "name": "Mailing List"
  },
  "user_group": {
    "id": 25212,
    "name": "Office 365"
  },
  "domain": {
    "id": 1473,
    "name": "mailprotector.com"
  },
  "primary_address": "[email protected]",
  "email_addresses": [\
    "[email protected]",\
    "[email protected]"\
  ],
  "first_name": "First Name",
  "last_name": "Last Name",
  "created_at": "2017-10-06T18:31:17.000Z",
  "updated_at": "2019-12-23T21:47:06.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/users/883326

Content-Type

application/json; charset=utf-8

ETag

W/"23014e01b3e1913eb9eebf23eefdd985"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

ae98bf23-c8ed-4570-af12-3ff60cca5c23

X-Runtime

5.275791

Transfer-Encoding

chunked

POSTFind By Address

emailservice.io/api/v1/users/find_by_address

Search for a user or user alias by its address. If the user being requested is an alias, the root user will be returned.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"address": "[email protected]"
}

Example Request

Find By Address

curl

curl --location 'emailservice.io/api/v1/users/find_by_address' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"address": "[email protected]"
}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "id": 883326,
  "name": "abigail.thompson",
  "parent": null,
  "user_type": {
    "id": 1,
    "name": "User"
  },
  "user_group": {
    "id": 25212,
    "name": "Office 365"
  },
  "domain": {
    "id": 1473,
    "name": "mailprotector.com"
  },
  "primary_address": "[email protected]",
  "email_addresses": [\
    "[email protected]",\
    "[email protected]",\
    "[email protected]",\
    "[email protected]"\
  ],
  "first_name": "Abigail",
  "last_name": "Thompson",
  "created_at": "2017-10-06T18:31:17.000Z",
  "updated_at": "2020-01-15T17:27:46.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"79a6a8d16a24e6fd104f61a75974d1d9"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

b9e57c5e-81cc-499e-ac64-8c5406de2016

X-Runtime

1.385712

Transfer-Encoding

chunked

POSTReset User Password

emailservice.io/api/v1/users/{{user_id}}/reset_password

Resets the user's password to the designated value

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"password": "A different password"
}

Example Request

Reset User Password

curl

curl --location -g 'emailservice.io/api/v1/users/{{user_id}}/reset_password' \
--header 'Content-Type: application/json' \
--data '{
	"password": "A different password"
}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "id": 883326,
  "name": "abigail.thompson",
  "parent": null,
  "user_type": {
    "id": 3,
    "name": "Mailing List"
  },
  "user_group": {
    "id": 25212,
    "name": "Office 365"
  },
  "domain": {
    "id": 1473,
    "name": "mailprotector.com"
  },
  "primary_address": "[email protected]",
  "email_addresses": [\
    "[email protected]",\
    "[email protected]"\
  ],
  "first_name": "First Name",
  "last_name": "Last Name",
  "created_at": "2017-10-06T18:31:17.000Z",
  "updated_at": "2019-12-26T22:12:03.000Z"
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"22a7ffd05d95b71f5b820b905ff34e7d"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

c372672c-eebd-425e-a8a7-88d9cdd411a8

X-Runtime

0.875945

Transfer-Encoding

chunked

DELETEDelete User

emailservice.io/api/v1/users/{{user_id}}

Delete a user.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete User

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/users/{{user_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

0265822e-57ce-408d-8d46-400aa464424e

X-Runtime

1.210119

Managers

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

Notification Destinations

Get, create, and remove the destinations for notifications to be sent for managers. To control the intervals that they are sent, manage the "configuration" for the appropriate entity.

Level ID

LevelDescription
1Normal
2Urgent

Destination Type ID

TypeDescription
1Email
2SMS

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

GETManager Notification Destinations

emailservice.io/api/v1/managers/manager_id/notification_destinations

Get all notification destinations for a manager.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Manager Notification Destinations

curl

curl --location 'emailservice.io/api/v1/managers/manager_id/notification_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 312884,\
    "value": "[email protected]",\
    "owner": {\
      "id": 13790,\
      "name": "API Test",\
      "entity_type": "Account"\
    },\
    "level": {\
      "level_id": 1,\
      "level": "Normal"\
    },\
    "destination_type": {\
      "destination_type_id": 1,\
      "destination_type": "Email"\
    }\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":1,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"2c7f0c45a20cf24c6e4751138ea7850d"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

493574d1-e9c8-4126-877e-4263a2f4c14d

X-Runtime

0.615284

Transfer-Encoding

chunked

POSTCreate Manager Notification Destinations

emailservice.io/api/v1/managers/manager_id/notification_destinations

Create a notification destination for a manager account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"value": "[email protected]",
	"destination_type_id": 1,
	"level_id": 1
}

Example Request

Create Manager Notification Destinations

curl

curl --location 'emailservice.io/api/v1/managers/manager_id/notification_destinations' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"value": "[email protected]",
	"destination_type_id": 1,
	"level_id": 1
}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

{
  "id": 312884,
  "value": "[email protected]",
  "owner": {
    "id": 13790,
    "name": "API Test",
    "entity_type": "Account"
  },
  "level": {
    "level_id": 1,
    "level": "Normal"
  },
  "destination_type": {
    "destination_type_id": 1,
    "destination_type": "Email"
  }
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/notification_destinations/312884

Content-Type

application/json; charset=utf-8

ETag

W/"7cfbe0bb757b12a8c953f494ca81b86c"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

103764d2-c56b-4149-b9f4-4f36ddde7135

X-Runtime

0.452112

Transfer-Encoding

chunked

DELETEDelete Manager Notification Destination

emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}

Delete a notification destination for a manager.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Manager Notification Destination

View More

curl

curl --location -g --request DELETE 'emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

e4a7644b-2d0f-4caa-a1a1-eec50ad74fd4

X-Runtime

1.634195

GETManagers

emailservice.io/api/v1/resellers/{{reseller_id}}/managers

Get a list of managers belonging to a reseller or customer account.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Get Managers By Customer

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/managers' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (13)

View More

json

[\
  {\
    "id": 903,\
    "name": "Mail Protector",\
    "username": "mpadmin",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 329,\
        "entity_type": "Account",\
        "entity_name": "Mailprotector group"\
      }\
    ]\
  },\
  {\
    "id": 905,\
    "name": "Mail Protector",\
    "username": "joe",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 1473,\
        "entity_type": "Domain",\
        "entity_name": "mailprotector.com"\
      }\
    ]\
  },\
  {\
    "id": 907,\
    "name": "Mail Protector",\
    "username": "joe_0",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 1489,\
        "entity_type": "Domain",\
        "entity_name": "mailprotector.biz"\
      }\
    ]\
  },\
  {\
    "id": 4687,\
    "name": "Tim Laporte",\
    "username": "tjsupport",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 329,\
        "entity_type": "Account",\
        "entity_name": "Mailprotector group"\
      }\
    ]\
  },\
  {\
    "id": 5039,\
    "name": "Mailprotector newsignups",\
    "username": "noreply",\
    "email": "[email protected]",\
    "roles": [\
      {\
        "entity_id": 329,\
        "entity_type": "Account",\
        "entity_name": "Mailprotector group"\
      }\
    ]\
  }\
]

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

X-Pagination

{"total":5,"total_pages":1,"per_page":25,"first_page":true,"last_page":true,"previous_page":null,"current_page":1,"next_page":null,"out_of_range":false}

Content-Type

application/json; charset=utf-8

ETag

W/"82b4808682e4b1b360d7341c621f99c8"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

7199ce5c-ff11-449c-930d-92eef12f1b0e

X-Runtime

0.480921

Transfer-Encoding

chunked

GETManager

emailservice.io/api/v1/managers/manager_id

Get a single manager object with its ID.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Manager

curl

curl --location 'emailservice.io/api/v1/managers/manager_id' \
--header 'Authorization: Bearer {{your_api_key_here}}'

200 OK

Example Response

  • Body
  • Headers (12)

View More

json

{
  "id": 13790,
  "name": "API Test",
  "username": "api.test",
  "email": "[email protected]",
  "roles": [\
    {\
      "entity_id": 343,\
      "entity_type": "Account",\
      "entity_name": "Mailprotector Demos Reseller"\
    }\
  ]
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Content-Type

application/json; charset=utf-8

ETag

W/"b6a44d51050f13f4e0eecdb17ddf09cb"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

72579596-fa2a-4566-8268-a56cbdd17c2b

X-Runtime

0.143833

Transfer-Encoding

chunked

POSTCreate Manager

emailservice.io/api/v1/resellers/{{reseller_id}}/managers

Create a new manager for a reseller or customer.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"first_name": "FirstName",
	"last_name": "LastName",
	"email": "[email protected]",
	"username": "username",
	"password": "password"
}

Example Request

Create Manager

curl

curl --location -g 'emailservice.io/api/v1/customers/{{customer_id}}/managers' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	"first_name": "FirstName",
	"last_name": "LastName",
	"email": "[email protected]",
	"username": "username",
	"password": "password"
}'

201 Created

Example Response

  • Body
  • Headers (13)

json

{
  "id": 14616,
  "name": "FirstName LastName",
  "username": "username",
  "email": "[email protected]",
  "roles": []
}

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Location

/api/v1/managers/14616

Content-Type

application/json; charset=utf-8

ETag

W/"dacd541fe31e639394a7b59edec16e2d"

Cache-Control

max-age=0, private, must-revalidate

X-Request-Id

8d0b5ec0-f732-45b7-a2df-d80952456a04

X-Runtime

0.301572

Transfer-Encoding

chunked

DELETEDelete Manager

emailservice.io/api/v1/managers/manager_id

Delete a manager using its ID.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Example Request

Delete Manager

curl

curl --location --request DELETE 'emailservice.io/api/v1/managers/manager_id' \
--header 'Authorization: Bearer {{your_api_key_here}}'

204 No Content

Example Response

  • Body
  • Headers (9)

No response body

This request doesn't return any response body

X-Frame-Options

SAMEORIGIN

X-XSS-Protection

1; mode=block

X-Content-Type-Options

nosniff

X-Download-Options

noopen

X-Permitted-Cross-Domain-Policies

none

Referrer-Policy

strict-origin-when-cross-origin

Cache-Control

no-cache

X-Request-Id

f22e1b16-8902-4d72-9e40-9207a4fe9915

X-Runtime

6.242422

Results

AUTHORIZATIONBearer Token

This folder is using Bearer Token from collection Mailprotector API

POSTFind By Code

emailservice.io/api/v1/results

Search for a result by its code and mode.

AUTHORIZATIONBearer Token

This request is using Bearer Token from collection Mailprotector API

HEADERS

Authorization

Bearer {{your_api_key_here}}

Content-Type

application/json

Bodyraw

{
	"code": "no_rdns",
    "mode": "inbound"
}

Example Request

Find By Code

curl

curl --location 'emailservice.io/api/v1/results' \
--header 'Authorization: Bearer {{your_api_key_here}}' \
--header 'Content-Type: application/json' \
--data '{
	"code": "no_rdns",
    "mode": "inbound"
}'

Example Response

  • Body
  • Headers (0)

No response body

This request doesn't return any response body

No response headers

This request doesn't return any response headers