{"info":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","description":"<html><head></head><body><p>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: <a href=\"https://support.mailprotector.com/hc/en-us/requests/new\">https://support.mailprotector.com/hc/en-us/requests/new</a>.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>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 <strong>role</strong> which can be accessed via the web console.</p>\n<p>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 <a href=\"https://emailservice.io/profile\">https://emailservice.io/profile</a> ). Once there, click the \"...\" button on the role that you would like to utilize in the API, and click the \"View API Key\" option.</p>\n<p>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.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"Authorization\": \"Bearer {{your_api_key_here}}\"\n\n</code></pre><h1 id=\"list-request-parameters\">List Request Parameters</h1>\n<p>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 <code>first_name</code> field can be filtered on by using the following URL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"emailservice.io/api/v1/domains/{{domain_id}}/users?first_name={{first_name}}\"\n\n</code></pre><p>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:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Abbreviation</th>\n<th>Function</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Ge</td>\n<td>Greater than</td>\n</tr>\n<tr>\n<td>Geq</td>\n<td>Greater than or equal</td>\n</tr>\n<tr>\n<td>Le</td>\n<td>Less than</td>\n</tr>\n<tr>\n<td>Leq</td>\n<td>Less than or equal</td>\n</tr>\n<tr>\n<td>Eq</td>\n<td>Exactly equals</td>\n</tr>\n</tbody>\n</table>\n</div><p>As an example, to find a list of users created on or after a certain date, you could use the following URL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"emailservice.io/api/v1/domains/{{domain_id}}/users?created_at[geq]=2018-01-01\"\n\n</code></pre><p>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.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n   \"total\":41,\n   \"total_pages\":2,\n   \"per_page\":25,\n   \"first_page\":true,\n   \"last_page\":false,\n   \"previous_page\":null,\n   \"current_page\":1,\n   \"next_page\":2,\n   \"out_of_range\":false\n}\n\n</code></pre><p>The returned pages can be manipulated through the combination of the <code>page</code> and <code>per_page</code> keys. By default, these values are 1 and 25 respectively.</p>\n<h1 id=\"filtering-logs\">Filtering Logs</h1>\n<p>The <em>logs</em> endpoints for each entity can be filtered using the same criteria as the web console.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Options</th>\n<th>Possible Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sort_direction</td>\n<td>\"desc\" (default), \"asc\"</td>\n</tr>\n<tr>\n<td>sort_field</td>\n<td><strong>\"@timestamp\"</strong> (default)  <br><strong>\"prime.direction\"</strong> - Sort by inbound/outbound messages  <br><strong>\"prime.from_header_raw\"</strong> - Sort by <em>from</em> address  <br><strong>\"prime.recipient\"</strong> - Sort by <em>to</em> address  <br><strong>\"prime.subject\"</strong> - Sort by subject line  <br><strong>\"prime.decision\"</strong> - Sort by decision on messages (i.e \"deliver\" vs \"quarantine_spam\", etc)  <br><strong>\"prime.score\"</strong> - Sort by the score of each message</td>\n</tr>\n<tr>\n<td>page</td>\n<td>int (default of 1)</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>int (default of 25)</td>\n</tr>\n<tr>\n<td>sender</td>\n<td>string (optional)</td>\n</tr>\n<tr>\n<td>recipient</td>\n<td>string (optional)</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>string (optional)</td>\n</tr>\n<tr>\n<td>decision</td>\n<td>\"all\" (default),\"deliver\", \"quarantine_spam\", \"quarantine_virus\",  <br>\"quarantine_policy\", \"bounce\", \"encrypt\", \"delete\"</td>\n</tr>\n<tr>\n<td>direction</td>\n<td>\"inbound\", \"outbound\" (leave blank to retrieve both)</td>\n</tr>\n<tr>\n<td>date_range_type</td>\n<td>\"relative\" - Relative to the <em>date_range_minutes</em> provided  <br>\"custom\" - Absolute time provided as <em>start_datetime</em> and <em>end_datetime</em> parameters</td>\n</tr>\n<tr>\n<td>date_range_minutes</td>\n<td>int (defaults to 15). Only used if <em>date_range_type</em> is \"relative\".</td>\n</tr>\n<tr>\n<td>start_datetime</td>\n<td>iso8601 formatted datetime. Defaults to 15 minutes prior to the request being made.</td>\n</tr>\n<tr>\n<td>end_datetime</td>\n<td>iso8601 formatted datetime. Defaults to the time of the request if not provided.</td>\n</tr>\n</tbody>\n</table>\n</div><p>An example request may look like the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>emailservice.io/domains/{{domain_id}}/logs?sort_direction=desc&amp;sort_field=@timestamp&amp;page=1&amp;sender=address&amp;recipient=address&amp;subject=subject&amp;decision=deliver&amp;direction=inbound&amp;date_range_type=relative&amp;date_range_minutes=30&amp;start_datetime=2020-01-21T22:01:09Z&amp;end_datetime=2020-01-21T22:16:09Z\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"List Request Parameters","slug":"list-request-parameters"},{"content":"Filtering Logs","slug":"filtering-logs"}],"owner":"9753375","collectionId":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","publishedId":"SWE83H2P","public":true,"customColor":{"top-bar":"","right-sidebar":"303030","highlight":"99CC00"},"publishDate":"2020-01-06T22:25:23.000Z"},"item":[{"name":"Resellers","item":[{"name":"Customers","item":[{"name":"Reseller Customers","id":"3f67b4cb-8e59-49b2-be59-ba6fd96b77db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers","description":"<p>Get a list of all customers belonging to a reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","customers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"e1e96be4-5021-4a0b-b2f9-1f52f0f0db63","name":"Reseller Customers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"c1c1b8a5936d23f6a754dbc47b3d8a5e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2b9ba0b4-6264-47e4-8682-d59cbc58e3bc"},{"key":"X-Runtime","value":"0.413970"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2111,\n        \"name\": \"Able Moving and Storage, Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-10-05T14:29:55.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:17.000Z\"\n    },\n    {\n        \"id\": 2009,\n        \"name\": \"Achievehs\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-01-11T18:56:16.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:10.000Z\"\n    },\n    {\n        \"id\": 2071,\n        \"name\": \"AGRICORP\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-07-13T12:57:05.000Z\",\n        \"updated_at\": \"2015-12-16T18:52:09.000Z\"\n    },\n    {\n        \"id\": 1887,\n        \"name\": \"AIS\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-01-13T09:37:06.000Z\",\n        \"updated_at\": \"2019-01-15T23:04:57.000Z\"\n    },\n    {\n        \"id\": 1973,\n        \"name\": \"AMAMCO TOOL\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-10-22T14:31:10.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:08.000Z\"\n    },\n    {\n        \"id\": 2099,\n        \"name\": \"AZNORTH\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-09-10T16:43:51.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:15.000Z\"\n    },\n    {\n        \"id\": 1995,\n        \"name\": \"Bossio & Associates\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-12-20T15:44:51.000Z\",\n        \"updated_at\": \"2015-12-16T18:47:41.000Z\"\n    },\n    {\n        \"id\": 2079,\n        \"name\": \"Breeze-Eastern Corporation\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-07-19T08:46:19.000Z\",\n        \"updated_at\": \"2015-12-16T18:52:28.000Z\"\n    },\n    {\n        \"id\": 2025,\n        \"name\": \"Brogans Bakery\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-03-24T10:58:22.000Z\",\n        \"updated_at\": \"2015-12-16T18:48:47.000Z\"\n    },\n    {\n        \"id\": 2045,\n        \"name\": \"Cambio Communications, Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-06-14T10:40:27.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:13.000Z\"\n    },\n    {\n        \"id\": 1983,\n        \"name\": \"Carlos Douglas Consulting Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-12-04T17:23:14.000Z\",\n        \"updated_at\": \"2016-11-23T01:22:37.000Z\"\n    },\n    {\n        \"id\": 1981,\n        \"name\": \"Central Disposal\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-11-18T21:02:15.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:11.000Z\"\n    },\n    {\n        \"id\": 2023,\n        \"name\": \"CollinsElectric\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-03-08T08:21:11.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:11.000Z\"\n    },\n    {\n        \"id\": 2087,\n        \"name\": \"COMBINED WAREHOUSE, INC\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-08-06T10:57:07.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:14.000Z\"\n    },\n    {\n        \"id\": 2005,\n        \"name\": \"Dauphin\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-01-08T16:44:30.000Z\",\n        \"updated_at\": \"2015-12-16T18:48:07.000Z\"\n    },\n    {\n        \"id\": 329,\n        \"name\": \"Different Customer Name\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-05-12T10:33:24.000Z\",\n        \"updated_at\": \"2020-01-02T22:35:01.000Z\"\n    },\n    {\n        \"id\": 2091,\n        \"name\": \"Donsbach Law\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-08-19T23:48:33.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:15.000Z\"\n    },\n    {\n        \"id\": 2075,\n        \"name\": \"dtt broadcasting\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-07-17T13:07:10.000Z\",\n        \"updated_at\": \"2015-12-16T18:52:18.000Z\"\n    },\n    {\n        \"id\": 1963,\n        \"name\": \"eLegalSupply.com\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-09-23T15:26:18.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:07.000Z\"\n    },\n    {\n        \"id\": 805,\n        \"name\": \"Epic Real Estate Solutions, Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-07-07T14:09:05.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:05.000Z\"\n    },\n    {\n        \"id\": 2017,\n        \"name\": \"Eye Doctors of Washington\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-02-25T10:03:55.000Z\",\n        \"updated_at\": \"2015-12-16T18:48:27.000Z\"\n    },\n    {\n        \"id\": 1953,\n        \"name\": \"Fifth Group Restaurants\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-07-27T13:03:46.000Z\",\n        \"updated_at\": \"2015-12-16T18:46:10.000Z\"\n    },\n    {\n        \"id\": 1969,\n        \"name\": \"Garden State Baseball\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-10-13T09:12:00.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:06.000Z\"\n    },\n    {\n        \"id\": 1959,\n        \"name\": \"Girl Scouts of Greater Atlanta\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-08-20T19:14:33.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:07.000Z\"\n    },\n    {\n        \"id\": 1937,\n        \"name\": \"Girl Scouts of NY Penn and Pathways\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-06-03T14:56:30.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:03.000Z\"\n    }\n]"}],"_postman_id":"3f67b4cb-8e59-49b2-be59-ba6fd96b77db"},{"name":"Create Customer","id":"83359600-deac-4ccd-a53b-b73eb2e1f20c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"A New Customer\",\n\t\"email\": \"contactemail@domain.com\"\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers","description":"<p>Create a new customer under a reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","customers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"389bf317-2bc5-4d7a-9d0d-d3889f7b9408","name":"Create Customer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"A New Customer\",\n\t\"email\": \"contactemail@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/customers/17015"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"bc24f1473fb9496dcc0c38914c9effac\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b7c2c06d-1da7-406f-bc80-aca658feca00"},{"key":"X-Runtime","value":"3.007571"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 17015,\n    \"name\": \"A New Customer\",\n    \"provider\": {\n        \"id\": 65,\n        \"name\": \"United States\"\n    },\n    \"reseller\": {\n        \"id\": 188,\n        \"name\": \"Mailprotector Direct (old)\"\n    },\n    \"created_at\": \"2020-01-10T15:57:28.000Z\",\n    \"updated_at\": \"2020-01-10T15:57:28.000Z\"\n}"}],"_postman_id":"83359600-deac-4ccd-a53b-b73eb2e1f20c"}],"id":"b6b8df00-eef9-4d34-a073-0e10c2c34507","_postman_id":"b6b8df00-eef9-4d34-a073-0e10c2c34507","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Domains","item":[],"id":"817082c6-e1a4-4e71-a937-df5ed382e655","_postman_id":"817082c6-e1a4-4e71-a937-df5ed382e655","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Users","item":[{"name":"Reseller Users","id":"52eb8753-38e0-49ed-8a2a-2396f5cc0eda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/users","description":"<p>Get all users under a reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","users"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"972e0523-432e-4af6-acd9-048e1568454f","name":"Reseller Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"048ceba96b7c2232c56755f84f5f02bd\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"53e2f9e8-0672-4f54-8fed-a9bfe6a1ee51"},{"key":"X-Runtime","value":"2.801708"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 883326,\n        \"name\": \"abigail.thompson\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 11,\n            \"name\": \"Unlicensed User\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"abigail.thompson@mailprotector.com\",\n        \"email_addresses\": [\n            \"abigail.thompson@mailprotector.com\",\n            \"abigail.thompson@mailprotector.net\"\n        ],\n        \"first_name\": \"Abigail\",\n        \"last_name\": \"Thompson\",\n        \"created_at\": \"2017-10-06T18:31:17.000Z\",\n        \"updated_at\": \"2020-01-09T20:19:58.000Z\"\n    },\n    {\n        \"id\": 252227,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6241,\n            \"name\": \"ocxnet.com user group\"\n        },\n        \"domain\": {\n            \"id\": 8239,\n            \"name\": \"ocxnet.com\"\n        },\n        \"primary_address\": \"abuse@ocxnet.com\",\n        \"email_addresses\": [\n            \"abuse@ocxnet.com\"\n        ],\n        \"first_name\": \"Domain\",\n        \"last_name\": \"Abuse\",\n        \"created_at\": \"2010-11-20T09:40:24.000Z\",\n        \"updated_at\": \"2014-03-28T20:22:01.000Z\"\n    },\n    {\n        \"id\": 1272459,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 29149,\n            \"name\": \"Default\"\n        },\n        \"domain\": {\n            \"id\": 29102,\n            \"name\": \"emailsrv.net\"\n        },\n        \"primary_address\": \"abuse@emailsrv.net\",\n        \"email_addresses\": [\n            \"abuse@emailsrv.net\"\n        ],\n        \"first_name\": \"Mailprotector\",\n        \"last_name\": \"Abuse\",\n        \"created_at\": \"2020-01-03T17:59:11.000Z\",\n        \"updated_at\": \"2020-01-09T22:18:37.000Z\"\n    },\n    {\n        \"id\": 38543,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"abuse@mailprotector.biz\",\n        \"email_addresses\": [\n            \"abuse@mailprotector.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:31:33.000Z\",\n        \"updated_at\": \"2020-01-09T08:00:07.000Z\"\n    },\n    {\n        \"id\": 250261,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6169,\n            \"name\": \"vxray2.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8149,\n            \"name\": \"vxray2.out\"\n        },\n        \"primary_address\": \"abuse@vxray2.out\",\n        \"email_addresses\": [\n            \"abuse@vxray2.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:21:38.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250265,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6171,\n            \"name\": \"vxray3.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8151,\n            \"name\": \"vxray3.out\"\n        },\n        \"primary_address\": \"abuse@vxray3.out\",\n        \"email_addresses\": [\n            \"abuse@vxray3.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:21:56.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250269,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6173,\n            \"name\": \"vxray4.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8153,\n            \"name\": \"vxray4.out\"\n        },\n        \"primary_address\": \"abuse@vxray4.out\",\n        \"email_addresses\": [\n            \"abuse@vxray4.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:22:14.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250273,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6175,\n            \"name\": \"vxray5.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8155,\n            \"name\": \"vxray5.out\"\n        },\n        \"primary_address\": \"abuse@vxray5.out\",\n        \"email_addresses\": [\n            \"abuse@vxray5.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:22:32.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250277,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6177,\n            \"name\": \"mpsupport.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8157,\n            \"name\": \"mpsupport.out\"\n        },\n        \"primary_address\": \"abuse@mpsupport.out\",\n        \"email_addresses\": [\n            \"abuse@mpsupport.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:22:49.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250281,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6179,\n            \"name\": \"calelite.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8159,\n            \"name\": \"calelite.out\"\n        },\n        \"primary_address\": \"abuse@calelite.out\",\n        \"email_addresses\": [\n            \"abuse@calelite.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:23:07.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250285,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6181,\n            \"name\": \"interflexgroup.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8161,\n            \"name\": \"interflexgroup.out\"\n        },\n        \"primary_address\": \"abuse@interflexgroup.out\",\n        \"email_addresses\": [\n            \"abuse@interflexgroup.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:23:25.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250289,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6183,\n            \"name\": \"interflexgroupcouk.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8163,\n            \"name\": \"interflexgroupcouk.out\"\n        },\n        \"primary_address\": \"abuse@interflexgroupcouk.out\",\n        \"email_addresses\": [\n            \"abuse@interflexgroupcouk.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:23:43.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250293,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6185,\n            \"name\": \"matsysinc.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8165,\n            \"name\": \"matsysinc.out\"\n        },\n        \"primary_address\": \"abuse@matsysinc.out\",\n        \"email_addresses\": [\n            \"abuse@matsysinc.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:01.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250297,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6187,\n            \"name\": \"mncpap.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8167,\n            \"name\": \"mncpap.out\"\n        },\n        \"primary_address\": \"abuse@mncpap.out\",\n        \"email_addresses\": [\n            \"abuse@mncpap.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:19.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250301,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6189,\n            \"name\": \"e-inbusiness.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8169,\n            \"name\": \"e-inbusiness.out\"\n        },\n        \"primary_address\": \"abuse@e-inbusiness.out\",\n        \"email_addresses\": [\n            \"abuse@e-inbusiness.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:37.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250305,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6191,\n            \"name\": \"nzymes.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8171,\n            \"name\": \"nzymes.out\"\n        },\n        \"primary_address\": \"abuse@nzymes.out\",\n        \"email_addresses\": [\n            \"abuse@nzymes.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:56.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 279309,\n        \"name\": \"aca\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"aca@mailprotector.biz\",\n        \"email_addresses\": [\n            \"aca@mailprotector.biz\"\n        ],\n        \"first_name\": \"ACA\",\n        \"last_name\": \"Email Addy\",\n        \"created_at\": \"2011-01-13T18:19:19.000Z\",\n        \"updated_at\": \"2020-01-09T08:00:42.000Z\"\n    },\n    {\n        \"id\": 615532,\n        \"name\": \"accounting\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6241,\n            \"name\": \"ocxnet.com user group\"\n        },\n        \"domain\": {\n            \"id\": 8239,\n            \"name\": \"ocxnet.com\"\n        },\n        \"primary_address\": \"accounting@ocxnet.com\",\n        \"email_addresses\": [\n            \"accounting@ocxnet.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-03-28T20:21:12.000Z\",\n        \"updated_at\": \"2020-01-09T10:02:44.000Z\"\n    },\n    {\n        \"id\": 683333,\n        \"name\": \"adam\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6241,\n            \"name\": \"ocxnet.com user group\"\n        },\n        \"domain\": {\n            \"id\": 8239,\n            \"name\": \"ocxnet.com\"\n        },\n        \"primary_address\": \"adam@ocxnet.com\",\n        \"email_addresses\": [\n            \"adam@ocxnet.com\"\n        ],\n        \"first_name\": \"Adam\",\n        \"last_name\": \"Dilk\",\n        \"created_at\": \"2015-05-11T16:21:09.000Z\",\n        \"updated_at\": \"2020-01-09T10:02:45.000Z\"\n    },\n    {\n        \"id\": 759339,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 17596,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"addressdiscovery@emailservice.io\",\n        \"email_addresses\": [\n            \"addressdiscovery@emailservice.io\",\n            \"addressdiscovery@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-10-14T20:28:09.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 768865,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15866,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17044,\n            \"name\": \"exchange2016.mpdemo.net\"\n        },\n        \"primary_address\": \"addressdiscovery@exchange2016.mpdemo.net\",\n        \"email_addresses\": [\n            \"addressdiscovery@exchange2016.mpdemo.net\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-11-04T18:19:14.000Z\",\n        \"updated_at\": \"2020-01-09T05:00:14.000Z\"\n    },\n    {\n        \"id\": 674898,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15003,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"admin@emailservice.io\",\n        \"email_addresses\": [\n            \"admin@emailservice.io\",\n            \"admin@exchange.emailservice.io\",\n            \"ssl@emailservice.io\",\n            \"ssl@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2015-02-26T20:09:36.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 734037,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 16829,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17995,\n            \"name\": \"forcencrypt.email\"\n        },\n        \"primary_address\": \"admin@forcencrypt.email\",\n        \"email_addresses\": [\n            \"admin@forcencrypt.email\",\n            \"admin@forcencrypt.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2016-06-20T19:25:04.000Z\",\n        \"updated_at\": \"2019-03-12T07:37:39.000Z\"\n    },\n    {\n        \"id\": 38517,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1075,\n            \"name\": \"mailprotectorupdate.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1483,\n            \"name\": \"mailprotectorupdate.biz\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.biz\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:29:29.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:09.000Z\"\n    },\n    {\n        \"id\": 38523,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1077,\n            \"name\": \"mailprotectorupdate.net user group\"\n        },\n        \"domain\": {\n            \"id\": 1485,\n            \"name\": \"mailprotectorupdate.net\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.net\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:30:13.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:07.000Z\"\n    }\n]"}],"_postman_id":"52eb8753-38e0-49ed-8a2a-2396f5cc0eda"}],"id":"befc1997-bbaa-4892-af7c-d2f7ad3176cf","_postman_id":"befc1997-bbaa-4892-af7c-d2f7ad3176cf","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Managers","item":[{"name":"Reseller Managers","id":"99af7d45-196a-4b5f-872e-7d226bbdd212","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/managers","description":"<p>Get all managers belonging to a reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","managers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"99af7d45-196a-4b5f-872e-7d226bbdd212"},{"name":"Create Manager for Reseller","id":"289b7da9-d4be-4eac-b9a5-69abba6d7e5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"FirstName\",\n\t\"last_name\": \"LastName\",\n\t\"email\": \"name@domain.com\",\n\t\"username\": \"username\",\n\t\"password\": \"password\"\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/managers","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","managers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"10fe4d7e-9938-4294-b7f5-49c1d77a512b","name":"Create Manager for Reseller","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"FirstName\",\n\t\"last_name\": \"LastName\",\n\t\"email\": \"name@domain.com\",\n\t\"username\": \"username\",\n\t\"password\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/managers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/managers/14382"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"8fe78e47ef3d236f9e9eaf42887f51cc\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"80ddf828-af53-4ac7-bb17-69b640b42cd9"},{"key":"X-Runtime","value":"5.749278"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14382,\n    \"name\": \"FirstName LastName\",\n    \"username\": \"username\",\n    \"email\": \"name@domain.com\",\n    \"roles\": []\n}"}],"_postman_id":"289b7da9-d4be-4eac-b9a5-69abba6d7e5c"}],"id":"edc5740a-b6b9-444c-9928-fe66a0dbc593","_postman_id":"edc5740a-b6b9-444c-9928-fe66a0dbc593","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Allow/Block Rules","item":[{"name":"Reseller Allow/Block Rules","id":"9df6ac95-2dee-4048-bfd5-a4cc9916613d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"a83c2f98-05b9-4efe-87be-b525bcd9b81c","name":"Reseller Allow/Block Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e0c45b0655f2eb65b7080c551c2307da\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0189d3f9-6b9b-4754-9ce6-bba31a6777d7"},{"key":"X-Runtime","value":"0.569800"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2445353,\n        \"entity\": {\n            \"id\": 188,\n            \"entity_type\": \"Account\",\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"value\": \"domain.com\",\n        \"rule_type\": \"Allow\"\n    }\n]"}],"_postman_id":"9df6ac95-2dee-4048-bfd5-a4cc9916613d"},{"name":"Post Reseller Allow/Block Rule","id":"220f9aea-d91e-4648-a3fb-c3397ace5303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"user@domain.com\", \n\t\"rule_type\": \"block\"\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"f85718d5-5d53-4f2f-a3fd-a9652bf02776","name":"Post Reseller Allow/Block Rule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"user@domain.com\", \n\t\"rule_type\": \"block\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/allow_block_rules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/allow_block_rules/2445354"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d86f0beef94e38748e6817fddd8a8e89\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d2375e28-fc49-4437-bff4-913b943fbc7e"},{"key":"X-Runtime","value":"4.279809"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2445354,\n    \"entity\": {\n        \"id\": 188,\n        \"entity_type\": \"Account\",\n        \"name\": \"Mailprotector Direct (old)\"\n    },\n    \"value\": \"user@domain.com\",\n    \"rule_type\": \"block\"\n}"}],"_postman_id":"220f9aea-d91e-4648-a3fb-c3397ace5303"},{"name":"Delete Allow/Block Rule","id":"a81f24d1-da35-4ca0-83f4-21810fc677ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}","description":"<p>Delete an allow or block rule.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","allow_block_rules","{{allow_block_rule_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"3ee6a6d4-cdbb-4e9f-92d7-cb4fab8c6b78","name":"Delete Allow/Block Rule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f49f9830-b6c1-4dca-bfc3-7e6ea2a13305"},{"key":"X-Runtime","value":"0.243252"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a81f24d1-da35-4ca0-83f4-21810fc677ea"}],"id":"0f6cac70-76aa-484d-85f3-dc1f98db0b73","_postman_id":"0f6cac70-76aa-484d-85f3-dc1f98db0b73","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Configuration","item":[{"name":"Reseller Configuration","id":"d2b5968e-4c54-450b-aa84-16f3bf0e8bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/configuration","description":"<p>Get the active configuration for a reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"e8d43a69-22e4-4ca3-bf1e-d82cbdddeff2","name":"Reseller Configuration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"44ef24df0a98083c59491868e266f437\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4f99b4fa-47d3-4210-90d9-a50070a3343e"},{"key":"X-Runtime","value":"8.938199"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"configuration\": {\n        \"region\": {\n            \"locale\": \"en\",\n            \"time_zone\": \"Eastern Time (US & Canada)\"\n        },\n        \"billing\": {\n            \"cc_addresses\": []\n        },\n        \"branding\": {\n            \"subdomain\": null,\n            \"logo_filename\": null,\n            \"icon_filename\": null,\n            \"from_email\": null,\n            \"from_name\": null,\n            \"prefix\": \"console\",\n            \"guide_from_first_name\": null,\n            \"guide_from_last_name\": null,\n            \"guide_from_email\": null,\n            \"support_url\": null\n        },\n        \"permissions\": {\n            \"messages\": {\n                \"allow_spam_release\": true,\n                \"allow_policy_release\": true,\n                \"allow_virus_release\": true,\n                \"allow_feed\": true\n            },\n            \"console\": {\n                \"allow_console_access\": true,\n                \"allow_user_management_of_allow_block\": true,\n                \"allow_user_management_of_content_rules\": null,\n                \"allow_user_management_of_quarantine_preferences\": true,\n                \"allow_user_management_of_spam_tolerance\": true\n            }\n        },\n        \"notifications\": {\n            \"link_hours_until_expiration\": 72,\n            \"link_max_logins\": 3,\n            \"schedule\": {\n                \"enabled\": false,\n                \"start_hour\": 8,\n                \"end_hour\": 18,\n                \"days_of_week\": [\n                    2,\n                    3,\n                    4,\n                    5,\n                    6\n                ]\n            }\n        },\n        \"messages\": {\n            \"review\": {\n                \"enabled\": true,\n                \"interval\": 3,\n                \"start_hour\": 8,\n                \"end_hour\": 17\n            },\n            \"visibility\": {\n                \"threshold\": 1000\n            }\n        },\n        \"user_sync\": {\n            \"move_users\": false\n        }\n    }\n}"}],"_postman_id":"d2b5968e-4c54-450b-aa84-16f3bf0e8bbb"},{"name":"Edit Reseller Configuration","id":"dae1ccc7-05df-4543-8314-ce1eaa47d629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": false\n\t\t}\n\t}\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/configuration","description":"<p>Edit the configuration of an existing reseller. Fields not supplied will not be overwritten.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"62f758df-21de-4cfa-a5b3-4e44f352c2bd","name":"Edit Reseller Configuration","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": false\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"bcc8ac00687b33ccbbfba38c5d3177a8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"314a2d1b-dd59-48f0-86b0-36fc97e70898"},{"key":"X-Runtime","value":"5.920647"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"region\": {\n        \"locale\": \"en\",\n        \"time_zone\": \"Eastern Time (US & Canada)\"\n    },\n    \"billing\": {\n        \"cc_addresses\": []\n    },\n    \"branding\": {\n        \"subdomain\": null,\n        \"logo_filename\": null,\n        \"icon_filename\": null,\n        \"from_email\": null,\n        \"from_name\": null,\n        \"prefix\": \"console\",\n        \"guide_from_first_name\": null,\n        \"guide_from_last_name\": null,\n        \"guide_from_email\": null,\n        \"support_url\": null\n    },\n    \"permissions\": {\n        \"messages\": {\n            \"allow_spam_release\": false,\n            \"allow_policy_release\": true,\n            \"allow_virus_release\": true,\n            \"allow_feed\": true\n        },\n        \"console\": {\n            \"allow_console_access\": true,\n            \"allow_user_management_of_allow_block\": true,\n            \"allow_user_management_of_content_rules\": null,\n            \"allow_user_management_of_quarantine_preferences\": true,\n            \"allow_user_management_of_spam_tolerance\": true\n        }\n    },\n    \"notifications\": {\n        \"link_hours_until_expiration\": 72,\n        \"link_max_logins\": 3,\n        \"schedule\": {\n            \"enabled\": false,\n            \"start_hour\": 8,\n            \"end_hour\": 18,\n            \"days_of_week\": [\n                2,\n                3,\n                4,\n                5,\n                6\n            ]\n        }\n    },\n    \"messages\": {\n        \"review\": {\n            \"enabled\": true,\n            \"interval\": 3,\n            \"start_hour\": 8,\n            \"end_hour\": 17\n        },\n        \"visibility\": {\n            \"threshold\": 1000\n        }\n    },\n    \"user_sync\": {\n        \"move_users\": false\n    }\n}"}],"_postman_id":"dae1ccc7-05df-4543-8314-ce1eaa47d629"}],"id":"8de5e4cd-cbd2-4c9b-81db-b48848ac2395","_postman_id":"8de5e4cd-cbd2-4c9b-81db-b48848ac2395","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Statements","item":[{"name":"Reseller Statements","id":"8049fb5f-641e-4351-b037-ee631bca873a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/statements","description":"<p>Get a list of statements belonging to a reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","statements"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"eb83815a-1fcd-4a30-b098-2bbd14cb64fa","name":"Reseller Statements","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/statements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3b285c388cec042d315a797b7a0c7b87\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"42235956-60c8-4ff7-b815-4df011c3705c"},{"key":"X-Runtime","value":"5.044796"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 3000545,\n        \"amount\": 1087.79,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2016-10-10\",\n        \"ending_date\": \"2016-11-09\",\n        \"billing_date\": \"2016-11-09\",\n        \"due_date\": \"2016-11-24\"\n    },\n    {\n        \"id\": 3000726,\n        \"amount\": 1096.67,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2016-11-10\",\n        \"ending_date\": \"2016-12-09\",\n        \"billing_date\": \"2016-12-09\",\n        \"due_date\": \"2016-12-24\"\n    },\n    {\n        \"id\": 3001272,\n        \"amount\": 1103.03,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2016-12-10\",\n        \"ending_date\": \"2017-01-09\",\n        \"billing_date\": \"2017-01-09\",\n        \"due_date\": \"2017-02-24\"\n    },\n    {\n        \"id\": 3001334,\n        \"amount\": 1147.83,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-01-10\",\n        \"ending_date\": \"2017-02-09\",\n        \"billing_date\": \"2017-02-09\",\n        \"due_date\": \"2017-02-24\"\n    },\n    {\n        \"id\": 3002399,\n        \"amount\": 1172.06,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-02-10\",\n        \"ending_date\": \"2017-03-09\",\n        \"billing_date\": \"2017-03-09\",\n        \"due_date\": \"2017-05-01\"\n    },\n    {\n        \"id\": 3002884,\n        \"amount\": 1179.74,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-03-10\",\n        \"ending_date\": \"2017-04-09\",\n        \"billing_date\": \"2017-04-09\",\n        \"due_date\": \"2017-04-24\"\n    },\n    {\n        \"id\": 3003356,\n        \"amount\": 1180.98,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-04-10\",\n        \"ending_date\": \"2017-05-09\",\n        \"billing_date\": \"2017-05-09\",\n        \"due_date\": \"2017-05-24\"\n    },\n    {\n        \"id\": 3003823,\n        \"amount\": 1195.02,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-05-10\",\n        \"ending_date\": \"2017-06-09\",\n        \"billing_date\": \"2017-06-09\",\n        \"due_date\": \"2017-06-24\"\n    },\n    {\n        \"id\": 3004290,\n        \"amount\": 1203.18,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-06-10\",\n        \"ending_date\": \"2017-07-09\",\n        \"billing_date\": \"2017-07-09\",\n        \"due_date\": \"2017-07-24\"\n    },\n    {\n        \"id\": 3004761,\n        \"amount\": 1209.75,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-07-10\",\n        \"ending_date\": \"2017-08-09\",\n        \"billing_date\": \"2017-08-09\",\n        \"due_date\": \"2017-08-24\"\n    },\n    {\n        \"id\": 3005227,\n        \"amount\": 1227.21,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-08-10\",\n        \"ending_date\": \"2017-09-09\",\n        \"billing_date\": \"2017-09-09\",\n        \"due_date\": \"2017-09-24\"\n    },\n    {\n        \"id\": 3005697,\n        \"amount\": 1186.45,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-09-10\",\n        \"ending_date\": \"2017-10-09\",\n        \"billing_date\": \"2017-10-09\",\n        \"due_date\": \"2017-10-24\"\n    },\n    {\n        \"id\": 3006178,\n        \"amount\": 1236.37,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-10-10\",\n        \"ending_date\": \"2017-11-09\",\n        \"billing_date\": \"2017-11-09\",\n        \"due_date\": \"2017-11-24\"\n    },\n    {\n        \"id\": 3006667,\n        \"amount\": 1329.36,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-11-10\",\n        \"ending_date\": \"2017-12-09\",\n        \"billing_date\": \"2017-12-09\",\n        \"due_date\": \"2017-12-24\"\n    },\n    {\n        \"id\": 3007170,\n        \"amount\": 1339.48,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-12-10\",\n        \"ending_date\": \"2018-01-09\",\n        \"billing_date\": \"2018-01-09\",\n        \"due_date\": \"2018-01-24\"\n    },\n    {\n        \"id\": 3007674,\n        \"amount\": 1335.55,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-01-10\",\n        \"ending_date\": \"2018-02-09\",\n        \"billing_date\": \"2018-02-09\",\n        \"due_date\": \"2018-02-24\"\n    },\n    {\n        \"id\": 3008210,\n        \"amount\": 1332.82,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-02-10\",\n        \"ending_date\": \"2018-03-09\",\n        \"billing_date\": \"2018-03-09\",\n        \"due_date\": \"2018-03-24\"\n    },\n    {\n        \"id\": 3008683,\n        \"amount\": 1372.93,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-03-10\",\n        \"ending_date\": \"2018-04-09\",\n        \"billing_date\": \"2018-04-09\",\n        \"due_date\": \"2018-04-24\"\n    },\n    {\n        \"id\": 3009197,\n        \"amount\": 1212.32,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-04-10\",\n        \"ending_date\": \"2018-05-09\",\n        \"billing_date\": \"2018-05-09\",\n        \"due_date\": \"2018-05-24\"\n    },\n    {\n        \"id\": 3009705,\n        \"amount\": 1291.2,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-05-10\",\n        \"ending_date\": \"2018-06-09\",\n        \"billing_date\": \"2018-06-09\",\n        \"due_date\": \"2018-06-24\"\n    },\n    {\n        \"id\": 3010215,\n        \"amount\": 1311.52,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-06-10\",\n        \"ending_date\": \"2018-07-09\",\n        \"billing_date\": \"2018-07-09\",\n        \"due_date\": \"2018-07-24\"\n    },\n    {\n        \"id\": 3010726,\n        \"amount\": 1335.87,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-07-10\",\n        \"ending_date\": \"2018-08-09\",\n        \"billing_date\": \"2018-08-09\",\n        \"due_date\": \"2018-08-24\"\n    },\n    {\n        \"id\": 3011238,\n        \"amount\": 1355.33,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-08-10\",\n        \"ending_date\": \"2018-09-09\",\n        \"billing_date\": \"2018-09-09\",\n        \"due_date\": \"2018-09-24\"\n    },\n    {\n        \"id\": 3011755,\n        \"amount\": 1415.85,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-09-10\",\n        \"ending_date\": \"2018-10-09\",\n        \"billing_date\": \"2018-10-09\",\n        \"due_date\": \"2018-10-24\"\n    },\n    {\n        \"id\": 3012281,\n        \"amount\": 1377.38,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-10-10\",\n        \"ending_date\": \"2018-11-09\",\n        \"billing_date\": \"2018-11-09\",\n        \"due_date\": \"2018-11-24\"\n    }\n]"}],"_postman_id":"8049fb5f-641e-4351-b037-ee631bca873a"}],"id":"d19e45e1-c282-4aae-b483-8ac3195f7e36","_postman_id":"d19e45e1-c282-4aae-b483-8ac3195f7e36","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Logs","item":[{"name":"Reseller Logs","id":"2aaabeb6-130a-406e-9290-781826f5d180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/logs","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","logs"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"579abaa5-e7ed-4024-8213-d20afcb5c4b7","name":"Reseller Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"aef3435832f5ab5a2a3e10ebeea6d439\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5342dccd-fcf1-450a-a079-799347be9148"},{"key":"X-Runtime","value":"6.831352"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"c48a8a4f-44f3-43a2-bc12-04915247123f\",\n        \"uuid\": \"c48a8a4f-44f3-43a2-bc12-04915247123f\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.22.79.245\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:36.645+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-7.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-7.outbound.emailsrv.net\",\n        \"ip\": \"52.22.79.245\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"b432104d-244c-466d-aa80-61ed25a5929f\",\n        \"uuid\": \"b432104d-244c-466d-aa80-61ed25a5929f\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.173.10.57\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:36.528+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-21.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-21.outbound.emailsrv.net\",\n        \"ip\": \"54.173.10.57\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"49c9a03e-eae9-4b8c-b269-1d0b7a6e4077\",\n        \"uuid\": \"49c9a03e-eae9-4b8c-b269-1d0b7a6e4077\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.84.14.167\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:36.520+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-4.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-4.outbound.emailsrv.net\",\n        \"ip\": \"54.84.14.167\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"397dc9aa-2a3a-4489-8f8d-542780d23b64\",\n        \"uuid\": \"397dc9aa-2a3a-4489-8f8d-542780d23b64\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.173.10.57\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:36.361+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-21.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-21.outbound.emailsrv.net\",\n        \"ip\": \"54.173.10.57\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"704334dd-92df-4b58-8820-b478058314c7\",\n        \"uuid\": \"704334dd-92df-4b58-8820-b478058314c7\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.22.79.245\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:36.360+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-7.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-7.outbound.emailsrv.net\",\n        \"ip\": \"52.22.79.245\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"5d3a54e1-20f7-4872-af00-10537b122f03\",\n        \"uuid\": \"5d3a54e1-20f7-4872-af00-10537b122f03\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.84.14.167\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:36.289+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-4.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-4.outbound.emailsrv.net\",\n        \"ip\": \"54.84.14.167\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"ce0440cb-5c67-432d-99ed-e671ed7b006c\",\n        \"uuid\": \"ce0440cb-5c67-432d-99ed-e671ed7b006c\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.62.31\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:35.798+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-12.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-12.outbound.emailsrv.net\",\n        \"ip\": \"52.1.62.31\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"516991d8-37e0-49b1-b734-8b2493615d21\",\n        \"uuid\": \"516991d8-37e0-49b1-b734-8b2493615d21\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.62.31\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:35.566+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-12.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-12.outbound.emailsrv.net\",\n        \"ip\": \"52.1.62.31\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"6c94c793-a796-4909-8aa3-cffdc207a6ca\",\n        \"uuid\": \"6c94c793-a796-4909-8aa3-cffdc207a6ca\",\n        \"sender\": \"jamesrobinson@titangroupna.com\",\n        \"from\": \"Presley <JamesRobinson@titangroupna.com>\",\n        \"recipient\": \"info@mailprotector.com\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"188.168.56.31\",\n        \"subject\": \"Feel harmony in marriage! Cialis.\",\n        \"user\": {\n            \"id\": 686886,\n            \"name\": \"info\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:58:32.808+00:00\",\n        \"results_data\": [\n            \"no_rdns\",\n            \"brbl\",\n            \"spamcop\",\n            \"sbl\",\n            \"spf_fail\",\n            \"reply_spf_fail\",\n            \"from_spf_fail\",\n            \"ss_spam\",\n            \"snake_oil\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"titangroupna.com\",\n        \"ptr\": \"[188.168.56.31]\",\n        \"ip\": \"188.168.56.31\",\n        \"postfix_queue_id\": \"C7D9A8005A\"\n    },\n    {\n        \"id\": \"c74f6228-d2a0-40a6-8069-d8f5e8484fa7\",\n        \"uuid\": \"c74f6228-d2a0-40a6-8069-d8f5e8484fa7\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"34.194.188.63\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:57:14.319+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-22.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-22.outbound.emailsrv.net\",\n        \"ip\": \"34.194.188.63\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"c857aaf9-8c77-452b-838d-c74eb6c78a26\",\n        \"uuid\": \"c857aaf9-8c77-452b-838d-c74eb6c78a26\",\n        \"sender\": \"david.setzer@mailprotector.com\",\n        \"from\": \"David Setzer <david.setzer@mailprotector.com>\",\n        \"recipient\": \"jgalebham@gmail.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"104.47.56.168\",\n        \"subject\": \"Ballast Point Reference Call\",\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:57:10.758+00:00\",\n        \"results_data\": [\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"NAM11-CO1-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-co1nam11lp2168.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.56.168\",\n        \"postfix_queue_id\": \"D4DA8613C8\"\n    },\n    {\n        \"id\": \"a35c37b8-9b1a-4a53-8f1b-78d4360b5fbf\",\n        \"uuid\": \"a35c37b8-9b1a-4a53-8f1b-78d4360b5fbf\",\n        \"sender\": \"bounce-md_30378494.5e1374d6.v1-cff6d52fb3c646c792151a49a920ed11@mandrillapp.com\",\n        \"from\": \"PeopleKeep <reviewsupport@peoplekeep.com>\",\n        \"recipient\": \"mark.glowacz@mailprotector.com\",\n        \"score\": {\n            \"score\": 152\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"198.2.136.27\",\n        \"subject\": \"Please provide additional information for your reimbursement request.\",\n        \"user\": {\n            \"id\": 812111,\n            \"name\": \"mark.glowacz\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:56:39.468+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"bulk\",\n            [\n                \"sa_score\",\n                1.3\n            ]\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ptr\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ip\": \"198.2.136.27\",\n        \"postfix_queue_id\": \"1523F61165\"\n    },\n    {\n        \"id\": \"97b1f5c4-0280-4300-b50d-fda8448ce1ff\",\n        \"uuid\": \"97b1f5c4-0280-4300-b50d-fda8448ce1ff\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.7.80.136\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:56:15.902+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-28.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-28.outbound.emailsrv.net\",\n        \"ip\": \"52.7.80.136\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"6378510c-bf6a-4338-b02a-bc812e5e5a2b\",\n        \"uuid\": \"6378510c-bf6a-4338-b02a-bc812e5e5a2b\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"35.169.41.199\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:56:15.213+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-27.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-27.outbound.emailsrv.net\",\n        \"ip\": \"35.169.41.199\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"f6ce1488-25ae-4905-b376-7b983085f478\",\n        \"uuid\": \"f6ce1488-25ae-4905-b376-7b983085f478\",\n        \"sender\": \"bs2@lemures.you312.com\",\n        \"from\": \"Confirmation Needed - ZippyLoan <BS2@lemures.you312.com>\",\n        \"recipient\": \"kevin@milestonenetworks.com\",\n        \"score\": {\n            \"score\": 540\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"63.83.73.76\",\n        \"subject\": \"Considering a personal loan?\",\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:56:06.151+00:00\",\n        \"results_data\": [\n            \"no_rdns\",\n            \"spf_none\",\n            \"from_spf_none\",\n            \"reply_spf_none\",\n            \"multiple_from_replyto\",\n            \"truncate\",\n            \"dbl_spam_domain\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"lemures.you312.com\",\n        \"ptr\": \"[63.83.73.76]\",\n        \"ip\": \"63.83.73.76\",\n        \"postfix_queue_id\": \"7F45E61197\"\n    },\n    {\n        \"id\": \"43423de1-464f-4119-8d01-4e891238da8e\",\n        \"uuid\": \"43423de1-464f-4119-8d01-4e891238da8e\",\n        \"sender\": \"bounce-md_30378494.5e1374aa.v1-b53ab13b59b6419996cb70f1dab14d7c@mandrillapp.com\",\n        \"from\": \"PeopleKeep <reviewsupport@peoplekeep.com>\",\n        \"recipient\": \"mark.glowacz@mailprotector.com\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"198.2.136.27\",\n        \"subject\": \"Your expense has been verified\",\n        \"user\": {\n            \"id\": 812111,\n            \"name\": \"mark.glowacz\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:55:55.808+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ptr\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ip\": \"198.2.136.27\",\n        \"postfix_queue_id\": \"982EF61329\"\n    },\n    {\n        \"id\": \"df68bc6a-b0fb-4b20-a1f7-4331d7e94a67\",\n        \"uuid\": \"df68bc6a-b0fb-4b20-a1f7-4331d7e94a67\",\n        \"sender\": \"david.setzer@mailprotector.com\",\n        \"from\": \"David Setzer <david.setzer@mailprotector.com>\",\n        \"recipient\": \"haleigh.kump@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"35.169.41.199\",\n        \"subject\": \"Re: Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 993175,\n            \"name\": \"haleigh.kump\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:57.838+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"clean\",\n            \"38383:allow\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-27.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-27.outbound.emailsrv.net\",\n        \"ip\": \"35.169.41.199\",\n        \"postfix_queue_id\": \"567956124B\"\n    },\n    {\n        \"id\": \"df68bc6a-b0fb-4b20-a1f7-4331d7e94a67\",\n        \"uuid\": \"df68bc6a-b0fb-4b20-a1f7-4331d7e94a67\",\n        \"sender\": \"david.setzer@mailprotector.com\",\n        \"from\": \"David Setzer <david.setzer@mailprotector.com>\",\n        \"recipient\": \"ben.hathaway@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"35.169.41.199\",\n        \"subject\": \"Re: Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:57.838+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"clean\",\n            \"38383:allow\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-27.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-27.outbound.emailsrv.net\",\n        \"ip\": \"35.169.41.199\",\n        \"postfix_queue_id\": \"567956124B\"\n    },\n    {\n        \"id\": \"ae765d80-0571-4353-a9f7-b24bec46b9a7\",\n        \"uuid\": \"ae765d80-0571-4353-a9f7-b24bec46b9a7\",\n        \"sender\": \"david.setzer@mailprotector.com\",\n        \"from\": \"David Setzer <david.setzer@mailprotector.com>\",\n        \"recipient\": \"haleigh.kump@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"104.47.38.50\",\n        \"subject\": \"Re: Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:56.941+00:00\",\n        \"results_data\": [\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"NAM02-BL2-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bl2nam02lp2050.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.38.50\",\n        \"postfix_queue_id\": \"1F303613C9\"\n    },\n    {\n        \"id\": \"ae765d80-0571-4353-a9f7-b24bec46b9a7\",\n        \"uuid\": \"ae765d80-0571-4353-a9f7-b24bec46b9a7\",\n        \"sender\": \"david.setzer@mailprotector.com\",\n        \"from\": \"David Setzer <david.setzer@mailprotector.com>\",\n        \"recipient\": \"ben.hathaway@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"104.47.38.50\",\n        \"subject\": \"Re: Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:56.941+00:00\",\n        \"results_data\": [\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"NAM02-BL2-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bl2nam02lp2050.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.38.50\",\n        \"postfix_queue_id\": \"1F303613C9\"\n    },\n    {\n        \"id\": \"4f7b0d07-09db-4ff7-8203-c7918662b264\",\n        \"uuid\": \"4f7b0d07-09db-4ff7-8203-c7918662b264\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"34.237.235.151\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:50.314+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-29.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-29.outbound.emailsrv.net\",\n        \"ip\": \"34.237.235.151\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"d422bb6c-033f-4eb5-887b-54bc087c883f\",\n        \"uuid\": \"d422bb6c-033f-4eb5-887b-54bc087c883f\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.0.70.91\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:30.516+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"transport-1.inbound.emailservice.io\",\n        \"ptr\": \"transport-1.inbound.emailservice.io\",\n        \"ip\": \"52.0.70.91\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"19feb039-4e98-476b-a637-45e8a3621641\",\n        \"uuid\": \"19feb039-4e98-476b-a637-45e8a3621641\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"spamservice@mailprotector.com\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.140.110\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 847734,\n            \"name\": \"spamservice\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:04.849+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-2.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-2.outbound.emailsrv.net\",\n        \"ip\": \"52.1.140.110\",\n        \"postfix_queue_id\": \"ECBCB61274\"\n    },\n    {\n        \"id\": \"390da527-126c-4662-9829-6963abe4fa59\",\n        \"uuid\": \"390da527-126c-4662-9829-6963abe4fa59\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"spamservice@mailprotector.com\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.23.3\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 847734,\n            \"name\": \"spamservice\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:03.258+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-1.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-1.outbound.emailsrv.net\",\n        \"ip\": \"52.1.23.3\",\n        \"postfix_queue_id\": \"7ED6F80084\"\n    },\n    {\n        \"id\": \"dfda0592-74bc-403e-9e27-bc93902c069a\",\n        \"uuid\": \"dfda0592-74bc-403e-9e27-bc93902c069a\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"naspam@mailprotector.biz\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.22.79.245\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 269891,\n            \"name\": \"naspam\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:03.256+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-7.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-7.outbound.emailsrv.net\",\n        \"ip\": \"52.22.79.245\",\n        \"postfix_queue_id\": \"A693180072\"\n    },\n    {\n        \"id\": \"a9fd6cd5-9755-45e3-9abc-ee5a4f716075\",\n        \"uuid\": \"a9fd6cd5-9755-45e3-9abc-ee5a4f716075\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"naspam@mailprotector.biz\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"18.214.85.87\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 269891,\n            \"name\": \"naspam\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:02.924+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-23.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-23.outbound.emailsrv.net\",\n        \"ip\": \"18.214.85.87\",\n        \"postfix_queue_id\": \"AC884C2B89\"\n    },\n    {\n        \"id\": \"dd01b6c5-742c-4c8e-a8f4-111b3f350e64\",\n        \"uuid\": \"dd01b6c5-742c-4c8e-a8f4-111b3f350e64\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"spam@mailprotector.com\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.172.220.45\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:01.734+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-14.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-14.outbound.emailsrv.net\",\n        \"ip\": \"54.172.220.45\",\n        \"postfix_queue_id\": \"45E468006C\"\n    },\n    {\n        \"id\": \"5abab90d-e8d8-482f-baaa-630f51fca0d7\",\n        \"uuid\": \"5abab90d-e8d8-482f-baaa-630f51fca0d7\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"spam@mailprotector.com\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"107.23.53.12\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:01.649+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-24.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-24.outbound.emailsrv.net\",\n        \"ip\": \"107.23.53.12\",\n        \"postfix_queue_id\": \"2257BC02A1\"\n    },\n    {\n        \"id\": \"0a73e277-5a23-4ec7-bdda-3ce9708c8e7a\",\n        \"uuid\": \"0a73e277-5a23-4ec7-bdda-3ce9708c8e7a\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"spam@emailservice.io\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.182.179\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 834193,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 15003,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:00.808+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-3.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-3.outbound.emailsrv.net\",\n        \"ip\": \"52.1.182.179\",\n        \"postfix_queue_id\": \"6C11DC0290\"\n    },\n    {\n        \"id\": \"050df29b-be2b-41c0-94f0-b94ea6c6b9ea\",\n        \"uuid\": \"050df29b-be2b-41c0-94f0-b94ea6c6b9ea\",\n        \"sender\": \"bronk@iciconstruction.com\",\n        \"from\": \"Robert Bronk <Bronk@iciconstruction.com>\",\n        \"recipient\": \"spam@emailservice.io\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.173.10.57\",\n        \"subject\": \"FW: New Year Greetings from Flynaut\",\n        \"user\": {\n            \"id\": 834193,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 15003,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:54:00.603+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-21.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-21.outbound.emailsrv.net\",\n        \"ip\": \"54.173.10.57\",\n        \"postfix_queue_id\": \"3102DC0283\"\n    },\n    {\n        \"id\": \"0c3efbb1-f49f-4cd2-8590-6d7210909271\",\n        \"uuid\": \"0c3efbb1-f49f-4cd2-8590-6d7210909271\",\n        \"sender\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"Ben Hathaway <ben.hathaway@mailprotector.com>\",\n        \"recipient\": \"david.setzer@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.172.220.45\",\n        \"subject\": \"Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:38.888+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-14.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-14.outbound.emailsrv.net\",\n        \"ip\": \"54.172.220.45\",\n        \"postfix_queue_id\": \"BE8B961258\"\n    },\n    {\n        \"id\": \"0c3efbb1-f49f-4cd2-8590-6d7210909271\",\n        \"uuid\": \"0c3efbb1-f49f-4cd2-8590-6d7210909271\",\n        \"sender\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"Ben Hathaway <ben.hathaway@mailprotector.com>\",\n        \"recipient\": \"haleigh.kump@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.172.220.45\",\n        \"subject\": \"Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 993175,\n            \"name\": \"haleigh.kump\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:38.888+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-14.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-14.outbound.emailsrv.net\",\n        \"ip\": \"54.172.220.45\",\n        \"postfix_queue_id\": \"BE8B961258\"\n    },\n    {\n        \"id\": \"f64aa530-8b67-4e74-b18c-b34a9c8e8b49\",\n        \"uuid\": \"f64aa530-8b67-4e74-b18c-b34a9c8e8b49\",\n        \"sender\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"Ben Hathaway <ben.hathaway@mailprotector.com>\",\n        \"recipient\": \"david.setzer@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"104.47.56.171\",\n        \"subject\": \"Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:38.448+00:00\",\n        \"results_data\": [\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"NAM11-CO1-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-co1nam11lp2171.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.56.171\",\n        \"postfix_queue_id\": \"0BCC2A2451\"\n    },\n    {\n        \"id\": \"f64aa530-8b67-4e74-b18c-b34a9c8e8b49\",\n        \"uuid\": \"f64aa530-8b67-4e74-b18c-b34a9c8e8b49\",\n        \"sender\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"Ben Hathaway <ben.hathaway@mailprotector.com>\",\n        \"recipient\": \"haleigh.kump@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"104.47.56.171\",\n        \"subject\": \"Purchase request: Postman Pro\",\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:38.448+00:00\",\n        \"results_data\": [\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"NAM11-CO1-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-co1nam11lp2171.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.56.171\",\n        \"postfix_queue_id\": \"0BCC2A2451\"\n    },\n    {\n        \"id\": \"76280e70-8855-4c0f-a72f-73cefa2070aa\",\n        \"uuid\": \"76280e70-8855-4c0f-a72f-73cefa2070aa\",\n        \"sender\": \"bounce-md_30378494.5e137419.v1-ac2a717c81ca4ff091917d0431a2c8ed@mandrillapp.com\",\n        \"from\": \"PeopleKeep <reviewsupport@peoplekeep.com>\",\n        \"recipient\": \"mark.glowacz@mailprotector.com\",\n        \"score\": {\n            \"score\": 132\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"198.2.136.27\",\n        \"subject\": \"Your expense has been verified\",\n        \"user\": {\n            \"id\": 812111,\n            \"name\": \"mark.glowacz\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:30.008+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\",\n            [\n                \"sa_score\",\n                1.3\n            ]\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ptr\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ip\": \"198.2.136.27\",\n        \"postfix_queue_id\": \"8C518611D5\"\n    },\n    {\n        \"id\": \"66392df2-3937-4a68-83e0-6e964a609c90\",\n        \"uuid\": \"66392df2-3937-4a68-83e0-6e964a609c90\",\n        \"sender\": \"0100016f7bfd2490-c835fd4e-63b8-4dea-9bd5-1afa603e79cc-000000@ses.bracket.email\",\n        \"from\": \"\\\"George Philipose [Bracket]\\\" <do.not.reply.with.email@bracket.email>\",\n        \"recipient\": \"ben.hathaway@mailprotector.com\",\n        \"score\": {\n            \"score\": 20\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.240.32.175\",\n        \"subject\": \"New secure reply: [Re: Diligence Follow-Up Questions]\",\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:05.779+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"clean\",\n            \"allow:sender\"\n        ],\n        \"rule_ids\": [\n            132799\n        ],\n        \"helo\": \"a32-175.smtp-out.amazonses.com\",\n        \"ptr\": \"a32-175.smtp-out.amazonses.com\",\n        \"ip\": \"54.240.32.175\",\n        \"postfix_queue_id\": \"8D1EA61221\"\n    },\n    {\n        \"id\": \"d3d068f7-14fe-430f-903b-dbf4b33a6c6f\",\n        \"uuid\": \"d3d068f7-14fe-430f-903b-dbf4b33a6c6f\",\n        \"sender\": \"0100016f7bfd2427-6b06769d-9fa6-48dd-9780-69fd8602eff6-000000@ses.bracket.email\",\n        \"from\": \"\\\"George Philipose [Bracket]\\\" <do.not.reply.with.email@bracket.email>\",\n        \"recipient\": \"kent.elmer@mailprotector.com\",\n        \"score\": {\n            \"score\": 64\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.240.32.175\",\n        \"subject\": \"New secure reply: [Re: Diligence Follow-Up Questions]\",\n        \"user\": {\n            \"id\": 1119537,\n            \"name\": \"kent.elmer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:05.744+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"clean\",\n            [\n                \"sa_score\",\n                1.1\n            ]\n        ],\n        \"rule_ids\": [\n            132799\n        ],\n        \"helo\": \"a32-175.smtp-out.amazonses.com\",\n        \"ptr\": \"a32-175.smtp-out.amazonses.com\",\n        \"ip\": \"54.240.32.175\",\n        \"postfix_queue_id\": \"625FF61718\"\n    },\n    {\n        \"id\": \"dfa0e8ef-c180-40c8-bd1f-d3076ba1f3ae\",\n        \"uuid\": \"dfa0e8ef-c180-40c8-bd1f-d3076ba1f3ae\",\n        \"sender\": \"0100016f7bfd21ed-1635f725-dc50-4ed4-ba54-91835ee777da-000000@ses.bracket.email\",\n        \"from\": \"\\\"George Philipose [Bracket]\\\" <do.not.reply.with.email@bracket.email>\",\n        \"recipient\": \"david.setzer@mailprotector.com\",\n        \"score\": {\n            \"score\": 64\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.240.32.175\",\n        \"subject\": \"New secure reply: [Re: Diligence Follow-Up Questions]\",\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:53:05.318+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"clean\",\n            [\n                \"sa_score\",\n                1.1\n            ]\n        ],\n        \"rule_ids\": [\n            132799\n        ],\n        \"helo\": \"a32-175.smtp-out.amazonses.com\",\n        \"ptr\": \"a32-175.smtp-out.amazonses.com\",\n        \"ip\": \"54.240.32.175\",\n        \"postfix_queue_id\": \"DE88E616B3\"\n    },\n    {\n        \"id\": \"13078e92-550d-431a-90c1-dddcff581f00\",\n        \"uuid\": \"13078e92-550d-431a-90c1-dddcff581f00\",\n        \"sender\": null,\n        \"from\": \"MAILER-DAEMON@amazonses.com\",\n        \"recipient\": \"do.not.reply.with.email@bracket.email\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.240.14.86\",\n        \"subject\": \"Delivery Status Notification (Failure)\",\n        \"user\": {\n            \"id\": 825400,\n            \"name\": \"noreply\"\n        },\n        \"user_group\": {\n            \"id\": 18925,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 20043,\n            \"name\": \"bracket.email\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:52:54.724+00:00\",\n        \"results_data\": [\n            \"spf_none\",\n            \"from_spf_pass\",\n            \"clean\"\n        ],\n        \"rule_ids\": [\n            106101\n        ],\n        \"helo\": \"a14-86.smtp-out.amazonses.com\",\n        \"ptr\": \"a14-86.smtp-out.amazonses.com\",\n        \"ip\": \"54.240.14.86\",\n        \"postfix_queue_id\": \"74AFA6116D\"\n    },\n    {\n        \"id\": \"0577f557-1086-4af5-a7c3-40bf304f2801\",\n        \"uuid\": \"0577f557-1086-4af5-a7c3-40bf304f2801\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.84.246.51\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:52:49.973+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-5.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-5.outbound.emailsrv.net\",\n        \"ip\": \"54.84.246.51\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"2c9df7d4-dbdd-41d9-af7b-6b43c3c7f748\",\n        \"uuid\": \"2c9df7d4-dbdd-41d9-af7b-6b43c3c7f748\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.84.14.167\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:52:44.869+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-4.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-4.outbound.emailsrv.net\",\n        \"ip\": \"54.84.14.167\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"d978cf60-d165-40be-8d34-762125536c45\",\n        \"uuid\": \"d978cf60-d165-40be-8d34-762125536c45\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"18.214.85.87\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:52:40.950+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-23.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-23.outbound.emailsrv.net\",\n        \"ip\": \"18.214.85.87\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"87a035f7-1273-4cc5-8feb-d411de6c91c9\",\n        \"uuid\": \"87a035f7-1273-4cc5-8feb-d411de6c91c9\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.5.166.138\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:52:39.589+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-18.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-18.outbound.emailsrv.net\",\n        \"ip\": \"52.5.166.138\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"8dc7fe4b-5f08-494f-b8a0-38082b28c2b6\",\n        \"uuid\": \"8dc7fe4b-5f08-494f-b8a0-38082b28c2b6\",\n        \"sender\": \"isabel56ellis@outlook.com\",\n        \"from\": \"Isabel Ellis <Isabel56Ellis@outlook.com>\",\n        \"recipient\": \"console@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"40.92.74.22\",\n        \"subject\": null,\n        \"user\": {\n            \"id\": 662400,\n            \"name\": \"console\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:52:32.606+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"EUR04-DB3-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-oln040092074022.outbound.protection.outlook.com\",\n        \"ip\": \"40.92.74.22\",\n        \"postfix_queue_id\": \"6737BC2B79\"\n    },\n    {\n        \"id\": \"51584a63-421e-45c1-84e7-1361afd7152b\",\n        \"uuid\": \"51584a63-421e-45c1-84e7-1361afd7152b\",\n        \"sender\": \"bounce-md_30378494.5e1373cd.v1-7e57ab2c199d4e5dbe3b903fe3a8ab64@mandrillapp.com\",\n        \"from\": \"PeopleKeep <reviewsupport@peoplekeep.com>\",\n        \"recipient\": \"mark.glowacz@mailprotector.com\",\n        \"score\": {\n            \"score\": 100\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"198.2.136.27\",\n        \"subject\": \"Please provide additional information for your reimbursement request.\",\n        \"user\": {\n            \"id\": 812111,\n            \"name\": \"mark.glowacz\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:52:15.008+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ptr\": \"mail136-27.atl41.mandrillapp.com\",\n        \"ip\": \"198.2.136.27\",\n        \"postfix_queue_id\": \"BA58EC00F7\"\n    },\n    {\n        \"id\": \"8a0407d3-d2e6-476c-9b4c-bda272fda4ed\",\n        \"uuid\": \"8a0407d3-d2e6-476c-9b4c-bda272fda4ed\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.0.74.211\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:51:03.564+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"transport-3.inbound.emailservice.io\",\n        \"ptr\": \"transport-3.inbound.emailservice.io\",\n        \"ip\": \"52.0.74.211\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"7d92396d-392c-46d2-9282-8f02e91d49fd\",\n        \"uuid\": \"7d92396d-392c-46d2-9282-8f02e91d49fd\",\n        \"sender\": \"bounce-md_30378494.5e137379.v1-2bbd184b82d04ec385d931a9cba7a00d@mandrillapp.com\",\n        \"from\": \"PeopleKeep <reviewsupport@peoplekeep.com>\",\n        \"recipient\": \"mark.glowacz@mailprotector.com\",\n        \"score\": {\n            \"score\": 100\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"198.2.187.7\",\n        \"subject\": \"Please provide additional information for your reimbursement request.\",\n        \"user\": {\n            \"id\": 812111,\n            \"name\": \"mark.glowacz\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:50:49.970+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail187-7.suw11.mandrillapp.com\",\n        \"ptr\": \"mail187-7.suw11.mandrillapp.com\",\n        \"ip\": \"198.2.187.7\",\n        \"postfix_queue_id\": \"A086CC0295\"\n    },\n    {\n        \"id\": \"512cdb5a-0b4e-45df-af7c-151ec394bbb1\",\n        \"uuid\": \"512cdb5a-0b4e-45df-af7c-151ec394bbb1\",\n        \"sender\": \"bounce-md_30378494.5e13733c.v1-70909b2b6aea414eb7c42562de925835@mandrillapp.com\",\n        \"from\": \"PeopleKeep <reviewsupport@peoplekeep.com>\",\n        \"recipient\": \"mark.glowacz@mailprotector.com\",\n        \"score\": {\n            \"score\": 80\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"198.2.187.7\",\n        \"subject\": \"Your expense has been verified\",\n        \"user\": {\n            \"id\": 812111,\n            \"name\": \"mark.glowacz\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:49:49.302+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail187-7.suw11.mandrillapp.com\",\n        \"ptr\": \"mail187-7.suw11.mandrillapp.com\",\n        \"ip\": \"198.2.187.7\",\n        \"postfix_queue_id\": \"F1382C2A96\"\n    },\n    {\n        \"id\": \"ea65e060-d1ec-45c0-a08f-1cb2ade85b95\",\n        \"uuid\": \"ea65e060-d1ec-45c0-a08f-1cb2ade85b95\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"69.75.23.106\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:49:48.981+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"ap-exch2k16.avatarpartners.local\",\n        \"ptr\": \"mail.avatarpartners.com\",\n        \"ip\": \"69.75.23.106\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"8c91098c-4fa6-4fab-91a4-5c2efd6ae7e8\",\n        \"uuid\": \"8c91098c-4fa6-4fab-91a4-5c2efd6ae7e8\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.84.246.51\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-06T17:47:59.706+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-5.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-5.outbound.emailsrv.net\",\n        \"ip\": \"54.84.246.51\",\n        \"postfix_queue_id\": null\n    }\n]"}],"_postman_id":"2aaabeb6-130a-406e-9290-781826f5d180"}],"id":"f4b1b64e-5d68-4c4a-b871-7a02bdba86d0","_postman_id":"f4b1b64e-5d68-4c4a-b871-7a02bdba86d0","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Messages","item":[{"name":"Reseller Messages","id":"e22b5b00-461a-4a2b-955a-48cf3684af27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/messages","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","messages"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"cb362320-bc5c-4a17-a5dc-91cc648a88a0","name":"Reseller Messages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"19da220c4459529847c69f79baa58e20\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2c751747-f348-445d-89bf-6f30cbb19dac"},{"key":"X-Runtime","value":"22.467986"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1985056110,\n        \"uuid\": \"4F03A4FF-7E36-489E-9F14-D7F95BB0EA2B.1\",\n        \"address\": \"sales@mailprotector.com.au\",\n        \"recipients\": [\n            \"sales@mailprotector.com.au\"\n        ],\n        \"sender\": \"lanxifa02@163.com\",\n        \"to\": \"\\\"sales\\\" <sales@mailprotector.com.au>\",\n        \"from\": \"\\\"Keans Group Corp.\\\" <lanxifa02@163.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Re;Luminous collect\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38485,\n            \"name\": \"sales\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T20:50:11.000Z\"\n    },\n    {\n        \"id\": 1985012921,\n        \"uuid\": \"4CEEA828-38FB-44CF-A86B-8451E5D556E5.1\",\n        \"address\": \"info@mailprotector.com.au\",\n        \"recipients\": [\n            \"info@mailprotector.com.au\"\n        ],\n        \"sender\": \"lanxifa02@163.com\",\n        \"to\": \"\\\"info\\\" <info@mailprotector.com.au>\",\n        \"from\": \"\\\"Keans Group Corp.\\\" <lanxifa02@163.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Re;Luminous collect\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 740\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 682800,\n            \"name\": \"info\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T18:18:14.000Z\"\n    },\n    {\n        \"id\": 1987420093,\n        \"uuid\": \"28E95B58-0820-4232-9A32-958FF0053DBE.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"WilliamStanley@velo.net.id\",\n        \"to\": \"\\\"Evalyn\\\" <kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Dahlia\\\" <WilliamStanley@velo.net.id>\",\n        \"cc\": \"\",\n        \"subject\": \"Pay less get a real treasure! Order outstanding Levitra!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:26:18.000Z\"\n    },\n    {\n        \"id\": 1987418962,\n        \"uuid\": \"FD14FAF3-9CB1-4F65-A0AB-411F4C7D957D.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"1axb2nwj5so0wb5ixy84vk1hmv90rmlj7fqd5d@bf02c.hubspotemail.net\",\n        \"to\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"Natalie Jones <natalie.jones@cloudzero.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Building on Serverless for Cost Efficiency and Performance\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:24:11.000Z\"\n    },\n    {\n        \"id\": 1987418950,\n        \"uuid\": \"790F645B-C35D-4011-B9C4-6DED5C95305D.1\",\n        \"address\": \"andy.barringer@mailprotector.com\",\n        \"recipients\": [\n            \"andy.barringer@mailprotector.com\"\n        ],\n        \"sender\": \"1axbmdslr5a5f5yu4cgu47vnu9h9m1gm896r87@bf02b.hubspotemail.net\",\n        \"to\": \"andy.barringer@mailprotector.com\",\n        \"from\": \"Natalie Jones <natalie.jones@cloudzero.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Building on Serverless for Cost Efficiency and Performance\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 728356,\n            \"name\": \"andy.barringer\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:24:09.000Z\"\n    },\n    {\n        \"id\": 1987414416,\n        \"uuid\": \"B21B372E-1E3C-4554-9BDF-F7F5AF80D5B7.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"bounce@enews.datacenterworld.com\",\n        \"to\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"\\\"Brian Gillooly\\\" <Informa@enews.datacenterworld.com>\",\n        \"cc\": \"\",\n        \"subject\": \"What are your data center objectives for 2020?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:14:59.000Z\"\n    },\n    {\n        \"id\": 1987413826,\n        \"uuid\": \"5A2090FF-0F8F-48E2-9F4D-D75BFE6E31AD.1\",\n        \"address\": \"ricky.hayes@mailprotector.com\",\n        \"recipients\": [\n            \"ricky.hayes@mailprotector.com\"\n        ],\n        \"sender\": \"PatrickClark@telekom.rs\",\n        \"to\": \"\\\"Ayleen\\\" <ricky.hayes@mailprotector.com>\",\n        \"from\": \"\\\"Elsie\\\" <PatrickClark@telekom.rs>\",\n        \"cc\": \"\",\n        \"subject\": \"Sex only on special dates? Buy Viagra Soft! Enjoy life.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38445,\n            \"name\": \"ricky.hayes\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:13:46.000Z\"\n    },\n    {\n        \"id\": 1987413601,\n        \"uuid\": \"2626825B-175C-4ECB-8C34-F0D73D42F751.1\",\n        \"address\": \"dhunt@mailprotector.com.au\",\n        \"recipients\": [\n            \"dhunt@mailprotector.com.au\"\n        ],\n        \"sender\": \"ChristopherCooper@totsona.com\",\n        \"to\": \"\\\"Stefanie\\\" <dhunt@mailprotector.com.au>\",\n        \"from\": \"\\\"Francoise\\\" <ChristopherCooper@totsona.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Don't be ashamed to buy Cialis! Live full life.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 25,\n                \"mode\": \"inbound\",\n                \"title\": \"Policy Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38473,\n            \"name\": \"dhunt\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:13:16.000Z\"\n    },\n    {\n        \"id\": 1987412163,\n        \"uuid\": \"D8BDCF3C-9CC3-4164-9BFA-757E8C1C118D.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"bounce-mc.us20_118362490.12124687-c421e14df4@mail180.suw12.mcsv.net\",\n        \"to\": \"<ben.hathaway@mailprotector.com>\",\n        \"from\": \"=?utf-8?Q?10X=20Consulting=20Group?= <info@10xcg.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Why Choose GIGA over a Traditional Data Center?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:10:18.000Z\"\n    },\n    {\n        \"id\": 1987410386,\n        \"uuid\": \"2CDAE67D-38AB-4030-801B-7711C99ACE2B.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"mark@mcnabolalaw.com\",\n        \"to\": \"\\\"spam@emailservice.io\\\" <spam@emailservice.io>\",\n        \"from\": \"Mark McNabola <mark@mcnabolalaw.com>\",\n        \"cc\": \"\",\n        \"subject\": \"FW: Your thoughts on the game of golf are important\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 320\n        },\n        \"results\": [\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:06:28.000Z\"\n    },\n    {\n        \"id\": 1987410389,\n        \"uuid\": \"170E594C-768A-455A-84D4-640D719DC8F0.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"mark@mcnabolalaw.com\",\n        \"to\": \"\\\"spam@emailservice.io\\\" <spam@emailservice.io>\",\n        \"from\": \"Mark McNabola <mark@mcnabolalaw.com>\",\n        \"cc\": \"\",\n        \"subject\": \"FW: $3.1M Verdict: Animating Spinal Cord Injury After Premature Discharge\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 400\n        },\n        \"results\": [\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:06:27.000Z\"\n    },\n    {\n        \"id\": 1987407572,\n        \"uuid\": \"21898B44-B96E-4A88-8457-8DB5D78E0453.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"JosephEllis@ertelecom.ru\",\n        \"to\": \"\\\"Micah\\\" <kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Jordyn\\\" <JosephEllis@ertelecom.ru>\",\n        \"cc\": \"\",\n        \"subject\": \"Male enhancement overnight delivery\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T22:01:15.000Z\"\n    },\n    {\n        \"id\": 1987400868,\n        \"uuid\": \"95E4ACEA-2DB8-4A29-9A12-0D91EB61BA89.3\",\n        \"address\": \"ricky.hayes@mailprotector.com\",\n        \"recipients\": [\n            \"ricky.hayes@mailprotector.com\"\n        ],\n        \"sender\": \"DavidHall@tinamcmahancpa.com\",\n        \"to\": \"\\\"Liana\\\" <ricky.hayes@mailprotector.com>\",\n        \"from\": \"\\\"Kassandra\\\" <DavidHall@tinamcmahancpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"It's going to be pleasantful time! Choose Cialis Soft.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38445,\n            \"name\": \"ricky.hayes\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:47:45.000Z\"\n    },\n    {\n        \"id\": 1987396834,\n        \"uuid\": \"D9A994F3-43F4-4E12-8B55-C29A993D9ABF.1\",\n        \"address\": \"partners@mailprotector.com\",\n        \"recipients\": [\n            \"partners@mailprotector.com\"\n        ],\n        \"sender\": \"EricHenderson@rt.ru\",\n        \"to\": \"\\\"Calliope\\\" <partners@mailprotector.com>\",\n        \"from\": \"\\\"Kinslee\\\" <EricHenderson@rt.ru>\",\n        \"cc\": \"\",\n        \"subject\": \"The science of pleasure. Brand Viagra for real men.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 2,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Reverse DNS\",\n                \"description\": \"The server that relayed the message was part of an ISP network which has a high frequency of spam.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 710337,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:41:29.000Z\"\n    },\n    {\n        \"id\": 1987396719,\n        \"uuid\": \"E64C5946-32BB-477D-A6A8-B0D2F4FE9E74.1\",\n        \"address\": \"partners@mailprotector.com.au\",\n        \"recipients\": [\n            \"partners@mailprotector.com.au\"\n        ],\n        \"sender\": \"ScottColeman@telenor.rs\",\n        \"to\": \"\\\"Micah\\\" <partners@mailprotector.com.au>\",\n        \"from\": \"\\\"Arianna\\\" <ScottColeman@telenor.rs>\",\n        \"cc\": \"\",\n        \"subject\": \"Levitra - a new better you. Purchase now.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38483,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:41:14.000Z\"\n    },\n    {\n        \"id\": 1987395076,\n        \"uuid\": \"7091F33B-CC60-4694-AAA4-D76F1FD4B71A.1\",\n        \"address\": \"david.setzer@mailprotector.com\",\n        \"recipients\": [\n            \"david.setzer@mailprotector.com\"\n        ],\n        \"sender\": \"return-aikens_a-aikens_a200106-9509014-0f5b36=2@mailer.prospectrmarketing.com\",\n        \"to\": \"dsetzer@mailprotector.com\",\n        \"from\": \"Pit Turenne <pit@aikenslakelodge.com>\",\n        \"cc\": \"\",\n        \"subject\": \"canada fishing\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 700\n        },\n        \"results\": [\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 64,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamware\",\n                \"description\": \"Email marketing services, bullet proof hosting, email databases.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:38:30.000Z\"\n    },\n    {\n        \"id\": 1987393581,\n        \"uuid\": \"D4A65117-F083-42AF-A481-94F67DF99195.1\",\n        \"address\": \"feedback@mailprotector.com.au\",\n        \"recipients\": [\n            \"feedback@mailprotector.com.au\"\n        ],\n        \"sender\": \"JeffLee@tomcrewscpa.com\",\n        \"to\": \"\\\"Juniper\\\" <feedback@mailprotector.com.au>\",\n        \"from\": \"\\\"Diana\\\" <JeffLee@tomcrewscpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Don't know what ED med to chose? Viagra Super Force fits all!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38477,\n            \"name\": \"feedback\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:35:49.000Z\"\n    },\n    {\n        \"id\": 1987393497,\n        \"uuid\": \"4CA36BDE-CF53-4156-AD91-997CBC817B4A.1\",\n        \"address\": \"feedback@mailprotector.com.au\",\n        \"recipients\": [\n            \"feedback@mailprotector.com.au\"\n        ],\n        \"sender\": \"JimReed@psi.br\",\n        \"to\": \"\\\"Vivian\\\" <feedback@mailprotector.com.au>\",\n        \"from\": \"\\\"Reagan\\\" <JimReed@psi.br>\",\n        \"cc\": \"\",\n        \"subject\": \"Levitra Soft Tabs for boner to have and to hold!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 600\n        },\n        \"results\": [\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38477,\n            \"name\": \"feedback\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:35:43.000Z\"\n    },\n    {\n        \"id\": 1987390770,\n        \"uuid\": \"539E80E3-014F-4726-BA1D-6805FCAAC33D.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"LarryCarter@aliennetwork.net.br\",\n        \"to\": \"\\\"Arianna\\\" <kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Arianna\\\" <LarryCarter@aliennetwork.net.br>\",\n        \"cc\": \"\",\n        \"subject\": \"could you meet me today?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:31:14.000Z\"\n    },\n    {\n        \"id\": 1987389954,\n        \"uuid\": \"BA21B9D4-DD99-4A39-A941-9DE4E3E1CA1C.1\",\n        \"address\": \"info@mailprotector.com.au\",\n        \"recipients\": [\n            \"info@mailprotector.com.au\"\n        ],\n        \"sender\": \"LarryYoung@satcomm.pk\",\n        \"to\": \"\\\"Matilda\\\" <info@mailprotector.com.au>\",\n        \"from\": \"\\\"Willa\\\" <LarryYoung@satcomm.pk>\",\n        \"cc\": \"\",\n        \"subject\": \"The pleasure is where Cialis Super Active takes place. Buy here.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 660\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 682800,\n            \"name\": \"info\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:30:12.000Z\"\n    },\n    {\n        \"id\": 1987389555,\n        \"uuid\": \"6515D5D5-221A-48C5-8F33-C7AC7F19939A.1\",\n        \"address\": \"info@mailprotector.com.au\",\n        \"recipients\": [\n            \"info@mailprotector.com.au\"\n        ],\n        \"sender\": \"KeithAnderson@une.net.co\",\n        \"to\": \"\\\"Joslyn\\\" <info@mailprotector.com.au>\",\n        \"from\": \"\\\"Whitney\\\" <KeithAnderson@une.net.co>\",\n        \"cc\": \"\",\n        \"subject\": \"Love knows no age. Kamagra Brand Oral Jelly helps to feel it.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 880\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 682800,\n            \"name\": \"info\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:29:35.000Z\"\n    },\n    {\n        \"id\": 1987383755,\n        \"uuid\": \"6470A569-2282-4A2B-8907-71459FB2750A.1\",\n        \"address\": \"dhunt@mailprotector.com.au\",\n        \"recipients\": [\n            \"dhunt@mailprotector.com.au\"\n        ],\n        \"sender\": \"GaryScott@expl.in\",\n        \"to\": \"\\\"Courtney\\\" <dhunt@mailprotector.com.au>\",\n        \"from\": \"\\\"Ivanna\\\" <GaryScott@expl.in>\",\n        \"cc\": \"\",\n        \"subject\": \"Forget about doctors. Enjoy better solution. Cialis Super Active.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 25,\n                \"mode\": \"inbound\",\n                \"title\": \"Policy Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38473,\n            \"name\": \"dhunt\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:20:25.000Z\"\n    },\n    {\n        \"id\": 1987382057,\n        \"uuid\": \"853BE1E0-8C79-4535-8986-8646FE7DBA40.1\",\n        \"address\": \"partners@mailprotector.com\",\n        \"recipients\": [\n            \"partners@mailprotector.com\"\n        ],\n        \"sender\": \"JoshuaLewis@windx.com.br\",\n        \"to\": \"\\\"Hadlee\\\" <partners@mailprotector.com>\",\n        \"from\": \"\\\"Giselle\\\" <JoshuaLewis@windx.com.br>\",\n        \"cc\": \"\",\n        \"subject\": \"Buy Levitra now! Prices gone mad!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 710337,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:17:40.000Z\"\n    },\n    {\n        \"id\": 1987382112,\n        \"uuid\": \"D10628DF-EF5F-47EC-9324-DC21D92A79ED.1\",\n        \"address\": \"partners@mailprotector.com.au\",\n        \"recipients\": [\n            \"partners@mailprotector.com.au\"\n        ],\n        \"sender\": \"JamesTaylor@tkcpa.com\",\n        \"to\": \"\\\"Aubrey\\\" <partners@mailprotector.com.au>\",\n        \"from\": \"\\\"Margot\\\" <JamesTaylor@tkcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Wild adventures all night long. Viagra Super Active.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38483,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:17:40.000Z\"\n    },\n    {\n        \"id\": 1987380713,\n        \"uuid\": \"67ABDDFF-65CD-4039-8EFB-4CB6EDE31DAB.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"bs2@photoconductive.ok315.info\",\n        \"to\": \"<kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Last Republican President\\\" <BS2@photoconductive.ok315.info>\",\n        \"cc\": \"\",\n        \"subject\": \"Trump: Americaâ\\u0080\\u0099s Last Republican President?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 440\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 67,\n                \"mode\": \"inbound\",\n                \"title\": \"Insurance\",\n                \"description\": \"All kinds of insurance quotes & spam.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:15:31.000Z\"\n    },\n    {\n        \"id\": 1987384155,\n        \"uuid\": \"CBB4DB4A-C593-4371-8E9E-70DAFA7E2B2E.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"yasuo@audienceindex.best\",\n        \"to\": null,\n        \"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?=\\\" <yasuo@audienceindex.best>\",\n        \"cc\": \"\",\n        \"subject\": \"love knows no age - meet compatible singles near you\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 760\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 61,\n                \"mode\": \"inbound\",\n                \"title\": \"Porn/Adult\",\n                \"description\": \"Pornography, Dating, 'organ' augmentation.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:08:30.000Z\"\n    },\n    {\n        \"id\": 1987370844,\n        \"uuid\": \"FC675658-0522-4BE1-8CAD-0295B3E88B6D.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"A6Dz49PNwSEuQtdDcSOsjqg==_1102382247786_wH1/oLOCEee2fdSuUnU2zg==@in.constantcontact.com\",\n        \"to\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"\\\"Scott & Scott, LLP\\\" <dpeterson@scottandscottllp.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Technology Law Update January 2020\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T21:00:31.000Z\"\n    },\n    {\n        \"id\": 1987369886,\n        \"uuid\": \"32B12A72-5316-4E00-A8FB-A08F22EEF530.1\",\n        \"address\": \"dhunt@mailprotector.com.au\",\n        \"recipients\": [\n            \"dhunt@mailprotector.com.au\"\n        ],\n        \"sender\": \"FredBailey@tparkercpa.com\",\n        \"to\": \"\\\"Scarlette\\\" <dhunt@mailprotector.com.au>\",\n        \"from\": \"\\\"Ariel\\\" <FredBailey@tparkercpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Time for immodest proposals. Buy Viagra Super Force now!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38473,\n            \"name\": \"dhunt\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:58:55.000Z\"\n    },\n    {\n        \"id\": 1987366114,\n        \"uuid\": \"54FD8278-97F6-4187-8E33-E2C8A52C02CE.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"PeterWilson@tlh-cpa.com\",\n        \"to\": \"\\\"Alaya\\\" <kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Sage\\\" <PeterWilson@tlh-cpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Viagra Soft lives up it's reputation.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:52:20.000Z\"\n    },\n    {\n        \"id\": 1987361044,\n        \"uuid\": \"806B72D3-E403-4269-8A5B-17E18758024E.1\",\n        \"address\": \"sales@mailprotector.com.au\",\n        \"recipients\": [\n            \"sales@mailprotector.com.au\"\n        ],\n        \"sender\": \"8a3dd3f03c261ae2d72c783722e1e065@ypclistmanager.com\",\n        \"to\": \"sales@mailprotector.com.au\",\n        \"from\": \"Contacts Database <noreply@ypagescloud.com>\",\n        \"cc\": \"\",\n        \"subject\": \"[WORLDWIDE E-MAILS DATABASE] limited offer: -40% discount\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38485,\n            \"name\": \"sales\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:44:27.000Z\"\n    },\n    {\n        \"id\": 1987358089,\n        \"uuid\": \"F350EC67-FD06-4366-BE9E-0825AEC0E7B3.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"WalterScott@timwheatcpa.com\",\n        \"to\": \"\\\"Aubrielle\\\" <kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Bethany\\\" <WalterScott@timwheatcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Viagra Brand - your main equipment for love adventures.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:39:54.000Z\"\n    },\n    {\n        \"id\": 1987358654,\n        \"uuid\": \"050139FA-6F91-4E1E-BFD4-73F26BDE9466.1\",\n        \"address\": \"brett.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"brett.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"admin@electronicmailvouchers.com\",\n        \"to\": \"brett.hathaway@mailprotector.com\",\n        \"from\": \"\\\"Rachael Hamilton\\\" <mail@electronicmailvouchers.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Bitcoins are driving people out of 9-5 Jobs - Here's Why!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 36,\n                \"mode\": \"inbound\",\n                \"title\": \"Junk URL\",\n                \"description\": \"This message contained content matching our junk URL heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38389,\n            \"name\": \"brett.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:39:44.000Z\"\n    },\n    {\n        \"id\": 1987356076,\n        \"uuid\": \"9315D89E-904E-4C28-BDA5-722ED1AB6A72.1\",\n        \"address\": \"partners@mailprotector.co.uk\",\n        \"recipients\": [\n            \"partners@mailprotector.co.uk\"\n        ],\n        \"sender\": \"DavidLee@tjuna.com\",\n        \"to\": \"\\\"Catalina\\\" <partners@mailprotector.co.uk>\",\n        \"from\": \"\\\"Bridget\\\" <DavidLee@tjuna.com>\",\n        \"cc\": \"\",\n        \"subject\": \"can you meet me\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38505,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 1073,\n            \"name\": \"mailprotector.co.uk user group\"\n        },\n        \"domain\": {\n            \"id\": 1481,\n            \"name\": \"mailprotector.co.uk\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:36:39.000Z\"\n    },\n    {\n        \"id\": 1987355344,\n        \"uuid\": \"621BCCC2-4EB2-4DFE-A0EB-AD0140412228.1\",\n        \"address\": \"brandy.hancock@mailprotector.com\",\n        \"recipients\": [\n            \"brandy.hancock@mailprotector.com\"\n        ],\n        \"sender\": \"honors@h1.hilton.com\",\n        \"to\": \"\\\"BRANDY.HANCOCK@MAILPROTECTOR.COM\\\" <BRANDY.HANCOCK@MAILPROTECTOR.COM>\",\n        \"from\": \"\\\"Hilton Honors\\\" <honors@h1.hilton.com>\",\n        \"cc\": \"\",\n        \"subject\": \"See how fast you can earn a free night with Points Unlimited!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 68,\n                \"mode\": \"inbound\",\n                \"title\": \"Travel\",\n                \"description\": \"All kinds of travel / vacation spam.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 827259,\n            \"name\": \"brandy.hancock\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:35:34.000Z\"\n    },\n    {\n        \"id\": 1987353575,\n        \"uuid\": \"56F3F24D-2AE7-4CC5-A935-ED48848DCDD5.1\",\n        \"address\": \"support@mailprotector.com\",\n        \"recipients\": [\n            \"support@mailprotector.com\"\n        ],\n        \"sender\": \"GeorgeSanchez@toniportercpa.com\",\n        \"to\": \"\\\"Leia\\\" <support@mailprotector.com>\",\n        \"from\": \"\\\"Lara\\\" <GeorgeSanchez@toniportercpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The energy of bright feelings. Cialis Soft.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 147,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Neutral\",\n                \"description\": \"The SPF record specifies explicitly that nothing can be said about validity.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38457,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:32:40.000Z\"\n    },\n    {\n        \"id\": 1987353070,\n        \"uuid\": \"4F13524D-0396-41BC-AF15-4FD1B439B196.1\",\n        \"address\": \"support@mailprotector.com.au\",\n        \"recipients\": [\n            \"support@mailprotector.com.au\"\n        ],\n        \"sender\": \"DennisLee@advance.com.ar\",\n        \"to\": \"\\\"Bailee\\\" <support@mailprotector.com.au>\",\n        \"from\": \"\\\"Charleigh\\\" <DennisLee@advance.com.ar>\",\n        \"cc\": \"\",\n        \"subject\": \"AU Viagra Super Force you won't wish to share a pill.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38489,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:32:00.000Z\"\n    },\n    {\n        \"id\": 1987351737,\n        \"uuid\": \"AB0739C8-4565-4B80-883B-B17A20D847BC.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"bs2@pawnshop.ok314.info\",\n        \"to\": \"<kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Canvas Prints Advertisement\\\" <BS2@pawnshop.ok314.info>\",\n        \"cc\": \"\",\n        \"subject\": \"Get UNLIMITED 16 x 20 Custom Canvas Prints for $14.99\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 560\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:30:14.000Z\"\n    },\n    {\n        \"id\": 1987350405,\n        \"uuid\": \"26A1F95E-62F3-424C-BE62-CF5255A2C58A.1\",\n        \"address\": \"partners@mailprotector.co.uk\",\n        \"recipients\": [\n            \"partners@mailprotector.co.uk\"\n        ],\n        \"sender\": \"AndrewFlores@privatnet.cz\",\n        \"to\": \"\\\"Nia\\\" <partners@mailprotector.co.uk>\",\n        \"from\": \"\\\"Ryan\\\" <AndrewFlores@privatnet.cz>\",\n        \"cc\": \"\",\n        \"subject\": \"4 Ways to Make Easy Money\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 147,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Neutral\",\n                \"description\": \"The SPF record specifies explicitly that nothing can be said about validity.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38505,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 1073,\n            \"name\": \"mailprotector.co.uk user group\"\n        },\n        \"domain\": {\n            \"id\": 1481,\n            \"name\": \"mailprotector.co.uk\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:27:54.000Z\"\n    },\n    {\n        \"id\": 1987346985,\n        \"uuid\": \"7DBA87AE-38E8-483E-8E0F-6986A625D136.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"MarkHenderson@tm-cpa.com\",\n        \"to\": \"\\\"Kiana\\\" <kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Kiana\\\" <MarkHenderson@tm-cpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"I look at you and I cannot resist!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:22:21.000Z\"\n    },\n    {\n        \"id\": 1987346864,\n        \"uuid\": \"BE38EA52-3A1E-4DAE-B008-556B12D04B04.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"bs2@papillate.ok318.info\",\n        \"to\": \"<kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Tinnitus911 Now\\\" <BS2@papillate.ok318.info>\",\n        \"cc\": \"\",\n        \"subject\": \"Sleep easy once again, end tinnitus now!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 740\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 67,\n                \"mode\": \"inbound\",\n                \"title\": \"Insurance\",\n                \"description\": \"All kinds of insurance quotes & spam.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:22:07.000Z\"\n    },\n    {\n        \"id\": 1987343787,\n        \"uuid\": \"9942CCAC-BFDB-4F9A-8A6D-1215C04300C1.1\",\n        \"address\": \"noreply@mailprotector.com\",\n        \"recipients\": [\n            \"noreply@mailprotector.com\"\n        ],\n        \"sender\": \"\",\n        \"to\": \"<quarantinenotification@mailprotector.com>\",\n        \"from\": \"<postmaster@craftmade.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Undeliverable: Inbound Virus Quarantine Notification\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 60,\n                \"mode\": \"inbound\",\n                \"title\": \"Malware\",\n                \"description\": \"The message contains potentially dangerous message content or known virii.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 56347,\n            \"name\": \"noreply\"\n        },\n        \"user_group\": {\n            \"id\": 25995,\n            \"name\": \"CloudMail - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:17:30.000Z\"\n    },\n    {\n        \"id\": 1987339938,\n        \"uuid\": \"671683FE-9C41-421B-9975-2FF93D9BC8C7.1\",\n        \"address\": \"feedback@mailprotector.com.au\",\n        \"recipients\": [\n            \"feedback@mailprotector.com.au\"\n        ],\n        \"sender\": \"BrianKing@tjscpa.com\",\n        \"to\": \"\\\"Brianna\\\" <feedback@mailprotector.com.au>\",\n        \"from\": \"\\\"Melania\\\" <BrianKing@tjscpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Viagra Super Force - your main equipment for love adventures.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38477,\n            \"name\": \"feedback\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:11:41.000Z\"\n    },\n    {\n        \"id\": 1987335282,\n        \"uuid\": \"70485C3D-BD07-4DFC-AF29-3BC1D6B6381A.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"5311-53-121532-1231-kevin=milestonenetworks.com@mail.montoirnglogd.xyz\",\n        \"to\": \"<kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Curafen\\\" <Support@montoirnglogd.xyz>\",\n        \"cc\": \"\",\n        \"subject\": \"The REAL reason why eye supplements donâ\\u0080\\u0099t work\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 940\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 36,\n                \"mode\": \"inbound\",\n                \"title\": \"Junk URL\",\n                \"description\": \"This message contained content matching our junk URL heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:05:23.000Z\"\n    },\n    {\n        \"id\": 1987312409,\n        \"uuid\": \"F08D0AEC-CC42-412D-9DE4-D30ECEFF9459.1\",\n        \"address\": \"feedback@mailprotector.com.au\",\n        \"recipients\": [\n            \"feedback@mailprotector.com.au\"\n        ],\n        \"sender\": \"carry@esuch.net\",\n        \"to\": \"<feedback@mailprotector.com.au>\",\n        \"from\": \"<carry@esuch.net>\",\n        \"cc\": \"\",\n        \"subject\": \"Hígh dåňgěř. Yøuř åccøuňt wås åttåckěd.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"virus\",\n        \"decision\": \"quarantine_virus\",\n        \"score\": {\n            \"score\": 940\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 25,\n                \"mode\": \"inbound\",\n                \"title\": \"Policy Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 143,\n                \"mode\": \"inbound\",\n                \"title\": \"Virus\",\n                \"description\": \"This message contained a virus payload or characteristics of a message carrying a virus.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38477,\n            \"name\": \"feedback\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T20:02:45.000Z\"\n    },\n    {\n        \"id\": 1987330888,\n        \"uuid\": \"02C2D0D1-AF92-4D5C-80A5-A72BF675C557.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"bounce-mc.us11_44738489.3568859-9c61c046bb@mail87.suw131.mcsv.net\",\n        \"to\": \"<abigail.thompson@mailprotector.com>\",\n        \"from\": \"=?utf-8?Q?Justine=20=E2=80=A2=20We=20Work=20Remotely?= <hello@weworkremotely.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Save 15% on job postings all January long 🕺\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 280\n        },\n        \"results\": [\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T19:59:28.000Z\"\n    },\n    {\n        \"id\": 1987328441,\n        \"uuid\": \"0E3A5DD7-2F6A-4B7C-AA79-65E32E9997FA.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"bounce-131_HTML-105339659-3307476-10959666-44@bounce.email.slackhq.com\",\n        \"to\": \"<ben.hathaway@mailprotector.com>\",\n        \"from\": \"\\\"Slack\\\" <no-reply@email.slackhq.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Slack API changelog: December-January 2019\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T19:55:51.000Z\"\n    },\n    {\n        \"id\": 1987324690,\n        \"uuid\": \"246641A0-443E-41D3-8C8A-2F0FE370D7AD.1\",\n        \"address\": \"billing@mailprotector.com\",\n        \"recipients\": [\n            \"billing@mailprotector.com\"\n        ],\n        \"sender\": \"admin@electronicmailvouchers.com\",\n        \"to\": \"amy.wright@mailprotector.com\",\n        \"from\": \"\\\"Rachael Hamilton\\\" <mail@electronicmailvouchers.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Bitcoins are driving people out of 9-5 Jobs - Here's Why!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 36,\n                \"mode\": \"inbound\",\n                \"title\": \"Junk URL\",\n                \"description\": \"This message contained content matching our junk URL heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38387,\n            \"name\": \"billing\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T19:49:14.000Z\"\n    },\n    {\n        \"id\": 1987323883,\n        \"uuid\": \"80404D23-3F42-4CDB-A284-B2AFAA693E74.1\",\n        \"address\": \"support@mailprotector.com.au\",\n        \"recipients\": [\n            \"support@mailprotector.com.au\"\n        ],\n        \"sender\": \"JoseCampbell@klfree.cz\",\n        \"to\": \"\\\"Helena\\\" <support@mailprotector.com.au>\",\n        \"from\": \"\\\"Macy\\\" <JoseCampbell@klfree.cz>\",\n        \"cc\": \"\",\n        \"subject\": \"AU Be ahead with progressive ED medications! Order Cialis Soft.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38489,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T19:48:46.000Z\"\n    },\n    {\n        \"id\": 1987323847,\n        \"uuid\": \"B7A523AE-5E1C-4617-9FEA-CCAE75EB4293.1\",\n        \"address\": \"support@mailprotector.com\",\n        \"recipients\": [\n            \"support@mailprotector.com\"\n        ],\n        \"sender\": \"DavidJohnson@tomwalshcpa.com\",\n        \"to\": \"\\\"Kallie\\\" <support@mailprotector.com>\",\n        \"from\": \"\\\"Adelyn\\\" <DavidJohnson@tomwalshcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"High quality for low price. It's not a trick, it's Cialis Brand!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38457,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T19:48:43.000Z\"\n    },\n    {\n        \"id\": 1987323690,\n        \"uuid\": \"DB0F926D-AFEC-42AC-BAE3-828CD5AA011F.1\",\n        \"address\": \"kevin@milestonenetworks.com\",\n        \"recipients\": [\n            \"kevin@milestonenetworks.com\"\n        ],\n        \"sender\": \"MarkBrown@torneriavisona.com\",\n        \"to\": \"\\\"Aleah\\\" <kevin@milestonenetworks.com>\",\n        \"from\": \"\\\"Leona\\\" <MarkBrown@torneriavisona.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Viagra Soft Tabs for your desire. Buy now and get discount!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 615906,\n            \"name\": \"kevin\"\n        },\n        \"user_group\": {\n            \"id\": 12972,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 14776,\n            \"name\": \"milestonenetworks.com\"\n        },\n        \"customer\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T19:48:33.000Z\"\n    }\n]"}],"_postman_id":"e22b5b00-461a-4a2b-955a-48cf3684af27"},{"name":"Release Message","id":"f851e602-6142-4da6-9bb2-53d2a41d7689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}"},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver","description":"<p>Release a message from the quarantine. The <code>recipients</code> field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","messages","{{message_id}}","deliver"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"84085298-c368-4e6b-a190-285b2af18491","name":"Release Message","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e630abe8-ad9d-4ede-9c68-e88a74e273c7"},{"key":"X-Runtime","value":"1.371039"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f851e602-6142-4da6-9bb2-53d2a41d7689"},{"name":"Release Multiple Messages","id":"25ed350d-9638-4091-be5b-f327be14abec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/messages/deliver_many","description":"<p>Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing <code>all_selected: true</code> will release all currently held messages from a reseller's quarantine. </p>\n<p><strong>Note</strong>: 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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","messages","deliver_many"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"164656f0-d643-400c-bc06-ed2eac5f03f3","name":"Release Multiple Messages","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/messages/deliver_many"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f602713b4241cb2e3030443e7df8e91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"bf0d4597-81f5-4c67-adc8-163cba6fb724"},{"key":"X-Runtime","value":"1.106498"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"delivered_messages\": [\n        2015573173,\n        2015573567\n    ]\n}"},{"id":"7ea9bb0e-534b-46cc-b15e-5c4dbfe87258","name":"Release Multiple Messages","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/messages/deliver_many"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f602713b4241cb2e3030443e7df8e91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"26c55d8b-f809-426a-adc7-b6e5c20023e2"},{"key":"X-Runtime","value":"2.117585"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"delivered_messages\": [\n        2015573173,\n        2015573567\n    ]\n}"}],"_postman_id":"25ed350d-9638-4091-be5b-f327be14abec"}],"id":"0abf379a-a316-4348-beab-f388e5807e63","_postman_id":"0abf379a-a316-4348-beab-f388e5807e63","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Resellers","id":"dd108951-47ad-42d9-ae1d-37a1d2b0d6a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/providers/{{provider_id}}/resellers","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","providers","{{provider_id}}","resellers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd108951-47ad-42d9-ae1d-37a1d2b0d6a0"},{"name":"Reseller","id":"4595b984-820c-41d6-bfbe-71df70b239fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}","description":"<p>Retrieve the information for a reseller account. Note that most API tokens will only have permission to pull their own reseller account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"a88f53f9-78c4-4e6a-8138-c1b0a1de5c6e","name":"Reseller","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/resellers/188"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b09e05db9829f9856b2e3aafcdb67051\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1046f6c5-bf95-4b03-a8cd-24fd4171e816"},{"key":"X-Runtime","value":"3.742707"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 188,\n    \"name\": \"Mailprotector Direct (old)\",\n    \"provider\": {\n        \"id\": 65,\n        \"name\": \"United States\"\n    },\n    \"reseller\": null,\n    \"created_at\": \"2010-05-13T18:08:25.000Z\",\n    \"updated_at\": \"2014-05-13T23:27:51.000Z\"\n}"}],"_postman_id":"4595b984-820c-41d6-bfbe-71df70b239fa"},{"name":"Create Reseller","id":"793e7d25-7c55-4318-b71b-9361e0597220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New reseller name\",\n\t\"email\": \"contact@domain.com\"\n}"},"url":"emailservice.io/api/v1/providers/{{provider_id}}/resellers","description":"<p>Create a new reseller account. Only API tokens with provider-level permission may create a new reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","providers","{{provider_id}}","resellers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"46b1d9b3-0beb-4d73-a99d-65bfccfa6902","name":"Create Reseller","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New reseller name\",\n\t\"email\": \"contact@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/providers/{{provider_id}}/resellers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/resellers/16608"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3742ddf4284f25d335f8d733850b3fae\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"6fce21a5-6d79-4680-a081-8ffda37e5cbc"},{"key":"X-Runtime","value":"5.219084"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 16608,\n    \"name\": \"New reseller name\",\n    \"provider\": {\n        \"id\": 65,\n        \"name\": \"United States\"\n    },\n    \"reseller\": null,\n    \"created_at\": \"2020-01-03T18:21:54.000Z\",\n    \"updated_at\": \"2020-01-03T18:21:54.000Z\"\n}"}],"_postman_id":"793e7d25-7c55-4318-b71b-9361e0597220"},{"name":"Edit Reseller","id":"fcef2d62-09b9-46d3-9a29-dd535659baad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Different Reseller Name\",\n\t\"email\": \"different-contact@domain.com\"\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}","description":"<p>Edit an existing reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"7c34bfb1-dd56-4175-8ef3-c1bc74917134","name":"Edit Reseller","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Different Reseller Name\",\n\t\"email\": \"different-contact@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/resellers/188"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"5729bc204157907cbc86f76060742602\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"568382ae-dbaf-42a3-9435-afe8c6e5201e"},{"key":"X-Runtime","value":"2.065714"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 188,\n    \"name\": \"Different Reseller Name\",\n    \"provider\": {\n        \"id\": 65,\n        \"name\": \"United States\"\n    },\n    \"reseller\": null,\n    \"created_at\": \"2010-05-13T18:08:25.000Z\",\n    \"updated_at\": \"2020-01-03T19:36:59.000Z\"\n}"}],"_postman_id":"fcef2d62-09b9-46d3-9a29-dd535659baad"},{"name":"Delete Reseller","id":"cd6c033e-b8e0-402a-bba3-fff02a4dc203","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}","description":"<p>Deletes a reseller account and all account, domains, and users under it. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"f2922f0c-1935-4d37-9dce-49ac9c185f2e","name":"Delete Reseller","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e8772989-c0b1-41ce-8753-79bb9fa84d98"},{"key":"X-Runtime","value":"4.075300"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cd6c033e-b8e0-402a-bba3-fff02a4dc203"}],"id":"f91c87d2-5132-4479-8ba9-97cc593e3571","description":"<p>Create, read, update, and delete reseller accounts.</p>\n","event":[{"listen":"prerequest","script":{"id":"291029ae-fedf-43bd-9626-702a32c914f4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fc5d6ba2-77ca-4b30-b6ca-4eb5abbe2224","type":"text/javascript","exec":[""]}}],"_postman_id":"f91c87d2-5132-4479-8ba9-97cc593e3571","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Customers","item":[{"name":"Domains","item":[{"name":"Customer Domains","id":"c8a51893-27bf-44c9-aa63-65046b6309ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/domains","description":"<p>Get all domains under a customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","domains"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"9385ac25-2dfb-4358-9805-3b07d155971d","name":"Customer Domains","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"68c69971d8add6df446da4654bc06eb4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f1427cfe-6648-49c2-8ecb-5c487e4dc79c"},{"key":"X-Runtime","value":"0.688008"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 20043,\n        \"name\": \"bracket.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2017-03-08T16:07:58.000Z\",\n        \"updated_at\": \"2017-05-31T09:14:35.000Z\"\n    },\n    {\n        \"id\": 15650,\n        \"name\": \"cloudmail.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2014-07-17T21:07:53.000Z\",\n        \"updated_at\": \"2015-09-21T03:06:29.000Z\"\n    },\n    {\n        \"id\": 15288,\n        \"name\": \"cloudmail.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2014-05-23T21:53:53.000Z\",\n        \"updated_at\": \"2015-09-21T03:05:34.000Z\"\n    },\n    {\n        \"id\": 16370,\n        \"name\": \"emailservice.io\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2015-02-26T20:00:18.000Z\",\n        \"updated_at\": \"2015-09-21T03:12:31.000Z\"\n    },\n    {\n        \"id\": 17044,\n        \"name\": \"exchange2016.mpdemo.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2015-10-28T15:29:53.000Z\",\n        \"updated_at\": \"2018-08-23T03:00:33.000Z\"\n    },\n    {\n        \"id\": 17995,\n        \"name\": \"forcencrypt.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2016-06-20T19:24:05.000Z\",\n        \"updated_at\": \"2016-06-22T09:12:28.000Z\"\n    },\n    {\n        \"id\": 11744,\n        \"name\": \"getcloudfilter.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2012-12-27T17:37:56.000Z\",\n        \"updated_at\": \"2016-11-17T09:07:08.000Z\"\n    },\n    {\n        \"id\": 1489,\n        \"name\": \"mailprotector.biz\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2010-08-23T19:31:22.000Z\",\n        \"updated_at\": \"2018-02-19T09:00:45.000Z\"\n    },\n    {\n        \"id\": 1481,\n        \"name\": \"mailprotector.co.uk\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2010-08-23T19:29:18.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2010-08-23T19:27:24.000Z\",\n        \"updated_at\": \"2018-08-23T02:00:48.000Z\"\n    },\n    {\n        \"id\": 1477,\n        \"name\": \"mailprotector.com.au\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2010-08-23T19:28:00.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 9073,\n        \"name\": \"mailprotector.me\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2011-03-01T18:31:01.000Z\",\n        \"updated_at\": \"2016-04-28T09:04:09.000Z\"\n    },\n    {\n        \"id\": 1483,\n        \"name\": \"mailprotectorupdate.biz\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2010-08-23T19:29:25.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 1485,\n        \"name\": \"mailprotectorupdate.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2010-08-23T19:30:08.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 28480,\n        \"name\": \"new-domain.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 1,\n            \"name\": \"Pending\"\n        },\n        \"parent\": null,\n        \"verification_token\": \"otFBZ1SvhceapIOOTiRxYr788GzVnY05ny0OvXyyi6Y=\",\n        \"address_discovery_enabled\": true,\n        \"created_at\": \"2019-12-27T21:47:02.000Z\",\n        \"updated_at\": \"2019-12-27T21:47:02.000Z\"\n    },\n    {\n        \"id\": 27614,\n        \"name\": \"newdomain2.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 1,\n            \"name\": \"Pending\"\n        },\n        \"parent\": null,\n        \"verification_token\": \"JfqhMDi6OSOGmaTr1I/1j2KI2jQWjSl9ioy+5QPbKMA=\",\n        \"address_discovery_enabled\": true,\n        \"created_at\": \"2019-08-09T16:27:23.000Z\",\n        \"updated_at\": \"2019-08-09T16:27:23.000Z\"\n    },\n    {\n        \"id\": 22214,\n        \"name\": \"otransport-1.us-east-1.mailprotector.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2018-02-07T15:33:14.000Z\",\n        \"updated_at\": \"2018-02-08T09:28:21.000Z\"\n    },\n    {\n        \"id\": 15652,\n        \"name\": \"securestore.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2014-07-17T21:09:16.000Z\",\n        \"updated_at\": \"2015-09-21T03:06:29.000Z\"\n    },\n    {\n        \"id\": 15648,\n        \"name\": \"xtramail.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2014-07-17T21:03:52.000Z\",\n        \"updated_at\": \"2015-09-21T03:06:29.000Z\"\n    }\n]"}],"_postman_id":"c8a51893-27bf-44c9-aa63-65046b6309ae"},{"name":"Create Domain","id":"a20c09d2-beb5-4ccd-b342-2007b12514d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"domain.com\"\n}"},"url":"emailservice.io/api/v1/customers/{{customer_id}}/domains","description":"<p>Create a domain under a customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","domains"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"02ca3d5c-79ca-4cc3-b03a-3a65d7a03eab","name":"Create Domain","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/domains"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/28482"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"2019f2dbe579831bb99a187031589393\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"812e1615-bd35-4094-9bfc-a2f830cf2b37"},{"key":"X-Runtime","value":"2.113758"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 28482,\n    \"name\": \"domain.com\",\n    \"account\": {\n        \"id\": 329,\n        \"name\": \"Different Customer Name\"\n    },\n    \"domain_status\": {\n        \"id\": 1,\n        \"name\": \"Pending\"\n    },\n    \"parent\": null,\n    \"verification_token\": \"jdO5rWCKpUjlRDk13s/PVVtcGVHdPn5syBUrRLKlDkE=\",\n    \"address_discovery_enabled\": true,\n    \"created_at\": \"2020-01-09T19:00:07.000Z\",\n    \"updated_at\": \"2020-01-09T19:00:07.000Z\"\n}"}],"_postman_id":"a20c09d2-beb5-4ccd-b342-2007b12514d0"}],"id":"6e0db005-f87d-41e7-b7ae-07fc19233122","_postman_id":"6e0db005-f87d-41e7-b7ae-07fc19233122","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Users","item":[{"name":"Customer Users","id":"f3c6424f-254b-4949-9932-f00b48a133aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/users","description":"<p>Get all users belonging to a customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","users"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"4ee30b73-1759-4854-9687-9c8200bbc1e2","name":"Customer Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"341cb863f0c0669a398c5fa5f899f35a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d5423f8c-332c-476e-b710-c7a1628b11d4"},{"key":"X-Runtime","value":"0.705347"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 883326,\n        \"name\": \"abigail.thompson\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 11,\n            \"name\": \"Unlicensed User\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"abigail.thompson@mailprotector.com\",\n        \"email_addresses\": [\n            \"abigail.thompson@mailprotector.com\",\n            \"abigail.thompson@mailprotector.net\"\n        ],\n        \"first_name\": \"Abigail\",\n        \"last_name\": \"Thompson\",\n        \"created_at\": \"2017-10-06T18:31:17.000Z\",\n        \"updated_at\": \"2020-01-09T20:19:58.000Z\"\n    },\n    {\n        \"id\": 1272459,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 29149,\n            \"name\": \"Default\"\n        },\n        \"domain\": {\n            \"id\": 29102,\n            \"name\": \"emailsrv.net\"\n        },\n        \"primary_address\": \"abuse@emailsrv.net\",\n        \"email_addresses\": [\n            \"abuse@emailsrv.net\"\n        ],\n        \"first_name\": \"Mailprotector\",\n        \"last_name\": \"Abuse\",\n        \"created_at\": \"2020-01-03T17:59:11.000Z\",\n        \"updated_at\": \"2020-01-09T22:18:37.000Z\"\n    },\n    {\n        \"id\": 38543,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"abuse@mailprotector.biz\",\n        \"email_addresses\": [\n            \"abuse@mailprotector.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:31:33.000Z\",\n        \"updated_at\": \"2020-01-09T08:00:07.000Z\"\n    },\n    {\n        \"id\": 279309,\n        \"name\": \"aca\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"aca@mailprotector.biz\",\n        \"email_addresses\": [\n            \"aca@mailprotector.biz\"\n        ],\n        \"first_name\": \"ACA\",\n        \"last_name\": \"Email Addy\",\n        \"created_at\": \"2011-01-13T18:19:19.000Z\",\n        \"updated_at\": \"2020-01-09T08:00:42.000Z\"\n    },\n    {\n        \"id\": 759339,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 17596,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"addressdiscovery@emailservice.io\",\n        \"email_addresses\": [\n            \"addressdiscovery@emailservice.io\",\n            \"addressdiscovery@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-10-14T20:28:09.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 768865,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15866,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17044,\n            \"name\": \"exchange2016.mpdemo.net\"\n        },\n        \"primary_address\": \"addressdiscovery@exchange2016.mpdemo.net\",\n        \"email_addresses\": [\n            \"addressdiscovery@exchange2016.mpdemo.net\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-11-04T18:19:14.000Z\",\n        \"updated_at\": \"2020-01-09T05:00:14.000Z\"\n    },\n    {\n        \"id\": 674898,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15003,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"admin@emailservice.io\",\n        \"email_addresses\": [\n            \"admin@emailservice.io\",\n            \"admin@exchange.emailservice.io\",\n            \"ssl@emailservice.io\",\n            \"ssl@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2015-02-26T20:09:36.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 734037,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 16829,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17995,\n            \"name\": \"forcencrypt.email\"\n        },\n        \"primary_address\": \"admin@forcencrypt.email\",\n        \"email_addresses\": [\n            \"admin@forcencrypt.email\",\n            \"admin@forcencrypt.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2016-06-20T19:25:04.000Z\",\n        \"updated_at\": \"2019-03-12T07:37:39.000Z\"\n    },\n    {\n        \"id\": 38517,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1075,\n            \"name\": \"mailprotectorupdate.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1483,\n            \"name\": \"mailprotectorupdate.biz\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.biz\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:29:29.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:09.000Z\"\n    },\n    {\n        \"id\": 38523,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1077,\n            \"name\": \"mailprotectorupdate.net user group\"\n        },\n        \"domain\": {\n            \"id\": 1485,\n            \"name\": \"mailprotectorupdate.net\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.net\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:30:13.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:07.000Z\"\n    },\n    {\n        \"id\": 628092,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 13540,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15288,\n            \"name\": \"cloudmail.net\"\n        },\n        \"primary_address\": \"admin@cloudmail.net\",\n        \"email_addresses\": [\n            \"admin@cloudmail.net\",\n            \"postmaster@cloudmail.net\"\n        ],\n        \"first_name\": \"CloudMail\",\n        \"last_name\": \"Admin\",\n        \"created_at\": \"2014-05-23T21:54:42.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:00.000Z\"\n    },\n    {\n        \"id\": 895646,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 18925,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 20043,\n            \"name\": \"bracket.email\"\n        },\n        \"primary_address\": \"admin@bracket.email\",\n        \"email_addresses\": [\n            \"admin@bracket.email\",\n            \"admin@justbracket.email\",\n            \"admin@justbracket.it\",\n            \"complaints@bracket.email\",\n            \"complaints@justbracket.email\",\n            \"complaints@justbracket.it\",\n            \"dmarc@bracket.email\",\n            \"dmarc@justbracket.email\",\n            \"dmarc@justbracket.it\"\n        ],\n        \"first_name\": \"Bracket\",\n        \"last_name\": \"Admin\",\n        \"created_at\": \"2017-11-13T19:29:14.000Z\",\n        \"updated_at\": \"2019-03-12T07:56:22.000Z\"\n    },\n    {\n        \"id\": 643824,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 14004,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15648,\n            \"name\": \"xtramail.email\"\n        },\n        \"primary_address\": \"admin@xtramail.email\",\n        \"email_addresses\": [\n            \"admin@xtramail.email\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-07-17T21:04:24.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:41.000Z\"\n    },\n    {\n        \"id\": 643826,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 14006,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15650,\n            \"name\": \"cloudmail.email\"\n        },\n        \"primary_address\": \"admin@cloudmail.email\",\n        \"email_addresses\": [\n            \"admin@cloudmail.email\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-07-17T21:08:18.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:41.000Z\"\n    },\n    {\n        \"id\": 643828,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 14008,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15652,\n            \"name\": \"securestore.email\"\n        },\n        \"primary_address\": \"admin@securestore.email\",\n        \"email_addresses\": [\n            \"admin@securestore.email\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-07-17T21:09:51.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:41.000Z\"\n    },\n    {\n        \"id\": 831283,\n        \"name\": \"administrator\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"primary_address\": \"administrator@mailprotector.com.au\",\n        \"email_addresses\": [\n            \"administrator@mailprotector.com.au\",\n            \"administrator@mailprotector.net.au\",\n            \"admin@mailprotector.com.au\",\n            \"admin@mailprotector.net.au\",\n            \"hostmaster@mailprotector.com.au\",\n            \"hostmaster@mailprotector.net.au\",\n            \"postmaster@mailprotector.com.au\",\n            \"postmaster@mailprotector.net.au\",\n            \"webmaster@mailprotector.com.au\",\n            \"webmaster@mailprotector.net.au\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-04-03T15:48:13.000Z\",\n        \"updated_at\": \"2020-01-09T03:00:22.000Z\"\n    },\n    {\n        \"id\": 831293,\n        \"name\": \"administrator\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1073,\n            \"name\": \"mailprotector.co.uk user group\"\n        },\n        \"domain\": {\n            \"id\": 1481,\n            \"name\": \"mailprotector.co.uk\"\n        },\n        \"primary_address\": \"administrator@mailprotector.co.uk\",\n        \"email_addresses\": [\n            \"administrator@mailprotector.co.uk\",\n            \"admin@mailprotector.co.uk\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-04-03T15:59:15.000Z\",\n        \"updated_at\": \"2017-04-03T15:59:15.000Z\"\n    },\n    {\n        \"id\": 589780,\n        \"name\": \"administrator\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"administrator@mailprotector.com\",\n        \"email_addresses\": [\n            \"administrator@mailprotector.com\",\n            \"administrator@mailprotector.net\",\n            \"abuse@mailprotector.com\",\n            \"abuse@mailprotector.net\",\n            \"postmaster@mailprotector.com\",\n            \"postmaster@mailprotector.net\",\n            \"admin@mailprotector.com\",\n            \"admin@mailprotector.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2013-12-02T17:24:24.000Z\",\n        \"updated_at\": \"2019-06-08T00:19:20.000Z\"\n    },\n    {\n        \"id\": 1114288,\n        \"name\": \"admins\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 3,\n            \"name\": \"Mailing List\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"admins@mailprotector.com\",\n        \"email_addresses\": [\n            \"admins@mailprotector.com\",\n            \"admins@mailprotector.net\"\n        ],\n        \"first_name\": \"Admins\",\n        \"last_name\": \"\",\n        \"created_at\": \"2019-03-12T15:41:28.000Z\",\n        \"updated_at\": \"2019-06-08T01:51:30.000Z\"\n    },\n    {\n        \"id\": 38545,\n        \"name\": \"alerts\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"alerts@mailprotector.biz\",\n        \"email_addresses\": [\n            \"alerts@mailprotector.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:31:33.000Z\",\n        \"updated_at\": \"2020-01-09T08:00:07.000Z\"\n    },\n    {\n        \"id\": 985502,\n        \"name\": \"alison.earley\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"alison.earley@mailprotector.com\",\n        \"email_addresses\": [\n            \"alison.earley@mailprotector.com\",\n            \"alison.earley@mailprotector.net\"\n        ],\n        \"first_name\": \"Alison\",\n        \"last_name\": \"Earley\",\n        \"created_at\": \"2018-05-11T15:31:29.000Z\",\n        \"updated_at\": \"2020-01-09T14:04:50.000Z\"\n    },\n    {\n        \"id\": 688238,\n        \"name\": \"alison.vyse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 7,\n            \"name\": \"Equipment\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"alison.vyse@mailprotector.com\",\n        \"email_addresses\": [\n            \"alison.vyse@mailprotector.com\",\n            \"alison.vyse@mailprotector.net\"\n        ],\n        \"first_name\": \"Alison\",\n        \"last_name\": \"Vyse\",\n        \"created_at\": \"2015-06-25T18:54:30.000Z\",\n        \"updated_at\": \"2019-06-08T00:22:12.000Z\"\n    },\n    {\n        \"id\": 1055444,\n        \"name\": \"alma.figueroa\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"alma.figueroa@mailprotector.com\",\n        \"email_addresses\": [\n            \"alma.figueroa@mailprotector.com\",\n            \"alma.figueroa@mailprotector.net\",\n            \"alma@mailprotector.com\",\n            \"alma@mailprotector.net\"\n        ],\n        \"first_name\": \"Alma\",\n        \"last_name\": \"Figueroa\",\n        \"created_at\": \"2018-10-25T19:35:51.000Z\",\n        \"updated_at\": \"2020-01-09T14:21:42.000Z\"\n    },\n    {\n        \"id\": 1001916,\n        \"name\": \"amy.wright.archive\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"amy.wright.archive@mailprotector.com\",\n        \"email_addresses\": [\n            \"amy.wright.archive@mailprotector.com\",\n            \"amy.wright.archive@mailprotector.net\"\n        ],\n        \"first_name\": \"Amy\",\n        \"last_name\": \"Wright\",\n        \"created_at\": \"2018-06-29T18:20:26.000Z\",\n        \"updated_at\": \"2020-01-09T14:08:31.000Z\"\n    },\n    {\n        \"id\": 945189,\n        \"name\": \"andrew.gehrt\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"andrew.gehrt@mailprotector.com\",\n        \"email_addresses\": [\n            \"andrew.gehrt@mailprotector.com\",\n            \"andrew.gehrt@mailprotector.net\",\n            \"andrew@mailprotector.com\",\n            \"andrew@mailprotector.net\"\n        ],\n        \"first_name\": \"Andrew\",\n        \"last_name\": \"Gehrt\",\n        \"created_at\": \"2018-02-23T16:20:33.000Z\",\n        \"updated_at\": \"2020-01-09T22:27:39.000Z\"\n    }\n]"}],"_postman_id":"f3c6424f-254b-4949-9932-f00b48a133aa"}],"id":"0214bd9a-ec40-4c1b-b2d9-759eb54898fc","_postman_id":"0214bd9a-ec40-4c1b-b2d9-759eb54898fc","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Managers","item":[{"name":"Customer Managers","id":"7da9fbd3-4a73-43af-aebe-2c4fd1ec6d92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/managers","description":"<p>Get the managers belonging to a customer account. Managers that belong to the reseller above a customer are not returned in this request.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","managers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"1dc8bb3b-116e-4054-bf3b-690c5859bf84","name":"Customer Managers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/managers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"dbe6f6119259fd23627ff8dd640efded\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"288e0697-e3f0-40a4-ab25-ecb9339de1c9"},{"key":"X-Runtime","value":"1.644610"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 903,\n        \"name\": \"Mail Protector\",\n        \"username\": \"mpadmin\",\n        \"email\": \"supportagent7@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 329,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Different Customer Name\"\n            }\n        ]\n    },\n    {\n        \"id\": 905,\n        \"name\": \"Mail Protector\",\n        \"username\": \"joe\",\n        \"email\": \"supportagent7@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 1473,\n                \"entity_type\": \"Domain\",\n                \"entity_name\": \"mailprotector.com\"\n            }\n        ]\n    },\n    {\n        \"id\": 907,\n        \"name\": \"Mail Protector\",\n        \"username\": \"joe_0\",\n        \"email\": \"supportagent7@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 1489,\n                \"entity_type\": \"Domain\",\n                \"entity_name\": \"mailprotector.biz\"\n            }\n        ]\n    },\n    {\n        \"id\": 4687,\n        \"name\": \"Tim Laporte\",\n        \"username\": \"tjsupport\",\n        \"email\": \"tlaporte@virtualconnect.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 329,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Different Customer Name\"\n            }\n        ]\n    },\n    {\n        \"id\": 5039,\n        \"name\": \"Mailprotector newsignups\",\n        \"username\": \"noreply\",\n        \"email\": \"noreply@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 329,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Different Customer Name\"\n            }\n        ]\n    }\n]"}],"_postman_id":"7da9fbd3-4a73-43af-aebe-2c4fd1ec6d92"},{"name":"Create Customer Manager","id":"08d2a94b-4ee4-4cfc-8eb0-e5693beb877a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"FirstName\",\n\t\"last_name\": \"LastName\",\n\t\"email\": \"name@domain.com\",\n\t\"username\": \"CustomerManager\",\n\t\"password\": \"password\"\n}"},"url":"emailservice.io/api/v1/customers/{{customer_id}}/managers","description":"<p>Create a new manager for a customer account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","managers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"73780f65-e7c8-4b79-a75b-dd0147f2cc43","name":"Create Customer Manager","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"FirstName\",\n\t\"last_name\": \"LastName\",\n\t\"email\": \"name@domain.com\",\n\t\"username\": \"CustomerManager\",\n\t\"password\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/managers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/managers/14383"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"2f52038cbc5c71707a291cb532e1c920\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"57110a7c-ee52-49f9-92f0-b51a1e711cc1"},{"key":"X-Runtime","value":"1.639669"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14383,\n    \"name\": \"FirstName LastName\",\n    \"username\": \"CustomerManager\",\n    \"email\": \"name@domain.com\",\n    \"roles\": []\n}"}],"_postman_id":"08d2a94b-4ee4-4cfc-8eb0-e5693beb877a"}],"id":"90d6fd61-204f-4be5-acf4-ffb3187ca227","_postman_id":"90d6fd61-204f-4be5-acf4-ffb3187ca227","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Allow/Block Rules","item":[{"name":"Customer Allow/Block Rules","id":"e84b637d-6de8-4f43-b131-35b690d803ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"58e8a105-cffe-4af0-a6bf-7f17e703e555","name":"Customer Allow/Block Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3e07d0e3a2c4507b6a992d10347e58a9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"8cca7875-09c7-43cc-a47b-ca1ed6b5b306"},{"key":"X-Runtime","value":"3.193787"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2445355,\n        \"entity\": {\n            \"id\": 329,\n            \"entity_type\": \"Account\",\n            \"name\": \"Different Customer Name\"\n        },\n        \"value\": \"blockdomain.com\",\n        \"rule_type\": \"Block\"\n    }\n]"}],"_postman_id":"e84b637d-6de8-4f43-b131-35b690d803ea"},{"name":"Create Customer Allow/Block Rules","id":"de031099-a43f-4d3c-a4b3-fc5c962facdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}"},"url":"emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules","description":"<p>Create an allow or block rule belonging to a customer account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"a55ef243-014c-4447-9875-2de15b8be4ff","name":"Create Customer Allow/Block Rules","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/allow_block_rules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/allow_block_rules/2445356"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"997f12eab10752ac0fa993e0a33e4e3f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ee057e1e-2d30-4384-b368-996e22bf8e36"},{"key":"X-Runtime","value":"1.501175"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2445356,\n    \"entity\": {\n        \"id\": 329,\n        \"entity_type\": \"Account\",\n        \"name\": \"Different Customer Name\"\n    },\n    \"value\": \"block@domain.com\",\n    \"rule_type\": \"block\"\n}"}],"_postman_id":"de031099-a43f-4d3c-a4b3-fc5c962facdc"},{"name":"Delete Allow/Block Rule","id":"96f38795-e294-4f88-a44b-d2d4baf2a048","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}","description":"<p>Delete an allow or block rule.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","allow_block_rules","{{allow_block_rule_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"25b41a7e-efef-411a-8567-2b986888b45c","name":"Delete Allow/Block Rule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f49f9830-b6c1-4dca-bfc3-7e6ea2a13305"},{"key":"X-Runtime","value":"0.243252"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"96f38795-e294-4f88-a44b-d2d4baf2a048"}],"id":"c6677837-2c56-4f9e-b26a-11c250051d62","_postman_id":"c6677837-2c56-4f9e-b26a-11c250051d62","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Configuration","item":[{"name":"Customer Configuration","id":"969d24b5-b5d0-4aed-ad39-e0dad4f9737d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/configuration","description":"<p>Get the configuration for a customer account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"99969328-923b-45e4-a711-40c82df7099f","name":"Customer Configuration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"7e5b847fb82da0160f5e99c99ae6a23b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"04164cde-ea4a-4828-857d-8a95b84d51a5"},{"key":"X-Runtime","value":"2.250855"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"configuration\": {\n        \"region\": {\n            \"locale\": \"en\",\n            \"time_zone\": \"Eastern Time (US & Canada)\"\n        },\n        \"billing\": {\n            \"cc_addresses\": []\n        },\n        \"branding\": {\n            \"subdomain\": null,\n            \"logo_filename\": null,\n            \"icon_filename\": null,\n            \"from_email\": null,\n            \"from_name\": null,\n            \"prefix\": \"console\",\n            \"guide_from_first_name\": null,\n            \"guide_from_last_name\": null,\n            \"guide_from_email\": null,\n            \"support_url\": null\n        },\n        \"permissions\": {\n            \"messages\": {\n                \"allow_spam_release\": false,\n                \"allow_policy_release\": true,\n                \"allow_virus_release\": true,\n                \"allow_feed\": true\n            },\n            \"console\": {\n                \"allow_console_access\": true,\n                \"allow_user_management_of_allow_block\": true,\n                \"allow_user_management_of_content_rules\": null,\n                \"allow_user_management_of_quarantine_preferences\": true,\n                \"allow_user_management_of_spam_tolerance\": true\n            }\n        },\n        \"notifications\": {\n            \"link_hours_until_expiration\": 72,\n            \"link_max_logins\": 3,\n            \"schedule\": {\n                \"enabled\": false,\n                \"start_hour\": 8,\n                \"end_hour\": 18,\n                \"days_of_week\": [\n                    2,\n                    3,\n                    4,\n                    5,\n                    6\n                ]\n            }\n        },\n        \"messages\": {\n            \"review\": {\n                \"enabled\": true,\n                \"interval\": 3,\n                \"start_hour\": 8,\n                \"end_hour\": 17\n            },\n            \"visibility\": {\n                \"threshold\": 1000\n            }\n        },\n        \"user_sync\": {\n            \"move_users\": false\n        }\n    }\n}"}],"_postman_id":"969d24b5-b5d0-4aed-ad39-e0dad4f9737d"},{"name":"Edit Customer Configuration","id":"9d839f02-851f-469e-b905-56631552efe6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": true\n\t\t}\n\t}\n}"},"url":"emailservice.io/api/v1/customers/{{customer_id}}/configuration","description":"<p>Edit the configuration for a customer account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"0ba24ea3-5cc7-4e68-97ea-eba63698e77e","name":"Edit Customer Configuration","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": true\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"388ae393bd892d4fd0b3410fe37b686b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3a339828-15c3-4ed2-8016-1a95d6859272"},{"key":"X-Runtime","value":"1.267437"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"region\": {\n        \"locale\": \"en\",\n        \"time_zone\": \"Eastern Time (US & Canada)\"\n    },\n    \"billing\": {\n        \"cc_addresses\": []\n    },\n    \"branding\": {\n        \"subdomain\": null,\n        \"logo_filename\": null,\n        \"icon_filename\": null,\n        \"from_email\": null,\n        \"from_name\": null,\n        \"prefix\": \"console\",\n        \"guide_from_first_name\": null,\n        \"guide_from_last_name\": null,\n        \"guide_from_email\": null,\n        \"support_url\": null\n    },\n    \"permissions\": {\n        \"messages\": {\n            \"allow_spam_release\": true,\n            \"allow_policy_release\": true,\n            \"allow_virus_release\": true,\n            \"allow_feed\": true\n        },\n        \"console\": {\n            \"allow_console_access\": true,\n            \"allow_user_management_of_allow_block\": true,\n            \"allow_user_management_of_content_rules\": null,\n            \"allow_user_management_of_quarantine_preferences\": true,\n            \"allow_user_management_of_spam_tolerance\": true\n        }\n    },\n    \"notifications\": {\n        \"link_hours_until_expiration\": 72,\n        \"link_max_logins\": 3,\n        \"schedule\": {\n            \"enabled\": false,\n            \"start_hour\": 8,\n            \"end_hour\": 18,\n            \"days_of_week\": [\n                2,\n                3,\n                4,\n                5,\n                6\n            ]\n        }\n    },\n    \"messages\": {\n        \"review\": {\n            \"enabled\": true,\n            \"interval\": 3,\n            \"start_hour\": 8,\n            \"end_hour\": 17\n        },\n        \"visibility\": {\n            \"threshold\": 1000\n        }\n    },\n    \"user_sync\": {\n        \"move_users\": false\n    }\n}"}],"_postman_id":"9d839f02-851f-469e-b905-56631552efe6"}],"id":"375f8044-42c6-473e-b517-5b4fc7a5401d","_postman_id":"375f8044-42c6-473e-b517-5b4fc7a5401d","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Statements","item":[{"name":"Customer Statements","id":"cd808f4d-59ec-4e05-9e9c-d37a6d81f78e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/statements","description":"<p>Retrieve statements belonging to a customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","statements"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"8f5a3150-63e4-470f-9a2e-c54e6f51db86","name":"Customer Statements","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/statements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"05ae395a5975b57036d5a32ce2dbea13\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"74c7c983-64e1-4c3c-aee6-b1f3d78f3be4"},{"key":"X-Runtime","value":"2.929327"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 3000448,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2016-10-05\",\n        \"ending_date\": \"2016-11-04\",\n        \"billing_date\": \"2016-11-04\",\n        \"due_date\": \"2016-11-04\"\n    },\n    {\n        \"id\": 3000490,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2016-11-05\",\n        \"ending_date\": \"2016-12-04\",\n        \"billing_date\": \"2016-12-04\",\n        \"due_date\": \"2016-12-04\"\n    },\n    {\n        \"id\": 3001181,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2016-12-05\",\n        \"ending_date\": \"2017-01-04\",\n        \"billing_date\": \"2017-01-04\",\n        \"due_date\": \"2017-01-04\"\n    },\n    {\n        \"id\": 3001792,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-01-05\",\n        \"ending_date\": \"2017-02-04\",\n        \"billing_date\": \"2017-02-04\",\n        \"due_date\": \"2017-02-04\"\n    },\n    {\n        \"id\": 3002308,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-02-05\",\n        \"ending_date\": \"2017-03-04\",\n        \"billing_date\": \"2017-03-04\",\n        \"due_date\": \"2017-03-04\"\n    },\n    {\n        \"id\": 3002805,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-03-05\",\n        \"ending_date\": \"2017-04-04\",\n        \"billing_date\": \"2017-04-04\",\n        \"due_date\": \"2017-04-04\"\n    },\n    {\n        \"id\": 3003277,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-04-05\",\n        \"ending_date\": \"2017-05-04\",\n        \"billing_date\": \"2017-05-04\",\n        \"due_date\": \"2017-05-04\"\n    },\n    {\n        \"id\": 3003746,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-05-05\",\n        \"ending_date\": \"2017-06-04\",\n        \"billing_date\": \"2017-06-04\",\n        \"due_date\": \"2017-06-04\"\n    },\n    {\n        \"id\": 3004214,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-06-05\",\n        \"ending_date\": \"2017-07-04\",\n        \"billing_date\": \"2017-07-04\",\n        \"due_date\": \"2017-07-04\"\n    },\n    {\n        \"id\": 3004684,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-07-05\",\n        \"ending_date\": \"2017-08-04\",\n        \"billing_date\": \"2017-08-04\",\n        \"due_date\": \"2017-08-04\"\n    },\n    {\n        \"id\": 3005150,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-08-05\",\n        \"ending_date\": \"2017-09-04\",\n        \"billing_date\": \"2017-09-04\",\n        \"due_date\": \"2017-09-04\"\n    },\n    {\n        \"id\": 3005621,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-09-05\",\n        \"ending_date\": \"2017-10-04\",\n        \"billing_date\": \"2017-10-04\",\n        \"due_date\": \"2017-10-04\"\n    },\n    {\n        \"id\": 3006103,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-10-05\",\n        \"ending_date\": \"2017-11-04\",\n        \"billing_date\": \"2017-11-04\",\n        \"due_date\": \"2017-11-04\"\n    },\n    {\n        \"id\": 3006595,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-11-05\",\n        \"ending_date\": \"2017-12-04\",\n        \"billing_date\": \"2017-12-04\",\n        \"due_date\": \"2017-12-04\"\n    },\n    {\n        \"id\": 3007097,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2017-12-05\",\n        \"ending_date\": \"2018-01-04\",\n        \"billing_date\": \"2018-01-04\",\n        \"due_date\": \"2018-01-04\"\n    },\n    {\n        \"id\": 3007603,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-01-05\",\n        \"ending_date\": \"2018-02-04\",\n        \"billing_date\": \"2018-02-04\",\n        \"due_date\": \"2018-02-04\"\n    },\n    {\n        \"id\": 3008104,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-02-05\",\n        \"ending_date\": \"2018-03-04\",\n        \"billing_date\": \"2018-03-04\",\n        \"due_date\": \"2018-03-04\"\n    },\n    {\n        \"id\": 3008614,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-03-05\",\n        \"ending_date\": \"2018-04-04\",\n        \"billing_date\": \"2018-04-04\",\n        \"due_date\": \"2018-04-04\"\n    },\n    {\n        \"id\": 3009129,\n        \"amount\": 50.5,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-04-05\",\n        \"ending_date\": \"2018-05-04\",\n        \"billing_date\": \"2018-05-04\",\n        \"due_date\": \"2018-05-04\"\n    },\n    {\n        \"id\": 3009638,\n        \"amount\": 55.3,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-05-05\",\n        \"ending_date\": \"2018-06-04\",\n        \"billing_date\": \"2018-06-04\",\n        \"due_date\": \"2018-06-04\"\n    },\n    {\n        \"id\": 3010150,\n        \"amount\": 59.1,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-06-05\",\n        \"ending_date\": \"2018-07-04\",\n        \"billing_date\": \"2018-07-04\",\n        \"due_date\": \"2018-07-04\"\n    },\n    {\n        \"id\": 3010661,\n        \"amount\": 53.4,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-07-05\",\n        \"ending_date\": \"2018-08-04\",\n        \"billing_date\": \"2018-08-04\",\n        \"due_date\": \"2018-08-04\"\n    },\n    {\n        \"id\": 3011173,\n        \"amount\": 52.9,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-08-05\",\n        \"ending_date\": \"2018-09-04\",\n        \"billing_date\": \"2018-09-04\",\n        \"due_date\": \"2018-09-04\"\n    },\n    {\n        \"id\": 3011691,\n        \"amount\": 50.5,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-09-05\",\n        \"ending_date\": \"2018-10-04\",\n        \"billing_date\": \"2018-10-04\",\n        \"due_date\": \"2018-10-04\"\n    },\n    {\n        \"id\": 3012217,\n        \"amount\": 50,\n        \"currency\": \"USD\",\n        \"statement_type\": \"Automatic\",\n        \"statement_status\": \"Settled\",\n        \"starting_date\": \"2018-10-05\",\n        \"ending_date\": \"2018-11-04\",\n        \"billing_date\": \"2018-11-04\",\n        \"due_date\": \"2018-11-04\"\n    }\n]"}],"_postman_id":"cd808f4d-59ec-4e05-9e9c-d37a6d81f78e"}],"id":"72925a14-4bc1-4f04-851f-c5d3c4de2a3b","_postman_id":"72925a14-4bc1-4f04-851f-c5d3c4de2a3b","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Logs","item":[{"name":"Customer Logs","id":"2fcaf234-e3e8-47b1-8e5f-8d962c850bb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/logs","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","logs"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"a9355c4c-9e49-4b8d-bb98-782cca4744e9","name":"Customer Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"6a2f5b32529e9a97cc83a05bc746f3e9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c1a01ab7-4696-46df-a0d9-f94ed4ad8f0a"},{"key":"X-Runtime","value":"13.342396"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"307b6169-7231-4917-96c9-87f8507d1ec3\",\n        \"uuid\": \"307b6169-7231-4917-96c9-87f8507d1ec3\",\n        \"sender\": \"sonyak@landairexpress.com\",\n        \"from\": \"Sonya - Land Air Express/STL <sonyak@landairexpress.com>\",\n        \"recipient\": \"spamservice@mailprotector.com\",\n        \"score\": {\n            \"score\": 100\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.208.239.9\",\n        \"subject\": \"FW: No More Struggling To Hold Your Tablet!\",\n        \"user\": {\n            \"id\": 847734,\n            \"name\": \"spamservice\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:24:30.150+00:00\",\n        \"results_data\": [\n            \"spf_softfail\",\n            \"from_spf_softfail\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-13.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-13.outbound.emailsrv.net\",\n        \"ip\": \"54.208.239.9\",\n        \"postfix_queue_id\": \"7E3DBC0295\"\n    },\n    {\n        \"id\": \"580e303c-9373-4ff7-b88f-cc5edcc09f36\",\n        \"uuid\": \"580e303c-9373-4ff7-b88f-cc5edcc09f36\",\n        \"sender\": \"sonyak@landairexpress.com\",\n        \"from\": \"Sonya - Land Air Express/STL <sonyak@landairexpress.com>\",\n        \"recipient\": \"naspam@mailprotector.biz\",\n        \"score\": {\n            \"score\": 180\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.21.150\",\n        \"subject\": \"FW: No More Struggling To Hold Your Tablet!\",\n        \"user\": {\n            \"id\": 269891,\n            \"name\": \"naspam\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:24:29.793+00:00\",\n        \"results_data\": [\n            \"spf_softfail\",\n            \"from_spf_softfail\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-17.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-17.outbound.emailsrv.net\",\n        \"ip\": \"52.1.21.150\",\n        \"postfix_queue_id\": \"5D54361189\"\n    },\n    {\n        \"id\": \"ddeb1036-6959-4166-83c2-205c3bb06146\",\n        \"uuid\": \"ddeb1036-6959-4166-83c2-205c3bb06146\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.165.221\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:24:29.203+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM12-BN8-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn8nam12hn2221.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.165.221\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"7d92bfbf-0fc8-4da8-b0a3-e99177a8fa3d\",\n        \"uuid\": \"7d92bfbf-0fc8-4da8-b0a3-e99177a8fa3d\",\n        \"sender\": \"sonyak@landairexpress.com\",\n        \"from\": \"Sonya - Land Air Express/STL <sonyak@landairexpress.com>\",\n        \"recipient\": \"spam@mailprotector.com\",\n        \"score\": {\n            \"score\": 100\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.208.239.9\",\n        \"subject\": \"FW: No More Struggling To Hold Your Tablet!\",\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:24:29.005+00:00\",\n        \"results_data\": [\n            \"spf_softfail\",\n            \"from_spf_softfail\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-13.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-13.outbound.emailsrv.net\",\n        \"ip\": \"54.208.239.9\",\n        \"postfix_queue_id\": \"D3EDBC2985\"\n    },\n    {\n        \"id\": \"bacead78-a44f-4f7c-9d40-bd2768951343\",\n        \"uuid\": \"bacead78-a44f-4f7c-9d40-bd2768951343\",\n        \"sender\": \"sonyak@landairexpress.com\",\n        \"from\": \"Sonya - Land Air Express/STL <sonyak@landairexpress.com>\",\n        \"recipient\": \"spam@emailservice.io\",\n        \"score\": {\n            \"score\": 60\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"173.203.187.92\",\n        \"subject\": \"FW: No More Struggling To Hold Your Tablet!\",\n        \"user\": {\n            \"id\": 834193,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 15003,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:24:28.309+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"clean\",\n            [\n                \"sa_score\",\n                1.5\n            ]\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"smtp92.iad3a.emailsrvr.com\",\n        \"ptr\": \"smtp92.iad3a.emailsrvr.com\",\n        \"ip\": \"173.203.187.92\",\n        \"postfix_queue_id\": \"D16F1C00EA\"\n    },\n    {\n        \"id\": \"8dd929d9-2332-4606-b0b8-117ed82d8a1e\",\n        \"uuid\": \"8dd929d9-2332-4606-b0b8-117ed82d8a1e\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.55.170\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:24:27.607+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM12-BN8-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn8nam12lp2170.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.55.170\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"91af96f4-899d-40bc-9bb2-80c2e72aaf81\",\n        \"uuid\": \"91af96f4-899d-40bc-9bb2-80c2e72aaf81\",\n        \"sender\": \"976-jja-800.0.15912.0.0.5769.9.6878748@mail1.crunchbase.com\",\n        \"from\": \"Crunchbase <newsletter@crunchbase.com>\",\n        \"recipient\": \"david.setzer@mailprotector.com\",\n        \"score\": {\n            \"score\": 120\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"192.28.156.150\",\n        \"subject\": \"Crunchbase Daily: ClassPass, Cafe X, Roofstock, Orchard, and Getaround - January 8, 2020\",\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:22:04.148+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"reply_spf_pass\",\n            \"subject_50_chars\",\n            \"subject_10_spaces\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail2.crunchbase.com\",\n        \"ptr\": \"mail2.crunchbase.com\",\n        \"ip\": \"192.28.156.150\",\n        \"postfix_queue_id\": \"AEF7B61347\"\n    },\n    {\n        \"id\": \"7a335bc0-127e-4851-8a09-9303d7541cc4\",\n        \"uuid\": \"7a335bc0-127e-4851-8a09-9303d7541cc4\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"34.194.188.63\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:21:51.940+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-22.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-22.outbound.emailsrv.net\",\n        \"ip\": \"34.194.188.63\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"f71a3842-a485-4d49-b24f-d659b98787f9\",\n        \"uuid\": \"f71a3842-a485-4d49-b24f-d659b98787f9\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.0.70.91\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:21:38.902+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"transport-1.inbound.emailservice.io\",\n        \"ptr\": \"transport-1.inbound.emailservice.io\",\n        \"ip\": \"52.0.70.91\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"ddb77f2a-0c6e-4a69-970f-966a93fffbf7\",\n        \"uuid\": \"ddb77f2a-0c6e-4a69-970f-966a93fffbf7\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.137.45\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:21:26.859+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM04-BN3-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bgr052100137045.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.137.45\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"ad73261f-c55f-479f-9136-edfeb9b34cb3\",\n        \"uuid\": \"ad73261f-c55f-479f-9136-edfeb9b34cb3\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.36.55\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:21:24.906+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM02-SN1-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-sn1nam02lp2055.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.36.55\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"fd8274a7-6ac7-432f-910d-a4b11f99f50c\",\n        \"uuid\": \"fd8274a7-6ac7-432f-910d-a4b11f99f50c\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.101.138.99\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:20:57.527+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"EUR04-DB3-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-db3eur04hn2099.outbound.protection.outlook.com\",\n        \"ip\": \"52.101.138.99\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"7f0d1549-4c34-401b-8af1-0c97e6e84b07\",\n        \"uuid\": \"7f0d1549-4c34-401b-8af1-0c97e6e84b07\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.18.111\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:20:55.699+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"EUR05-AM6-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-am6eur05lp2111.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.18.111\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"365a2515-9e0c-4398-8781-2d22424d0aa9\",\n        \"uuid\": \"365a2515-9e0c-4398-8781-2d22424d0aa9\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"35.153.239.198\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:20:21.549+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-25.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-25.outbound.emailsrv.net\",\n        \"ip\": \"35.153.239.198\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"216f8c0f-e430-4292-9402-c42cdc6343b9\",\n        \"uuid\": \"216f8c0f-e430-4292-9402-c42cdc6343b9\",\n        \"sender\": \"ora@thetherapyspot.biz\",\n        \"from\": \"Ora Sanders <ora@thetherapyspot.biz>\",\n        \"recipient\": \"do.not.reply.with.email@bracket.email\",\n        \"score\": {\n            \"score\": 100\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"209.85.167.177\",\n        \"subject\": \"Re: New secure message: [Itemized Receipt from The Therapy Spot]\",\n        \"user\": {\n            \"id\": 825400,\n            \"name\": \"noreply\"\n        },\n        \"user_group\": {\n            \"id\": 18925,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 20043,\n            \"name\": \"bracket.email\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:20:19.132+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [\n            106101\n        ],\n        \"helo\": \"mail-oi1-f177.google.com\",\n        \"ptr\": \"mail-oi1-f177.google.com\",\n        \"ip\": \"209.85.167.177\",\n        \"postfix_queue_id\": \"563ED6132F\"\n    },\n    {\n        \"id\": \"0a9a843f-ad52-48e6-9e9d-2fc062f39d64\",\n        \"uuid\": \"0a9a843f-ad52-48e6-9e9d-2fc062f39d64\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.172.228\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:19:57.881+00:00\",\n        \"results_data\": [\n            \"no_rdns\",\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM11-DM6-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"[52.100.172.228]\",\n        \"ip\": \"52.100.172.228\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"d9556499-04db-417b-b282-a9efc5dcab99\",\n        \"uuid\": \"d9556499-04db-417b-b282-a9efc5dcab99\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.57.173\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:19:56.559+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM11-DM6-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-dm6nam11lp2173.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.57.173\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"b1df77c1-d70f-4079-be77-650eff39f8df\",\n        \"uuid\": \"b1df77c1-d70f-4079-be77-650eff39f8df\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"34.237.235.151\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:19:55.410+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-29.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-29.outbound.emailsrv.net\",\n        \"ip\": \"34.237.235.151\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"54d5e032-bbfa-436d-8075-81dd7f3d8b5f\",\n        \"uuid\": \"54d5e032-bbfa-436d-8075-81dd7f3d8b5f\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.0.31.31\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:19:05.425+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"transport-2.inbound.emailservice.io\",\n        \"ptr\": \"transport-2.inbound.emailservice.io\",\n        \"ip\": \"52.0.31.31\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"9a348638-b274-4d20-af28-bf00aec9876d\",\n        \"uuid\": \"9a348638-b274-4d20-af28-bf00aec9876d\",\n        \"sender\": \"heather.mallory@dshs.wa.gov\",\n        \"from\": \"\\\"Mallory, Heather M (DSHS/DDA)\\\" <heather.mallory@dshs.wa.gov>\",\n        \"recipient\": \"do.not.reply.with.email@bracket.email\",\n        \"score\": {\n            \"score\": 20\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"216.47.160.37\",\n        \"subject\": \"RE: New secure message: [secure email - EMS Dispatch]\",\n        \"user\": {\n            \"id\": 825400,\n            \"name\": \"noreply\"\n        },\n        \"user_group\": {\n            \"id\": 18925,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 20043,\n            \"name\": \"bracket.email\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:19:05.260+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"subject_50_chars\",\n            \"clean\"\n        ],\n        \"rule_ids\": [\n            106101\n        ],\n        \"helo\": \"m86wasmtp2.m86wa.digitalbackoffice.us\",\n        \"ptr\": \"m86wasmtp2.m86wa.digitalbackoffice.us\",\n        \"ip\": \"216.47.160.37\",\n        \"postfix_queue_id\": \"BAF88C00EA\"\n    },\n    {\n        \"id\": \"2d576a64-c4a4-47b5-8c7d-e9460bc92fb7\",\n        \"uuid\": \"2d576a64-c4a4-47b5-8c7d-e9460bc92fb7\",\n        \"sender\": \"helpdesk@interflexgroup.com\",\n        \"from\": \"InterFlex Group - IT Help Desk <helpdesk@interflexgroup.com>\",\n        \"recipient\": \"spamservice@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"35.153.239.198\",\n        \"subject\": \"[#22225]: FW: Payroll Deposit Error\",\n        \"user\": {\n            \"id\": 847734,\n            \"name\": \"spamservice\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:48.872+00:00\",\n        \"results_data\": [\n            \"spf_unknown\",\n            \"from_spf_unknown\",\n            \"reply_spf_unknown\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-25.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-25.outbound.emailsrv.net\",\n        \"ip\": \"35.153.239.198\",\n        \"postfix_queue_id\": \"8E888C029B\"\n    },\n    {\n        \"id\": \"edc58514-b21f-435c-be3e-d59c057a06ae\",\n        \"uuid\": \"edc58514-b21f-435c-be3e-d59c057a06ae\",\n        \"sender\": \"helpdesk@interflexgroup.com\",\n        \"from\": \"InterFlex Group - IT Help Desk <helpdesk@interflexgroup.com>\",\n        \"recipient\": \"naspam@mailprotector.biz\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.173.10.57\",\n        \"subject\": \"[#22225]: FW: Payroll Deposit Error\",\n        \"user\": {\n            \"id\": 269891,\n            \"name\": \"naspam\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:48.814+00:00\",\n        \"results_data\": [\n            \"spf_unknown\",\n            \"from_spf_unknown\",\n            \"reply_spf_unknown\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-21.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-21.outbound.emailsrv.net\",\n        \"ip\": \"54.173.10.57\",\n        \"postfix_queue_id\": \"830ECC02A3\"\n    },\n    {\n        \"id\": \"a3d3e46f-cedb-466b-950c-2ecb4e805802\",\n        \"uuid\": \"a3d3e46f-cedb-466b-950c-2ecb4e805802\",\n        \"sender\": \"helpdesk@interflexgroup.com\",\n        \"from\": \"InterFlex Group - IT Help Desk <helpdesk@interflexgroup.com>\",\n        \"recipient\": \"spam@mailprotector.com\",\n        \"score\": {\n            \"score\": 40\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"74.121.109.50\",\n        \"subject\": \"[#22225]: FW: Payroll Deposit Error\",\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:48.075+00:00\",\n        \"results_data\": [\n            \"no_rdns\",\n            \"spf_unknown\",\n            \"from_spf_unknown\",\n            \"reply_spf_unknown\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"webmail.interflexgroup.com\",\n        \"ptr\": \"[74.121.109.50]\",\n        \"ip\": \"74.121.109.50\",\n        \"postfix_queue_id\": \"C1A9261175\"\n    },\n    {\n        \"id\": \"66739125-b47f-4764-b1a3-04e095e6f3a2\",\n        \"uuid\": \"66739125-b47f-4764-b1a3-04e095e6f3a2\",\n        \"sender\": \"microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io\",\n        \"from\": \"Chris Chiles <chris.chiles@firescope.com>\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"52.23.53.145\",\n        \"subject\": \"Invalid sender address microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:42.924+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"MBX1.exchange.emailservice.io\",\n        \"ptr\": \"mbx1.exchange.emailservice.io\",\n        \"ip\": \"52.23.53.145\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"8cfbe148-145a-4d68-a825-b5417aa9a1e0\",\n        \"uuid\": \"8cfbe148-145a-4d68-a825-b5417aa9a1e0\",\n        \"sender\": \"microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io\",\n        \"from\": \"Chris Chiles <chris.chiles@firescope.com>\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"52.71.59.20\",\n        \"subject\": \"Invalid sender address microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:42.766+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"MBX2.exchange.emailservice.io\",\n        \"ptr\": \"mbx2.exchange.emailservice.io\",\n        \"ip\": \"52.71.59.20\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"683571ce-ab88-43c6-9107-dcbf5dfb1ad8\",\n        \"uuid\": \"683571ce-ab88-43c6-9107-dcbf5dfb1ad8\",\n        \"sender\": \"microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io\",\n        \"from\": \"Chris Chiles <chris.chiles@firescope.com>\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"outbound\",\n        \"origin\": \"52.20.8.186\",\n        \"subject\": \"Invalid sender address microsoftexchange329e71ec88ae4615bbc36ab6ce41109e@exchange.emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:42.581+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"MBX3.exchange.emailservice.io\",\n        \"ptr\": \"mbx3.exchange.emailservice.io\",\n        \"ip\": \"52.20.8.186\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"2298eb60-b881-4366-9662-2c2ab5aff83c\",\n        \"uuid\": \"2298eb60-b881-4366-9662-2c2ab5aff83c\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.156.234\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:38.450+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-DM6-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-dm6nam10hn2234.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.156.234\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"04de9615-c7a8-46a9-bb02-51b4e1c380a9\",\n        \"uuid\": \"04de9615-c7a8-46a9-bb02-51b4e1c380a9\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"34.194.188.63\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:17.349+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-22.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-22.outbound.emailsrv.net\",\n        \"ip\": \"34.194.188.63\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"9ae985aa-47f5-4de7-b89b-eb4d7bb929a5\",\n        \"uuid\": \"9ae985aa-47f5-4de7-b89b-eb4d7bb929a5\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"107.23.53.12\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:16.868+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-24.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-24.outbound.emailsrv.net\",\n        \"ip\": \"107.23.53.12\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"5930fe3a-5a95-444a-8069-79881931700a\",\n        \"uuid\": \"5930fe3a-5a95-444a-8069-79881931700a\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.21.150\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:08.229+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-17.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-17.outbound.emailsrv.net\",\n        \"ip\": \"52.1.21.150\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"a0d3010d-8109-407b-b3ec-e03c58f4d961\",\n        \"uuid\": \"a0d3010d-8109-407b-b3ec-e03c58f4d961\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"35.153.239.198\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:18:03.032+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-25.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-25.outbound.emailsrv.net\",\n        \"ip\": \"35.153.239.198\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"6b44ac4a-b12f-4f2e-b678-090fcfc6c5da\",\n        \"uuid\": \"6b44ac4a-b12f-4f2e-b678-090fcfc6c5da\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.1.21.150\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:55.377+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-17.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-17.outbound.emailsrv.net\",\n        \"ip\": \"52.1.21.150\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"acdb634b-937f-4907-a99e-e0a89f1a5fb4\",\n        \"uuid\": \"acdb634b-937f-4907-a99e-e0a89f1a5fb4\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"107.23.53.12\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:48.071+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-24.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-24.outbound.emailsrv.net\",\n        \"ip\": \"107.23.53.12\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"f8870782-d49d-4e92-ad23-ce622dcd56c8\",\n        \"uuid\": \"f8870782-d49d-4e92-ad23-ce622dcd56c8\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"107.23.53.12\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:45.464+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-24.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-24.outbound.emailsrv.net\",\n        \"ip\": \"107.23.53.12\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"b121c3ad-318b-40c7-ac7a-d1575f98d272\",\n        \"uuid\": \"b121c3ad-318b-40c7-ac7a-d1575f98d272\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.155.224\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:08.987+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-BN7-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn7nam10hn2224.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.155.224\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"c676e0e6-2b0f-47aa-9d62-45edc9c158a2\",\n        \"uuid\": \"c676e0e6-2b0f-47aa-9d62-45edc9c158a2\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.46.55\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:07.375+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM04-BN3-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn3nam04lp2055.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.46.55\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"9a29da72-4a6b-45c0-8a71-1d3dee39c221\",\n        \"uuid\": \"9a29da72-4a6b-45c0-8a71-1d3dee39c221\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.157.222\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:04.205+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-MW2-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-mw2nam10hn2222.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.157.222\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"b6ad39e4-099a-4e15-8d45-6134a398955a\",\n        \"uuid\": \"b6ad39e4-099a-4e15-8d45-6134a398955a\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.55.107\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:02.647+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-MW2-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-mw2nam10lp2107.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.55.107\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"602f759e-e8f5-403c-8622-3afcb9073d8f\",\n        \"uuid\": \"602f759e-e8f5-403c-8622-3afcb9073d8f\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.156.240\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:17:02.456+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-DM6-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-dm6nam10hn2240.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.156.240\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"e1eab1f0-748a-4f73-8531-a57088f358a5\",\n        \"uuid\": \"e1eab1f0-748a-4f73-8531-a57088f358a5\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"107.23.53.12\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:56.028+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-24.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-24.outbound.emailsrv.net\",\n        \"ip\": \"107.23.53.12\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"fbf5129e-98d6-4935-b43a-b0a7c150098b\",\n        \"uuid\": \"fbf5129e-98d6-4935-b43a-b0a7c150098b\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"54.173.10.57\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:47.210+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"otransport-21.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-21.outbound.emailsrv.net\",\n        \"ip\": \"54.173.10.57\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"e8b8e30a-678d-46df-9a72-16b5c5619898\",\n        \"uuid\": \"e8b8e30a-678d-46df-9a72-16b5c5619898\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.0.70.91\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:38.399+00:00\",\n        \"results_data\": [\n            \"spf_none\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"transport-1.inbound.emailservice.io\",\n        \"ptr\": \"transport-1.inbound.emailservice.io\",\n        \"ip\": \"52.0.70.91\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"2450c748-2676-4d73-b11f-585b3fa6630b\",\n        \"uuid\": \"2450c748-2676-4d73-b11f-585b3fa6630b\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.155.248\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:36.964+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-BN7-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn7nam10hn2248.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.155.248\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"50e15d08-9dab-404c-9258-ee121bfbe275\",\n        \"uuid\": \"50e15d08-9dab-404c-9258-ee121bfbe275\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.70.101\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:35.330+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-BN7-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn7nam10lp2101.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.70.101\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"71850b82-788a-4f8a-82ac-bf4e7b3da42a\",\n        \"uuid\": \"71850b82-788a-4f8a-82ac-bf4e7b3da42a\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.131.94\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:33.375+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM02-BL2-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bgr052100131094.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.131.94\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"1afd0502-69d1-4b2c-840f-f6723f79a40c\",\n        \"uuid\": \"1afd0502-69d1-4b2c-840f-f6723f79a40c\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.155.225\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:32.775+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-BN7-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn7nam10hn2225.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.155.225\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"f6e84be8-79ec-4e18-a0da-55c09d05d9e3\",\n        \"uuid\": \"f6e84be8-79ec-4e18-a0da-55c09d05d9e3\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.38.50\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:31.684+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM02-BL2-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bl2nam02lp2050.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.38.50\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"20c7a229-0776-4fe2-bc9a-f4ea4003a405\",\n        \"uuid\": \"20c7a229-0776-4fe2-bc9a-f4ea4003a405\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.70.103\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:31.426+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-BN7-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn7nam10lp2103.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.70.103\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"14182bad-193d-4304-8c8e-805f228ced78\",\n        \"uuid\": \"14182bad-193d-4304-8c8e-805f228ced78\",\n        \"sender\": null,\n        \"from\": \"\",\n        \"recipient\": \"notifications@emailservice.io\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"52.100.167.247\",\n        \"subject\": \"Invalid recipient address notifications@emailservice.io\",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:29.619+00:00\",\n        \"results_data\": [\n            \"spf_pass\"\n        ],\n        \"rule_ids\": null,\n        \"helo\": \"NAM12-MW2-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-mw2nam12hn2247.outbound.protection.outlook.com\",\n        \"ip\": \"52.100.167.247\",\n        \"postfix_queue_id\": null\n    },\n    {\n        \"id\": \"688fd05a-2d61-4437-b90a-5bbf1f4913a9\",\n        \"uuid\": \"688fd05a-2d61-4437-b90a-5bbf1f4913a9\",\n        \"sender\": \"notifications@emailservice.io\",\n        \"from\": \"\",\n        \"recipient\": null,\n        \"score\": {\n            \"score\": 1000\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"104.47.70.106\",\n        \"subject\": \"Invalid recipient address \",\n        \"user\": null,\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-08T17:16:28.375+00:00\",\n        \"results_data\": [],\n        \"rule_ids\": null,\n        \"helo\": \"NAM10-BN7-obe.outbound.protection.outlook.com\",\n        \"ptr\": \"mail-bn7nam10lp2106.outbound.protection.outlook.com\",\n        \"ip\": \"104.47.70.106\",\n        \"postfix_queue_id\": null\n    }\n]"}],"_postman_id":"2fcaf234-e3e8-47b1-8e5f-8d962c850bb9"}],"id":"9242d4b2-c5a6-452d-8631-f9db5ba55b67","_postman_id":"9242d4b2-c5a6-452d-8631-f9db5ba55b67","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Messages","item":[{"name":"Customer Messages","id":"c3deffda-468f-4e8f-9a55-5e939228a1f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/messages","description":"<p>Retrieve quarantined messages for users under a customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","messages"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"e306515c-9886-4f74-8f33-4b788c00a890","name":"Customer Messages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"ca473c962d661b7a2a62d5a198e3d9d9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b16f4d7c-311c-4737-ab6d-e383ed718a87"},{"key":"X-Runtime","value":"47.739132"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1985056110,\n        \"uuid\": \"4F03A4FF-7E36-489E-9F14-D7F95BB0EA2B.1\",\n        \"address\": \"sales@mailprotector.com.au\",\n        \"recipients\": [\n            \"sales@mailprotector.com.au\"\n        ],\n        \"sender\": \"lanxifa02@163.com\",\n        \"to\": \"\\\"sales\\\" <sales@mailprotector.com.au>\",\n        \"from\": \"\\\"Keans Group Corp.\\\" <lanxifa02@163.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Re;Luminous collect\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38485,\n            \"name\": \"sales\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T20:50:11.000Z\"\n    },\n    {\n        \"id\": 1987720038,\n        \"uuid\": \"8ED07A77-D3F5-4DD9-9F41-8DBDF2A89A78.1\",\n        \"address\": \"sales@mailprotector.com.au\",\n        \"recipients\": [\n            \"sales@mailprotector.com.au\"\n        ],\n        \"sender\": \"info@ignitevisibility.online\",\n        \"to\": \"\\\"sales\\\" <sales@mailprotector.com.au>\",\n        \"from\": \"Crystal Grey <info@ignitevisibility.online>\",\n        \"cc\": \"\",\n        \"subject\": \"Website enquiries\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38485,\n            \"name\": \"sales\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T18:23:32.000Z\"\n    },\n    {\n        \"id\": 1985012921,\n        \"uuid\": \"4CEEA828-38FB-44CF-A86B-8451E5D556E5.1\",\n        \"address\": \"info@mailprotector.com.au\",\n        \"recipients\": [\n            \"info@mailprotector.com.au\"\n        ],\n        \"sender\": \"lanxifa02@163.com\",\n        \"to\": \"\\\"info\\\" <info@mailprotector.com.au>\",\n        \"from\": \"\\\"Keans Group Corp.\\\" <lanxifa02@163.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Re;Luminous collect\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 740\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 682800,\n            \"name\": \"info\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T18:18:14.000Z\"\n    },\n    {\n        \"id\": 1988097219,\n        \"uuid\": \"3DDFD497-25DA-4A60-917B-8B137FF6C112.1\",\n        \"address\": \"support@mailprotector.com.au\",\n        \"recipients\": [\n            \"support@mailprotector.com.au\"\n        ],\n        \"sender\": \"WalterWilson@toscanapa.com\",\n        \"to\": \"\\\"Skylar\\\" <support@mailprotector.com.au>\",\n        \"from\": \"\\\"Alexandra\\\" <WalterWilson@toscanapa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"AU Stronger action - brighter emotions. Kamagra Oral Jelly from our pharmacy.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38489,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:27:13.000Z\"\n    },\n    {\n        \"id\": 1988097188,\n        \"uuid\": \"7A2C9FCA-7478-4470-ACA2-18D7BF7A374C.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"simm@caperadiology.com\",\n        \"to\": \"\\\"spam@mailprotector.com\\\" <spam@mailprotector.com>\",\n        \"from\": \"Simsouda Mahathath <simm@caperadiology.com>\",\n        \"cc\": \"\",\n        \"subject\": \"FW: ZipRad Automates Image Ordering\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 212\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 73,\n                \"mode\": \"inbound\",\n                \"title\": \"SA\",\n                \"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.\",\n                \"weight\": 40\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:27:12.000Z\"\n    },\n    {\n        \"id\": 1988084340,\n        \"uuid\": \"647F200F-6213-4B22-9DA1-5D733147699A.1\",\n        \"address\": \"partners@mailprotector.com.au\",\n        \"recipients\": [\n            \"partners@mailprotector.com.au\"\n        ],\n        \"sender\": \"HenryMoore@timthomascpa.com\",\n        \"to\": \"\\\"Elke\\\" <partners@mailprotector.com.au>\",\n        \"from\": \"\\\"Maria\\\" <HenryMoore@timthomascpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"All you need is love. Cialis Professional will give you long action.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 147,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Neutral\",\n                \"description\": \"The SPF record specifies explicitly that nothing can be said about validity.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38483,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:14:46.000Z\"\n    },\n    {\n        \"id\": 1988080213,\n        \"uuid\": \"4DA2AD25-214D-476C-ADE7-BD32D2F91256.1\",\n        \"address\": \"partners@mailprotector.com\",\n        \"recipients\": [\n            \"partners@mailprotector.com\"\n        ],\n        \"sender\": \"JohnWoods@trailwoodshoa.com\",\n        \"to\": \"\\\"Katharina\\\" <partners@mailprotector.com>\",\n        \"from\": \"\\\"Sophia\\\" <JohnWoods@trailwoodshoa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Kamagra Oral Jelly inspires! Strengthen your love power now!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 960\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 710337,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:10:45.000Z\"\n    },\n    {\n        \"id\": 1988079634,\n        \"uuid\": \"E40B3CC4-3FB5-42C8-829F-0BF204F99D82.1\",\n        \"address\": \"billing@mailprotector.com\",\n        \"recipients\": [\n            \"billing@mailprotector.com\",\n            \"marketing@mailprotector.com\"\n        ],\n        \"sender\": \"KennethHicks@titangroupna.com\",\n        \"to\": \"\\\"Ellison\\\" <margaret.proffitt@mailprotector.com>,\\n\\t\\\"Kristina\\\" <marketing@mailprotector.com>\",\n        \"from\": \"\\\"Briella\\\" <KennethHicks@titangroupna.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Get the best quality of Cialis Soft Tabs! Best price ever!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38387,\n            \"name\": \"billing\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:09:55.000Z\"\n    },\n    {\n        \"id\": 1988079635,\n        \"uuid\": \"E40B3CC4-3FB5-42C8-829F-0BF204F99D82.1\",\n        \"address\": \"marketing@mailprotector.com\",\n        \"recipients\": [\n            \"billing@mailprotector.com\",\n            \"marketing@mailprotector.com\"\n        ],\n        \"sender\": \"KennethHicks@titangroupna.com\",\n        \"to\": \"\\\"Ellison\\\" <margaret.proffitt@mailprotector.com>,\\n\\t\\\"Kristina\\\" <marketing@mailprotector.com>\",\n        \"from\": \"\\\"Briella\\\" <KennethHicks@titangroupna.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Get the best quality of Cialis Soft Tabs! Best price ever!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38437,\n            \"name\": \"marketing\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:09:55.000Z\"\n    },\n    {\n        \"id\": 1988077799,\n        \"uuid\": \"6439C6BA-3DBF-43E9-A3E0-F5CF011AE072.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"dpeters@calvarychurch.com\",\n        \"to\": \"\\\"spam@emailservice.io\\\" <spam@emailservice.io>\",\n        \"from\": \"Donna Peters <dpeters@CalvaryChurch.com>\",\n        \"cc\": \"\",\n        \"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!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 450\n        },\n        \"results\": [\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 7,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 50\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:08:02.000Z\"\n    },\n    {\n        \"id\": 1988075168,\n        \"uuid\": \"BA2AD34F-C172-4CB9-BB3B-11BE167B05AA.1\",\n        \"address\": \"partners@mailprotector.co.uk\",\n        \"recipients\": [\n            \"partners@mailprotector.co.uk\"\n        ],\n        \"sender\": \"AdamWest@upcbroadband.cz\",\n        \"to\": \"\\\"Gisela\\\" <partners@mailprotector.co.uk>\",\n        \"from\": \"\\\"Heike\\\" <AdamWest@upcbroadband.cz>\",\n        \"cc\": \"\",\n        \"subject\": \"Realize your dormant temper. Kamagra Oral Jelly.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 2,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Reverse DNS\",\n                \"description\": \"The server that relayed the message was part of an ISP network which has a high frequency of spam.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38505,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 1073,\n            \"name\": \"mailprotector.co.uk user group\"\n        },\n        \"domain\": {\n            \"id\": 1481,\n            \"name\": \"mailprotector.co.uk\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:06:50.000Z\"\n    },\n    {\n        \"id\": 1988082915,\n        \"uuid\": \"A98F39CA-FF49-4088-9215-772579A0DB09.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"new-roofing-deals-jeremy.nigh=mailprotector.com@goodsdepartment.com\",\n        \"to\": \"<jeremy.nigh@mailprotector.com>\",\n        \"from\": \"\\\"New Roofing Deals\\\" <new-roofing-deals@goodsdepartment.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Save Hundreds on your Energy Bills\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:06:44.000Z\"\n    },\n    {\n        \"id\": 1988073923,\n        \"uuid\": \"E8D83B1F-1405-42E5-B978-9FC830BDEE5B.1\",\n        \"address\": \"feedback@mailprotector.com.au\",\n        \"recipients\": [\n            \"feedback@mailprotector.com.au\"\n        ],\n        \"sender\": \"BillyBaker@tkcpa.com\",\n        \"to\": \"\\\"Myah\\\" <feedback@mailprotector.com.au>\",\n        \"from\": \"\\\"Julianna\\\" <BillyBaker@tkcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Feel the call of your body with Viagra Professional. The best price here!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38477,\n            \"name\": \"feedback\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:05:59.000Z\"\n    },\n    {\n        \"id\": 1988073718,\n        \"uuid\": \"6E2B4EFB-D3BD-4170-9384-C48ACB119CB6.1\",\n        \"address\": \"haleigh.kump@mailprotector.com\",\n        \"recipients\": [\n            \"haleigh.kump@mailprotector.com\"\n        ],\n        \"sender\": \"order.procurement.8357129047@aviationminingsolutoins.com\",\n        \"to\": \"haleigh.kump@mailprotector.com\",\n        \"from\": \"Order Procurement <order.procurement.8357129047@aviationminingsolutoins.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Request For Quotation # 8357129047\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 640\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 32,\n                \"mode\": \"inbound\",\n                \"title\": \"Phishing\",\n                \"description\": \"This message contained content matching our phishing heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 993175,\n            \"name\": \"haleigh.kump\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T17:05:12.000Z\"\n    },\n    {\n        \"id\": 1988041226,\n        \"uuid\": \"A6799461-93C3-4BCE-9621-8D18E2398A50.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"jk@deskware-app.com\",\n        \"to\": \"Ben Hathaway <ben.hathaway@mailprotector.com>\",\n        \"from\": \"John Kampas <jk@deskware-app.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Re: Introductory Call\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:44:37.000Z\"\n    },\n    {\n        \"id\": 1988034691,\n        \"uuid\": \"6CD475B2-0C22-4DA0-A926-0EC8725CB3B1.1\",\n        \"address\": \"david.setzer@mailprotector.com\",\n        \"recipients\": [\n            \"david.setzer@mailprotector.com\"\n        ],\n        \"sender\": \"salesdev.louannek@gmail.com\",\n        \"to\": \"david.setzer@mailprotector.com\",\n        \"from\": \"Louanne Knott <salesdev.louannek@gmail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Strategy discussion on Thursday at 1:00 pm - David?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:37:41.000Z\"\n    },\n    {\n        \"id\": 1988028346,\n        \"uuid\": \"D6826CC9-D377-4EC9-AD58-62672320E180.1\",\n        \"address\": \"support@mailprotector.com.au\",\n        \"recipients\": [\n            \"support@mailprotector.com.au\"\n        ],\n        \"sender\": \"ChristopherMorris@intercable.net.co\",\n        \"to\": \"\\\"Heaven\\\" <support@mailprotector.com.au>\",\n        \"from\": \"\\\"Mary\\\" <ChristopherMorris@intercable.net.co>\",\n        \"cc\": \"\",\n        \"subject\": \"AU Viagra Super Active - your main equipment for love adventures.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 860\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38489,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:31:06.000Z\"\n    },\n    {\n        \"id\": 1988029459,\n        \"uuid\": \"09687D2F-22C2-4602-BE96-30A5375E50C6.1\",\n        \"address\": \"support@mailprotector.com.au\",\n        \"recipients\": [\n            \"support@mailprotector.com.au\"\n        ],\n        \"sender\": \"SamuelReed@timallencpa.com\",\n        \"to\": \"\\\"Julianna\\\" <support@mailprotector.com.au>\",\n        \"from\": \"\\\"Vivienne\\\" <SamuelReed@timallencpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"AU Qualitative drugs for lowest price here! Choose Cialis Brand.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38489,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:30:30.000Z\"\n    },\n    {\n        \"id\": 1988027419,\n        \"uuid\": \"EE7808DD-2FE3-413A-97F7-960BD31F3659.1\",\n        \"address\": \"support@mailprotector.com\",\n        \"recipients\": [\n            \"support@mailprotector.com\"\n        ],\n        \"sender\": \"JustinWalker@titangroupna.com\",\n        \"to\": \"\\\"Harleigh\\\" <support@mailprotector.com>\",\n        \"from\": \"\\\"Mary\\\" <JustinWalker@titangroupna.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Get strong erection for sure! Levitra.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38457,\n            \"name\": \"support\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:30:08.000Z\"\n    },\n    {\n        \"id\": 1988015145,\n        \"uuid\": \"1532DBAA-E414-4782-B342-92E8C220A42A.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"mark@mcnabolalaw.com\",\n        \"to\": \"\\\"spam@emailservice.io\\\" <spam@emailservice.io>\",\n        \"from\": \"Mark McNabola <mark@mcnabolalaw.com>\",\n        \"cc\": \"\",\n        \"subject\": \"FW: Working capital exclusively endorsed by NTL\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:17:54.000Z\"\n    },\n    {\n        \"id\": 1988012318,\n        \"uuid\": \"AF8AC3A3-AC6D-424D-9818-0543C2830CF9.1\",\n        \"address\": \"billing@mailprotector.com\",\n        \"recipients\": [\n            \"billing@mailprotector.com\"\n        ],\n        \"sender\": \"v-bngeokh_eblijdapch_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com\",\n        \"to\": \"amy.wright@mailprotector.com\",\n        \"from\": \"Spectrum Business <info@spectrumbusiness.spectrum.com>\",\n        \"cc\": \"\",\n        \"subject\": \"[Insights] Thinking About Gigabit Internet?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 280\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38387,\n            \"name\": \"billing\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:14:40.000Z\"\n    },\n    {\n        \"id\": 1988012326,\n        \"uuid\": \"B7A9277F-2EB7-4208-AA5D-A974C6217BCF.1\",\n        \"address\": \"andy.barringer@mailprotector.com\",\n        \"recipients\": [\n            \"andy.barringer@mailprotector.com\"\n        ],\n        \"sender\": \"v-bngeokh_eblijjnnji_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com\",\n        \"to\": \"andy@mailprotector.com\",\n        \"from\": \"Spectrum Business <info@spectrumbusiness.spectrum.com>\",\n        \"cc\": \"\",\n        \"subject\": \"[Insights] Thinking About Gigabit Internet?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 400\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 728356,\n            \"name\": \"andy.barringer\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:13:11.000Z\"\n    },\n    {\n        \"id\": 1988020203,\n        \"uuid\": \"82D72264-8798-4FBE-82BF-093338F9201E.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"v-bngeokh_eblijipnkm_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com\",\n        \"to\": \"jeremy.nigh@mailprotector.com\",\n        \"from\": \"Spectrum Business <info@spectrumbusiness.spectrum.com>\",\n        \"cc\": \"\",\n        \"subject\": \"[Insights] Thinking About Gigabit Internet?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 280\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:13:01.000Z\"\n    },\n    {\n        \"id\": 1988004383,\n        \"uuid\": \"C3ACBF69-1C59-4B37-80A9-CCF9069657C5.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"bounce-131_HTML-105339659-3312717-10959666-53@bounce.email.slackhq.com\",\n        \"to\": \"<ben.hathaway@mailprotector.com>\",\n        \"from\": \"\\\"Slack\\\" <no-reply@email.slackhq.com>\",\n        \"cc\": \"\",\n        \"subject\": \"January admin update\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:10:17.000Z\"\n    },\n    {\n        \"id\": 1988003731,\n        \"uuid\": \"9F4439A4-098B-46E6-93C3-6170B272C2B4.1\",\n        \"address\": \"feedback@mailprotector.com.au\",\n        \"recipients\": [\n            \"feedback@mailprotector.com.au\"\n        ],\n        \"sender\": \"JerryGray@toscanapa.com\",\n        \"to\": \"\\\"Rylie\\\" <feedback@mailprotector.com.au>\",\n        \"from\": \"\\\"Eleanor\\\" <JerryGray@toscanapa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Extend the active years of life. Choose Cialis Daily.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38477,\n            \"name\": \"feedback\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:09:50.000Z\"\n    },\n    {\n        \"id\": 1988002165,\n        \"uuid\": \"F7F00B4B-8374-4C7D-BA0F-6AFFD8BCA9FD.1\",\n        \"address\": \"weston.gaskill@mailprotector.com\",\n        \"recipients\": [\n            \"weston.gaskill@mailprotector.com\"\n        ],\n        \"sender\": \"v-bngeokh_eblijigkaf_gamdeape_gamdeape_a@bounce.spectrumbusiness.spectrum.com\",\n        \"to\": \"weston.gaskill@mailprotector.com\",\n        \"from\": \"Spectrum Business <info@spectrumbusiness.spectrum.com>\",\n        \"cc\": \"\",\n        \"subject\": \"[Insights] Thinking About Gigabit Internet?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 280\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 724133,\n            \"name\": \"weston.gaskill\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:08:42.000Z\"\n    },\n    {\n        \"id\": 1988001399,\n        \"uuid\": \"A98B2A6E-16C5-4A80-8D8D-B01DDBED514B.1\",\n        \"address\": \"david.setzer@mailprotector.com\",\n        \"recipients\": [\n            \"david.setzer@mailprotector.com\"\n        ],\n        \"sender\": \"1axbh2k111fa0n3gqbh4lz409rm7saxtjj7cj6@bf02b.hubspotemail.net\",\n        \"to\": \"david.setzer@mailprotector.com\",\n        \"from\": \"Kendra Hart <khart@commercialcleanrs.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Your Commercial Cleaning Needs\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:08:16.000Z\"\n    },\n    {\n        \"id\": 1988000818,\n        \"uuid\": \"692B0CB2-327B-4DD3-BA0C-738E99F09C7B.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"hsteuer@refaxinc.com\",\n        \"to\": \"\\\"spam@emailservice.io\\\" <spam@emailservice.io>\",\n        \"from\": \"Hansel Steuer <hsteuer@refaxinc.com>\",\n        \"cc\": \"\",\n        \"subject\": \"FW: CNC Plasma Cutter, Press Brakes, Shears, Turret & Engine Lathes, ( 45+) Welders, Large Steel Inventory\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 420\n        },\n        \"results\": [\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:07:34.000Z\"\n    },\n    {\n        \"id\": 1988008615,\n        \"uuid\": \"0EE3C756-4841-4E49-A480-CB33780D072C.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"canvasprints-promo-jeremy.nigh=mailprotector.com@itemsandbackup.com\",\n        \"to\": \"<jeremy.nigh@mailprotector.com>\",\n        \"from\": \"\\\"CanvasPrints Promo\\\" <canvasprints-promo@itemsandbackup.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Up to 93% off Custom Prints\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 500\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:05:32.000Z\"\n    },\n    {\n        \"id\": 1988004084,\n        \"uuid\": \"5EE9A474-4E52-4B4F-92B4-E550212C13FB.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"snore.fix-jeremy.nigh=mailprotector.com@lumaslim.rest\",\n        \"to\": \"<jeremy.nigh@mailprotector.com>\",\n        \"from\": \"\\\"Snore Fix\\\" <snore.fix@lumaslim.rest>\",\n        \"cc\": \"\",\n        \"subject\": \"Are You Tired of Hearing Your Partner Snore Every Day?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:04:33.000Z\"\n    },\n    {\n        \"id\": 1987990759,\n        \"uuid\": \"D87238B8-4337-416F-8E9F-3221AFC5440A.1\",\n        \"address\": \"sales@mailprotector.com.au\",\n        \"recipients\": [\n            \"sales@mailprotector.com.au\"\n        ],\n        \"sender\": \"323280@@bigpond.net.au\",\n        \"to\": \"sales@mailprotector.com.au\",\n        \"from\": \"\\\"william\\\" <323280@@bigpond.net.au>\",\n        \"cc\": \"\",\n        \"subject\": \"metal pen price\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 980\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38485,\n            \"name\": \"sales\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:00:52.000Z\"\n    },\n    {\n        \"id\": 1988020542,\n        \"uuid\": \"85312A4F-C813-440D-9F76-4D702F45F2B4.1\",\n        \"address\": \"david.setzer@mailprotector.com\",\n        \"recipients\": [\n            \"david.setzer@mailprotector.com\"\n        ],\n        \"sender\": \"6067-2594-16926-1625-dsetzer=mailprotector.net@mail.sqribplus.bid\",\n        \"to\": \"<dsetzer@mailprotector.net>\",\n        \"from\": \"\\\"Sqribble\\\" <Sqribble@sqribplus.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"Sqribble Is The ONLY eBook Creator Youâ\\u0080\\u0099ll Ever Needâ\\u0080¦\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 61,\n                \"mode\": \"inbound\",\n                \"title\": \"Porn/Adult\",\n                \"description\": \"Pornography, Dating, 'organ' augmentation.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38403,\n            \"name\": \"david.setzer\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T16:00:25.000Z\"\n    },\n    {\n        \"id\": 1988044960,\n        \"uuid\": \"0496CAB2-6898-43C9-A2D1-9028D9E9A3DC.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"6067-2594-23437-1625-ben.hathaway=mailprotector.com@mail.sqribplus.bid\",\n        \"to\": \"<ben.hathaway@mailprotector.com>\",\n        \"from\": \"\\\"Sqribble\\\" <Sqribble@sqribplus.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"No installation required. Sqribble is compatible on all computers.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 960\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 61,\n                \"mode\": \"inbound\",\n                \"title\": \"Porn/Adult\",\n                \"description\": \"Pornography, Dating, 'organ' augmentation.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:59:25.000Z\"\n    },\n    {\n        \"id\": 1987988358,\n        \"uuid\": \"84956ED3-95AC-42AB-8E53-B471D793F986.1\",\n        \"address\": \"kurin.quintavalle@mailprotector.com\",\n        \"recipients\": [\n            \"kurin.quintavalle@mailprotector.com\"\n        ],\n        \"sender\": \"bounces+864718-5d61-kurin.quintavalle=mailprotector.com@delivery.customeriomail.com\",\n        \"to\": \"kurin.quintavalle@mailprotector.com\",\n        \"from\": \"DataValidation Support <support@datavalidation.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Start the new year right!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 276\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 73,\n                \"mode\": \"inbound\",\n                \"title\": \"SA\",\n                \"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.\",\n                \"weight\": 40\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 846641,\n            \"name\": \"kurin.quintavalle\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:58:21.000Z\"\n    },\n    {\n        \"id\": 1987986471,\n        \"uuid\": \"C7D18765-78CE-4666-BD49-2E2ED8FC7329.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"bounces+140056-9737-ben.hathaway=mailprotector.com@emails.mangoapps.com\",\n        \"to\": \"ben.hathaway@mailprotector.com\",\n        \"from\": \"\\\"Patrick Allman\\\" <patrick.allman@mangoapps.com>\",\n        \"cc\": \"\",\n        \"subject\": \"RE: 2020 Digital Employee Initiatives at Mailprotector\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:56:08.000Z\"\n    },\n    {\n        \"id\": 1987981341,\n        \"uuid\": \"AFA319EC-6DDE-4435-ACBB-C4F10BA58DF0.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"6067-2594-23416-1625-jeremy.nigh=mailprotector.com@mail.sqribplus.bid\",\n        \"to\": \"<jeremy.nigh@mailprotector.com>\",\n        \"from\": \"\\\"Sqribble\\\" <Sqribble@sqribplus.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"No installation required. Sqribble is compatible on all computers.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 960\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 61,\n                \"mode\": \"inbound\",\n                \"title\": \"Porn/Adult\",\n                \"description\": \"Pornography, Dating, 'organ' augmentation.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:48:02.000Z\"\n    },\n    {\n        \"id\": 1987970948,\n        \"uuid\": \"C41DC0EB-20BE-471F-87AF-0B44B9027D3A.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"swasko@refaxinc.com\",\n        \"to\": \"\\\"spam@emailservice.io\\\" <spam@emailservice.io>\",\n        \"from\": \"Sharon Wasko <swasko@refaxinc.com>\",\n        \"cc\": \"\",\n        \"subject\": \"FW: So you probably know how much your roof repair costs\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 400\n        },\n        \"results\": [\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:36:35.000Z\"\n    },\n    {\n        \"id\": 1987969909,\n        \"uuid\": \"68E711E4-5757-4D93-8603-F2F1A13DBAE1.1\",\n        \"address\": \"ricky.hayes@mailprotector.com\",\n        \"recipients\": [\n            \"ricky.hayes@mailprotector.com\"\n        ],\n        \"sender\": \"JuanParker@novotelecom.ru\",\n        \"to\": \"\\\"Magnolia\\\" <ricky.hayes@mailprotector.com>\",\n        \"from\": \"\\\"Marley\\\" <JuanParker@novotelecom.ru>\",\n        \"cc\": \"\",\n        \"subject\": \"what are your plans for the weekend?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 33,\n                \"mode\": \"inbound\",\n                \"title\": \"Junk\",\n                \"description\": \"This message contained content matching our junk email heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38445,\n            \"name\": \"ricky.hayes\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:36:10.000Z\"\n    },\n    {\n        \"id\": 1987969472,\n        \"uuid\": \"DC23E383-016B-439D-8C5D-1A95E291FA45.1\",\n        \"address\": \"kurin.quintavalle@mailprotector.com\",\n        \"recipients\": [\n            \"kurin.quintavalle@mailprotector.com\"\n        ],\n        \"sender\": \"bounces+864718-5d61-kurin.quintavalle=mailprotector.com@delivery.customeriomail.com\",\n        \"to\": \"kurin.quintavalle@mailprotector.com\",\n        \"from\": \"DataValidation <updates@datavalidation.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Your email list needs attention\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 276\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 73,\n                \"mode\": \"inbound\",\n                \"title\": \"SA\",\n                \"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.\",\n                \"weight\": 40\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 846641,\n            \"name\": \"kurin.quintavalle\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:35:43.000Z\"\n    },\n    {\n        \"id\": 1987968638,\n        \"uuid\": \"D4EE06E6-3599-4102-9B36-12A881CCDD6D.1\",\n        \"address\": \"spam@mailprotector.com\",\n        \"recipients\": [\n            \"spam@mailprotector.com\"\n        ],\n        \"sender\": \"clawrence@kubikmaltbie.com\",\n        \"to\": \"\\\"spam@emailservice.io\\\" <spam@emailservice.io>\",\n        \"from\": \"Chanda Lawrence <clawrence@kubikmaltbie.com>\",\n        \"cc\": \"\",\n        \"subject\": \"FW: CONTACT me via this email { WUMTD.AGNENT@outlook.com) FOR YOUR FUND\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 320\n        },\n        \"results\": [\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 475236,\n            \"name\": \"spam\"\n        },\n        \"user_group\": {\n            \"id\": 9246,\n            \"name\": \"CloudMail\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:34:46.000Z\"\n    },\n    {\n        \"id\": 1987956465,\n        \"uuid\": \"11A4EA1C-A1D1-4472-9627-724F4C1CC62A.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"Sqribble@riblehal.us\",\n        \"to\": \"<jeremy.nigh@mailprotector.com>\",\n        \"from\": \"\\\"Sqribble\\\" <Sqribble@riblehal.us>\",\n        \"cc\": \"\",\n        \"subject\": \"Sqribble Is The ONLY eBook Creator Youâ\\u0080\\u0099ll Ever Needâ\\u0080¦\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 660\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 54,\n                \"mode\": \"inbound\",\n                \"title\": \"Experimental\",\n                \"description\": \"Abstract patterns for spam structures.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:22:54.000Z\"\n    },\n    {\n        \"id\": 1987949817,\n        \"uuid\": \"4063640E-BBDB-4BB2-BC6C-AB1AA576A59C.1\",\n        \"address\": \"partners@mailprotector.com\",\n        \"recipients\": [\n            \"partners@mailprotector.com\"\n        ],\n        \"sender\": \"e7d37442d38a36719d0e1bd9f47492f0@ypclistmanager.com\",\n        \"to\": \"partners@mailprotector.com\",\n        \"from\": \"Contacts Database <noreply@ypagescloud.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Worldwide E-mail Marketing Database [LIMITED OFFER: -40% DISCOUNT]:\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 620\n        },\n        \"results\": [\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 710337,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:16:26.000Z\"\n    },\n    {\n        \"id\": 1987947570,\n        \"uuid\": \"E7CDB7DB-E00C-4DA4-B334-A8338214478F.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"kill.my.taxes-jeremy.nigh=mailprotector.com@preparationitems.com\",\n        \"to\": \"<jeremy.nigh@mailprotector.com>\",\n        \"from\": \"\\\"Kill My Taxes\\\" <kill.my.taxes@preparationitems.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Stop IRS collections\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 700\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T15:07:42.000Z\"\n    },\n    {\n        \"id\": 1987930561,\n        \"uuid\": \"921E6A0D-EFD8-4B0C-AD44-1A5CDE156074.1\",\n        \"address\": \"billing@mailprotector.com\",\n        \"recipients\": [\n            \"billing@mailprotector.com\"\n        ],\n        \"sender\": \"BryanWilson@ucom.am\",\n        \"to\": \"\\\"Isabelle\\\" <margaret.proffitt@mailprotector.com>\",\n        \"from\": \"\\\"Ilse\\\" <BryanWilson@ucom.am>\",\n        \"cc\": \"\",\n        \"subject\": \"Choose Viagra Super Force. Choose maximum pleasure.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38387,\n            \"name\": \"billing\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T14:59:42.000Z\"\n    },\n    {\n        \"id\": 1987927999,\n        \"uuid\": \"EF173F91-8029-4347-A2CD-66417FCEBEC5.1\",\n        \"address\": \"partners@mailprotector.com.au\",\n        \"recipients\": [\n            \"partners@mailprotector.com.au\"\n        ],\n        \"sender\": \"DalePrice@totsona.com\",\n        \"to\": \"\\\"Christina\\\" <partners@mailprotector.com.au>\",\n        \"from\": \"\\\"Esperanza\\\" <DalePrice@totsona.com>\",\n        \"cc\": \"\",\n        \"subject\": \"could you meet me today?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 940\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38483,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T14:57:04.000Z\"\n    },\n    {\n        \"id\": 1987927990,\n        \"uuid\": \"E845930D-576C-40DF-866C-932539A402E8.1\",\n        \"address\": \"partners@mailprotector.com\",\n        \"recipients\": [\n            \"partners@mailprotector.com\"\n        ],\n        \"sender\": \"JesseReed@nnt.net.br\",\n        \"to\": \"\\\"Brynn\\\" <partners@mailprotector.com>\",\n        \"from\": \"\\\"Avalyn\\\" <JesseReed@nnt.net.br>\",\n        \"cc\": \"\",\n        \"subject\": \"If all men were the same as you...\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 710337,\n            \"name\": \"partners\"\n        },\n        \"user_group\": {\n            \"id\": 28330,\n            \"name\": \"Office 365 - No Archive or Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T14:57:03.000Z\"\n    },\n    {\n        \"id\": 1987922956,\n        \"uuid\": \"A68B53F2-A33C-440C-9C41-E3D73B4A1659.1\",\n        \"address\": \"billing@mailprotector.com\",\n        \"recipients\": [\n            \"billing@mailprotector.com\"\n        ],\n        \"sender\": \"bounces+3633940-b389-billing=mailprotector.com@em.app.postmates.com\",\n        \"to\": \"billing@mailprotector.com\",\n        \"from\": \"\\\"Postmates\\\" <news@app.postmates.com>\",\n        \"cc\": \"\",\n        \"subject\": \"$100 delivery credit to warm up.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 280\n        },\n        \"results\": [\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38387,\n            \"name\": \"billing\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T14:51:24.000Z\"\n    },\n    {\n        \"id\": 1987919333,\n        \"uuid\": \"09AA6A64-D5A7-420C-BE25-D1173C190FE8.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"return-path@boardjoin.com\",\n        \"to\": \"\\\"ben.hathaway@mailprotector.com\\\" <ben.hathaway@mailprotector.com>\",\n        \"from\": \"Research Team <membership@boardjoin.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Update: New Board Positions Available\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 640\n        },\n        \"results\": [\n            {\n                \"id\": 2,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Reverse DNS\",\n                \"description\": \"The server that relayed the message was part of an ISP network which has a high frequency of spam.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T14:47:03.000Z\"\n    },\n    {\n        \"id\": 1987930248,\n        \"uuid\": \"E0E2F5FE-E72D-49FE-9196-EF3679AE1B69.1\",\n        \"address\": \"jeremy.nigh@mailprotector.com\",\n        \"recipients\": [\n            \"jeremy.nigh@mailprotector.com\"\n        ],\n        \"sender\": \"6063-985-18841-1623-jeremy.nigh=mailprotector.com@mail.sqribplus.bid\",\n        \"to\": \"<jeremy.nigh@mailprotector.com>\",\n        \"from\": \"\\\"Hearing Aids Special\\\" <HearingAids@sqribplus.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"These Hearing Aids Will Change Your Life!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38425,\n            \"name\": \"jeremy.nigh\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T14:46:52.000Z\"\n    },\n    {\n        \"id\": 1987915073,\n        \"uuid\": \"7CC963C2-35E5-4D74-B9A3-B58BE7C65842.1\",\n        \"address\": \"ben.hathaway@mailprotector.com\",\n        \"recipients\": [\n            \"ben.hathaway@mailprotector.com\"\n        ],\n        \"sender\": \"Kevan.Grice@netapp.com\",\n        \"to\": \"\\\"ben.hathaway@mailprotector.com\\\" <ben.hathaway@mailprotector.com>\",\n        \"from\": \"\\\"Grice, Kevan\\\" <Kevan.Grice@netapp.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Re: Missed call Ben\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 38383,\n            \"name\": \"ben.hathaway\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Different Customer Name\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T14:41:39.000Z\"\n    }\n]"}],"_postman_id":"c3deffda-468f-4e8f-9a55-5e939228a1f5"},{"name":"Release Message","id":"9955ba7b-4e91-4bcf-8ba9-4c4cf02c2443","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}"},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver","description":"<p>Release a message from the quarantine. The <code>recipients</code> field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","messages","{{message_id}}","deliver"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"339a8de1-2d84-4786-a455-ad9994a88ed1","name":"Release Message","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e630abe8-ad9d-4ede-9c68-e88a74e273c7"},{"key":"X-Runtime","value":"1.371039"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9955ba7b-4e91-4bcf-8ba9-4c4cf02c2443"},{"name":"Release Multiple Messages","id":"f3a0746f-24fa-418a-bca5-23d7959638b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}"},"url":"emailservice.io/api/v1/customers/{{customer_id}}/messages/deliver_many","description":"<p>Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing <code>all_selected: true</code> will release all currently held messages from a customer's quarantine. </p>\n<p><strong>Note</strong>: 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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","messages","deliver_many"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"9b34bf12-e9b7-464a-af81-a7c4a0927813","name":"Release Multiple Messages","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/messages/deliver_many"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f602713b4241cb2e3030443e7df8e91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f90ce6bd-4dff-4852-a17e-e31ade67b4b8"},{"key":"X-Runtime","value":"0.465301"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"delivered_messages\": [\n        2015573173,\n        2015573567\n    ]\n}"}],"_postman_id":"f3a0746f-24fa-418a-bca5-23d7959638b3"}],"id":"45a5193b-7a6d-4eed-a000-ef4b20417b32","_postman_id":"45a5193b-7a6d-4eed-a000-ef4b20417b32","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Customers","id":"6f692188-36f5-4d6b-9ed1-5ee523b8910e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers","description":"<p>Retrieve a list of customers belonging to a reseller account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","customers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"ce930155-1c26-45cb-b2e2-68386737e9a1","name":"Get Customers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f7e234782105a387fd0c297c89f0fe3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"89b890c3-0c2c-4400-ac29-7d8ae00fa0d3"},{"key":"X-Runtime","value":"0.500454"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2111,\n        \"name\": \"Able Moving and Storage, Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-10-05T14:29:55.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:17.000Z\"\n    },\n    {\n        \"id\": 2009,\n        \"name\": \"Achievehs\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-01-11T18:56:16.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:10.000Z\"\n    },\n    {\n        \"id\": 2071,\n        \"name\": \"AGRICORP\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-07-13T12:57:05.000Z\",\n        \"updated_at\": \"2015-12-16T18:52:09.000Z\"\n    },\n    {\n        \"id\": 1887,\n        \"name\": \"AIS\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-01-13T09:37:06.000Z\",\n        \"updated_at\": \"2019-01-15T23:04:57.000Z\"\n    },\n    {\n        \"id\": 1973,\n        \"name\": \"AMAMCO TOOL\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-10-22T14:31:10.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:08.000Z\"\n    },\n    {\n        \"id\": 2099,\n        \"name\": \"AZNORTH\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-09-10T16:43:51.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:15.000Z\"\n    },\n    {\n        \"id\": 1995,\n        \"name\": \"Bossio & Associates\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-12-20T15:44:51.000Z\",\n        \"updated_at\": \"2015-12-16T18:47:41.000Z\"\n    },\n    {\n        \"id\": 2079,\n        \"name\": \"Breeze-Eastern Corporation\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-07-19T08:46:19.000Z\",\n        \"updated_at\": \"2015-12-16T18:52:28.000Z\"\n    },\n    {\n        \"id\": 2025,\n        \"name\": \"Brogans Bakery\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-03-24T10:58:22.000Z\",\n        \"updated_at\": \"2015-12-16T18:48:47.000Z\"\n    },\n    {\n        \"id\": 2045,\n        \"name\": \"Cambio Communications, Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-06-14T10:40:27.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:13.000Z\"\n    },\n    {\n        \"id\": 1983,\n        \"name\": \"Carlos Douglas Consulting Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-12-04T17:23:14.000Z\",\n        \"updated_at\": \"2016-11-23T01:22:37.000Z\"\n    },\n    {\n        \"id\": 1981,\n        \"name\": \"Central Disposal\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-11-18T21:02:15.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:11.000Z\"\n    },\n    {\n        \"id\": 2023,\n        \"name\": \"CollinsElectric\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-03-08T08:21:11.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:11.000Z\"\n    },\n    {\n        \"id\": 2087,\n        \"name\": \"COMBINED WAREHOUSE, INC\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-08-06T10:57:07.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:14.000Z\"\n    },\n    {\n        \"id\": 2005,\n        \"name\": \"Dauphin\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-01-08T16:44:30.000Z\",\n        \"updated_at\": \"2015-12-16T18:48:07.000Z\"\n    },\n    {\n        \"id\": 2091,\n        \"name\": \"Donsbach Law\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-08-19T23:48:33.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:15.000Z\"\n    },\n    {\n        \"id\": 2075,\n        \"name\": \"dtt broadcasting\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-07-17T13:07:10.000Z\",\n        \"updated_at\": \"2015-12-16T18:52:18.000Z\"\n    },\n    {\n        \"id\": 1963,\n        \"name\": \"eLegalSupply.com\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-09-23T15:26:18.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:07.000Z\"\n    },\n    {\n        \"id\": 805,\n        \"name\": \"Epic Real Estate Solutions, Inc.\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-07-07T14:09:05.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:05.000Z\"\n    },\n    {\n        \"id\": 2017,\n        \"name\": \"Eye Doctors of Washington\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-02-25T10:03:55.000Z\",\n        \"updated_at\": \"2015-12-16T18:48:27.000Z\"\n    },\n    {\n        \"id\": 1953,\n        \"name\": \"Fifth Group Restaurants\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-07-27T13:03:46.000Z\",\n        \"updated_at\": \"2015-12-16T18:46:10.000Z\"\n    },\n    {\n        \"id\": 1969,\n        \"name\": \"Garden State Baseball\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-10-13T09:12:00.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:06.000Z\"\n    },\n    {\n        \"id\": 1959,\n        \"name\": \"Girl Scouts of Greater Atlanta\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-08-20T19:14:33.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:07.000Z\"\n    },\n    {\n        \"id\": 1937,\n        \"name\": \"Girl Scouts of NY Penn and Pathways\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2009-06-03T14:56:30.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:03.000Z\"\n    },\n    {\n        \"id\": 687,\n        \"name\": \"GLOBE Foundation\",\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"created_at\": \"2010-10-12T10:46:51.000Z\",\n        \"updated_at\": \"2019-01-15T23:05:17.000Z\"\n    }\n]"}],"_postman_id":"6f692188-36f5-4d6b-9ed1-5ee523b8910e"},{"name":"Customer","id":"c436c250-fe62-4d2f-adf5-70f925eebddb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}","description":"<p>Retrieve a single customer using its ID.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"5dd4b7fe-69b9-476f-95d8-ebcf7a29d06f","name":"Get Customer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/customers/329"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"2f40efcfc1d364cbdd6ae655cc86fab1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"8d96c2ea-2f09-4753-8c1a-b5f51bc2f325"},{"key":"X-Runtime","value":"0.091556"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 329,\n    \"name\": \"Mailprotector group\",\n    \"provider\": {\n        \"id\": 65,\n        \"name\": \"United States\"\n    },\n    \"reseller\": {\n        \"id\": 188,\n        \"name\": \"Mailprotector Direct (old)\"\n    },\n    \"created_at\": \"2010-05-12T10:33:24.000Z\",\n    \"updated_at\": \"2014-05-13T23:27:51.000Z\"\n}"}],"_postman_id":"c436c250-fe62-4d2f-adf5-70f925eebddb"},{"name":"Create Customer","id":"2cbc3d74-161b-4b75-ba13-23fa26ee7887","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New Customer\",\n\t\"email\": \"contact@domain.com\"\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers","description":"<p>Create a new customer under a reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","customers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"37dd875a-026d-4b21-af11-c90e5e1b7330","name":"Create Customer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New Customer\",\n\t\"email\": \"contact@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/customers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/customers/16607"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d58ac371e75373c50f066ae2fc709c6b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"42409870-e872-41ea-8096-a7f8551db95a"},{"key":"X-Runtime","value":"1.478414"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 16607,\n    \"name\": \"New Customer\",\n    \"provider\": {\n        \"id\": 65,\n        \"name\": \"United States\"\n    },\n    \"reseller\": {\n        \"id\": 188,\n        \"name\": \"Mailprotector Direct (old)\"\n    },\n    \"created_at\": \"2020-01-02T21:55:54.000Z\",\n    \"updated_at\": \"2020-01-02T21:55:54.000Z\"\n}"}],"_postman_id":"2cbc3d74-161b-4b75-ba13-23fa26ee7887"},{"name":"Edit Customer","id":"0baf2c84-1167-47e6-a845-1736adb3def1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Different Customer Name\",\n\t\"email\": \"new-contact@domain.com\"\n}"},"url":"emailservice.io/api/v1/customers/{{customer_id}}","description":"<p>Edit an existing customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"d069a8e1-ac1f-4ee0-9a66-79e895990292","name":"Edit Customer","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Different Customer Name\",\n\t\"email\": \"new-contact@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/customers/329"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"1cc6c706094fa8354ca2a71f72962814\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"31996179-11a4-48fb-bbe5-30a091e58943"},{"key":"X-Runtime","value":"0.772537"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 329,\n    \"name\": \"Different Customer Name\",\n    \"provider\": {\n        \"id\": 65,\n        \"name\": \"United States\"\n    },\n    \"reseller\": {\n        \"id\": 188,\n        \"name\": \"Mailprotector Direct (old)\"\n    },\n    \"created_at\": \"2010-05-12T10:33:24.000Z\",\n    \"updated_at\": \"2020-01-02T22:35:01.000Z\"\n}"}],"_postman_id":"0baf2c84-1167-47e6-a845-1736adb3def1"},{"name":"Delete Customer","id":"91c87409-2636-4d86-9b44-ea746d0920cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}","description":"<p>Delete a customer account. All domains and users under the customer account will also be removed.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"f0b96bce-9718-478a-8855-aed2af1ec6a6","name":"Delete Customer","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"a4dcfa4a-e2cc-493c-b861-41e3aad9cda2"},{"key":"X-Runtime","value":"3.006260"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"91c87409-2636-4d86-9b44-ea746d0920cd"}],"id":"ff879d8b-2a18-429d-844e-ec790b36a709","description":"<p>Retrieve, create, update, or delete customer accounts. </p>\n","_postman_id":"ff879d8b-2a18-429d-844e-ec790b36a709","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Domains","item":[{"name":"User Groups","item":[{"name":"Domain User Groups","id":"4f66c1de-2c17-4c3b-8cbd-f471ac868aa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_groups","description":"<p>Get user groups under a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","user_groups"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"f8e49a24-f5ff-40ff-acfc-cb1fc2cfa0b4","name":"Domain User Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"f5876c301ff9b9ab4656d5f70bbc33c8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"48792738-43e4-44a0-b3ea-b14f6cb95480"},{"key":"X-Runtime","value":"0.476637"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 109,\n        \"name\": \"CloudMail with Bracket\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 47,\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-07-18T02:00:38.000Z\"\n    },\n    {\n        \"id\": 10786,\n        \"name\": \"Exchange+ 2013 with SecureStore\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2013-07-09T20:37:45.000Z\",\n        \"updated_at\": \"2019-05-09T19:37:30.000Z\"\n    },\n    {\n        \"id\": 17158,\n        \"name\": \"Bracket (Attachment Filtering)\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 3,\n        \"created_at\": \"2016-07-28T15:40:44.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:47.000Z\"\n    },\n    {\n        \"id\": 17333,\n        \"name\": \"Bracket\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 2,\n        \"created_at\": \"2016-09-13T14:10:43.000Z\",\n        \"updated_at\": \"2019-07-16T02:00:57.000Z\"\n    },\n    {\n        \"id\": 18149,\n        \"name\": \"Continuity Bundle + SafeSend\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 1,\n        \"created_at\": \"2016-12-05T15:55:18.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:48.000Z\"\n    },\n    {\n        \"id\": 19264,\n        \"name\": \"Bracket + SecureStore\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2017-05-11T19:14:51.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:48.000Z\"\n    },\n    {\n        \"id\": 19543,\n        \"name\": \"Continuity Bundle (CloudFilter + XtraMail)\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 1,\n        \"created_at\": \"2017-07-11T15:52:50.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:49.000Z\"\n    },\n    {\n        \"id\": 19588,\n        \"name\": \"CloudFilter (SafeSend)\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 2,\n        \"created_at\": \"2017-07-19T18:36:59.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:49.000Z\"\n    },\n    {\n        \"id\": 19807,\n        \"name\": \"SecureStore\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2017-08-29T21:25:57.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:49.000Z\"\n    },\n    {\n        \"id\": 20350,\n        \"name\": \"CloudFilter\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 7,\n        \"created_at\": \"2017-11-20T16:51:47.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:49.000Z\"\n    },\n    {\n        \"id\": 26235,\n        \"name\": \"Discovered Users\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2019-05-07T21:46:55.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:49.000Z\"\n    },\n    {\n        \"id\": 26259,\n        \"name\": \"Exchange+ 2016\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2019-05-09T19:38:49.000Z\",\n        \"updated_at\": \"2019-07-16T02:00:59.000Z\"\n    },\n    {\n        \"id\": 28741,\n        \"name\": \"Tester grouper\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2019-11-14T19:17:05.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:51.000Z\"\n    },\n    {\n        \"id\": 28757,\n        \"name\": \"Testing group for cloudmail email pause\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 1,\n        \"created_at\": \"2019-11-15T21:34:14.000Z\",\n        \"updated_at\": \"2019-11-16T02:01:48.000Z\"\n    },\n    {\n        \"id\": 29046,\n        \"name\": \"Bracket Group #4\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2019-12-18T15:37:56.000Z\",\n        \"updated_at\": \"2020-01-09T02:00:52.000Z\"\n    }\n]"}],"_postman_id":"4f66c1de-2c17-4c3b-8cbd-f471ac868aa6"},{"name":"Create User Group","id":"4c6bbf60-46a6-442d-98e1-26a8edd4a931","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new user group\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_groups","description":"<p>Create a user group under a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","user_groups"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"d3d51bf8-e903-46ef-b6c3-2910227bd0e8","name":"Create User Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new user group\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_groups/29193"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a944ba32e0e45265de432a035e50313f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e5109c6b-da70-41fc-9943-448cfe8f9938"},{"key":"X-Runtime","value":"0.791311"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 29193,\n    \"name\": \"new user group\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"user_count\": 0,\n    \"created_at\": \"2020-01-10T16:46:02.000Z\",\n    \"updated_at\": \"2020-01-10T16:46:02.000Z\"\n}"}],"_postman_id":"4c6bbf60-46a6-442d-98e1-26a8edd4a931"}],"id":"07f1f785-18b6-48f4-98a5-8583628da5ca","_postman_id":"07f1f785-18b6-48f4-98a5-8583628da5ca","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Users","item":[{"name":"Users","id":"c753b4b5-2c25-4ae0-b1cd-bb463ed98f64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/users","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","users"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"85320387-8c14-4d1a-9850-d4ce3a034140","name":"Users","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Oct 2021 20:42:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.21.3"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Vary","value":"Accept"},{"key":"ETag","value":"W/\"55b8761314e040db5769209b5c47be43\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"90f9c9a9-5a0e-4e20-8b98-9f1bccbeaa5a"},{"key":"X-Runtime","value":"0.090380"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 628092,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 13540,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15288,\n            \"name\": \"cloudmail.net\"\n        },\n        \"primary_address\": \"admin@cloudmail.net\",\n        \"email_addresses\": [\n            \"admin@cloudmail.net\",\n            \"postmaster@cloudmail.net\"\n        ],\n        \"first_name\": \"CloudMail\",\n        \"last_name\": \"Admin\",\n        \"created_at\": \"2014-05-23T21:54:42.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:00.000Z\"\n    },\n    {\n        \"id\": 628094,\n        \"name\": \"ben\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 13540,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15288,\n            \"name\": \"cloudmail.net\"\n        },\n        \"primary_address\": \"ben@cloudmail.net\",\n        \"email_addresses\": [\n            \"ben@cloudmail.net\"\n        ],\n        \"first_name\": \"Ben\",\n        \"last_name\": \"Hathaway\",\n        \"created_at\": \"2014-05-23T21:54:59.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:00.000Z\"\n    }\n]"}],"_postman_id":"c753b4b5-2c25-4ae0-b1cd-bb463ed98f64"}],"id":"d05269c4-fa15-40dc-b9f5-64ba88e269ff","_postman_id":"d05269c4-fa15-40dc-b9f5-64ba88e269ff","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Aliases","item":[{"name":"Domain Aliases","id":"a18c610b-2bce-43a3-aff1-69094e3cafdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/aliases","description":"<p>Get the aliases for a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","aliases"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"d0effe07-0bfb-446b-be19-c117608af4a3","name":"Domain Aliases","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/aliases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d1d8130550872d7c8b3fe9daa3c81704\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"075d3baf-1ca3-44bd-8a40-1b34dcda92f1"},{"key":"X-Runtime","value":"0.333357"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 28481,\n        \"name\": \"domain-alias.com\",\n        \"account\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"domain_status\": {\n            \"id\": 1,\n            \"name\": \"Pending\"\n        },\n        \"parent\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"verification_token\": \"xUA9khcFa6S6fdVAr/li0i/lXXo1wfdbvplUoBrhQ0Y=\",\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2019-12-30T20:09:39.000Z\",\n        \"updated_at\": \"2019-12-30T20:09:39.000Z\"\n    },\n    {\n        \"id\": 11554,\n        \"name\": \"exchange.mpdemo.net\",\n        \"account\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"verification_token\": null,\n        \"address_discovery_enabled\": true,\n        \"created_at\": \"2012-11-29T18:33:57.000Z\",\n        \"updated_at\": \"2015-09-21T02:44:21.000Z\"\n    },\n    {\n        \"id\": 28477,\n        \"name\": \"test.domain.com\",\n        \"account\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"domain_status\": {\n            \"id\": 1,\n            \"name\": \"Pending\"\n        },\n        \"parent\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"verification_token\": \"K5ZkO74Zr6jzj1VfY37X2LzM44MzboRGR4mt+cu39+I=\",\n        \"address_discovery_enabled\": false,\n        \"created_at\": \"2019-11-06T17:12:07.000Z\",\n        \"updated_at\": \"2019-11-06T17:12:07.000Z\"\n    }\n]"}],"_postman_id":"a18c610b-2bce-43a3-aff1-69094e3cafdd"},{"name":"Create Domain Alias","id":"09628589-3a12-4c2a-9f29-b96d1f57d345","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new-domain-alias.com\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/aliases","description":"<p>Create a new domain alias.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","aliases"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"c06123b6-16ca-4ebe-a732-05267190971e","name":"Create Domain Alias","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new-domain-alias.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/aliases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/28483/aliases"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"6ee0fddba2c88e9c95de2e67d8e2edcb\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1991f0c2-70cd-4c51-b44c-cf0a5b6b0079"},{"key":"X-Runtime","value":"0.685075"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 28483,\n    \"name\": \"new-domain-alias.com\",\n    \"account\": {\n        \"id\": 7114,\n        \"name\": \"Mailprotector Demo Customer\"\n    },\n    \"domain_status\": {\n        \"id\": 1,\n        \"name\": \"Pending\"\n    },\n    \"parent\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"verification_token\": \"d9qxEzUXAV0xQNx/DJimsa79kxedAUVrLVoRlb4Oqw8=\",\n    \"address_discovery_enabled\": false,\n    \"created_at\": \"2020-01-09T20:19:52.000Z\",\n    \"updated_at\": \"2020-01-09T20:19:52.000Z\"\n}"}],"_postman_id":"09628589-3a12-4c2a-9f29-b96d1f57d345"}],"id":"0e09ed25-8663-46cd-8d62-5029f2bb27dd","_postman_id":"0e09ed25-8663-46cd-8d62-5029f2bb27dd","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Allow/Block Rules","item":[{"name":"Domain Allow/Block Rules","id":"98e15b78-5ff1-4751-96c2-33539ec05bd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"046fb490-0d33-4024-9f8c-46611e4b4bdb","name":"Domain Allow/Block Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"847abf1ff6767c30f093423aa467f866\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"6484a7a8-5004-473e-b54d-b0fd4bfa64a8"},{"key":"X-Runtime","value":"7.785913"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 191183,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"wilsonlove.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 191321,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"anotherblockedsite.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 191324,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"againanotherblockedsite.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 212505,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"test102.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 213058,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"aaa.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 259461,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"test0812034981289.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 259476,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"test12341098102834.net\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 461266,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"jimbillybob@gmail.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 461288,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"chickenfriedfat.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469096,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"howabout.no\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469100,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"cheeseisawesome.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469102,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"whomovedmychee.se\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469104,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"therisnospo.on\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469106,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"xkcd.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469108,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"willaim@mailprotector.net\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469110,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"customersaresill.ly\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469112,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"vwvortex.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469114,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"mye28.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469116,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"bmwcca.org\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469118,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"theawesomer.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469120,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"notalwaysright.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469122,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"notalwaysworking.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469124,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"isittimeforbreakfa.st\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469126,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"whenslunch.com\",\n        \"rule_type\": \"Block\"\n    },\n    {\n        \"id\": 469128,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"value\": \"canigohomenow.net\",\n        \"rule_type\": \"Block\"\n    }\n]"}],"_postman_id":"98e15b78-5ff1-4751-96c2-33539ec05bd4"},{"name":"Create Domain Allow/Block Rule","id":"47096f38-5048-4d4e-bd69-fc40e51b2f24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"6b2f5401-4b67-44be-9ea9-3ff051221cd2","name":"Create Domain Allow/Block Rule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/allow_block_rules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/allow_block_rules/2445357"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"05fd75626ca6d641be8832d24a041331\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"dc204333-29be-4453-83a8-3a389000f667"},{"key":"X-Runtime","value":"4.517605"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2445357,\n    \"entity\": {\n        \"id\": 102,\n        \"entity_type\": \"Domain\",\n        \"name\": \"mpdemo.net\"\n    },\n    \"value\": \"block@domain.com\",\n    \"rule_type\": \"block\"\n}"}],"_postman_id":"47096f38-5048-4d4e-bd69-fc40e51b2f24"},{"name":"Delete Allow/Block Rule","id":"d7f4d2c5-a31e-4eff-ae71-7e3da38b8cf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}","description":"<p>Delete an allow or block rule.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","allow_block_rules","{{allow_block_rule_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"fba47103-c0db-4c65-972f-4a46e13828c9","name":"Delete Allow/Block Rule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f49f9830-b6c1-4dca-bfc3-7e6ea2a13305"},{"key":"X-Runtime","value":"0.243252"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d7f4d2c5-a31e-4eff-ae71-7e3da38b8cf1"}],"id":"ab54f3ed-b4b5-4195-9c38-1e54319f2950","_postman_id":"ab54f3ed-b4b5-4195-9c38-1e54319f2950","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Configuration","item":[{"name":"Email Destinations","item":[],"id":"044f1699-627f-41ae-be5b-f21004b01862","_postman_id":"044f1699-627f-41ae-be5b-f21004b01862","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Domain Configuration","id":"054fe8be-48c3-4e99-a334-7ab285f6dc35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/configuration","description":"<p>Get the configuration for a domain. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"b9b40950-be3d-4885-aac1-10c70ff08dfc","name":"Domain Configuration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"fb45d1d9dba79fc0a9cddcd8ad232f30\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"585fc498-0795-455a-8d19-9ab4517b1124"},{"key":"X-Runtime","value":"19.758003"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"configuration\": {\n        \"region\": {\n            \"locale\": \"en\",\n            \"time_zone\": \"Eastern Time (US & Canada)\"\n        },\n        \"archiving\": {\n            \"journal_address\": null,\n            \"smtp_collector_address\": null,\n            \"url\": null\n        },\n        \"permissions\": {\n            \"messages\": {\n                \"allow_spam_release\": true,\n                \"allow_policy_release\": true,\n                \"allow_virus_release\": false,\n                \"allow_feed\": true\n            },\n            \"console\": {\n                \"allow_console_access\": true,\n                \"allow_user_management_of_allow_block\": true,\n                \"allow_user_management_of_content_rules\": false,\n                \"allow_user_management_of_quarantine_preferences\": true,\n                \"allow_user_management_of_spam_tolerance\": true\n            }\n        },\n        \"console\": {\n            \"access\": {\n                \"email_authentication_enabled\": true,\n                \"authentication_type\": \"ldap\",\n                \"authentication_server\": null,\n                \"authentication_port\": 389,\n                \"authentication_use_ssl\": false,\n                \"authentication_radius_secret\": null,\n                \"authentication_username\": null\n            }\n        },\n        \"encryption\": {\n            \"bracket\": {\n                \"allow_export_default\": true,\n                \"allow_users_to_manage_defaults\": true,\n                \"journaling_address\": null,\n                \"protect_subject_default\": false,\n                \"request_bracket_email\": null,\n                \"rule_enabled\": false,\n                \"rule_trigger\": \"square\",\n                \"send_open_notification_default\": false,\n                \"company_profile\": {\n                    \"allow_users_to_manage\": 1,\n                    \"city\": null,\n                    \"include_in_notifications\": 0,\n                    \"logo_url_for_email\": null,\n                    \"logo_url_for_preview\": null,\n                    \"name\": null,\n                    \"phone\": null,\n                    \"postal_code\": null,\n                    \"push_to_all_users\": null,\n                    \"push_with_new_users\": 0,\n                    \"state\": null,\n                    \"street_address\": null,\n                    \"website\": null\n                }\n            }\n        },\n        \"filtering\": {\n            \"alerts\": {\n                \"addresses\": [\n                    \"demo@mailprotector.com\"\n                ],\n                \"include_user\": 1,\n                \"inbound\": {\n                    \"virus_enabled\": true,\n                    \"policy_enabled\": false,\n                    \"spam_enabled\": false\n                },\n                \"outbound\": {\n                    \"virus_enabled\": false,\n                    \"policy_enabled\": true,\n                    \"spam_enabled\": false\n                }\n            },\n            \"spam_tolerance\": {\n                \"quarantine_threshold\": 200,\n                \"tag_threshold\": 200,\n                \"tag_text_location\": \"subject\",\n                \"tag_text\": \"[Possible spam]\"\n            }\n        },\n        \"mail_flow\": {\n            \"inbound\": {\n                \"redirect_alias_to_primary\": false,\n                \"smtp_host\": \"domain-102.routing.emailservice.io\",\n                \"smtp_port\": 25,\n                \"smtp_host_use_mx\": true,\n                \"email_destinations_enabled\": false,\n                \"mail_delivery_enabled\": true\n            },\n            \"outbound\": {\n                \"relay_enabled\": true\n            }\n        },\n        \"notifications\": {\n            \"link_hours_until_expiration\": 72,\n            \"link_max_logins\": 3,\n            \"schedule\": {\n                \"enabled\": false,\n                \"start_hour\": 8,\n                \"end_hour\": 18,\n                \"days_of_week\": [\n                    2,\n                    3,\n                    4,\n                    5,\n                    6\n                ]\n            }\n        },\n        \"messages\": {\n            \"review\": {\n                \"enabled\": true,\n                \"interval\": 3,\n                \"start_hour\": 8,\n                \"end_hour\": 17\n            },\n            \"visibility\": {\n                \"threshold\": 300\n            }\n        },\n        \"user_sync\": {\n            \"move_users\": true\n        }\n    }\n}"}],"_postman_id":"054fe8be-48c3-4e99-a334-7ab285f6dc35"},{"name":"Edit Configuration","id":"34ae15ea-1aca-4127-af07-fe32688651ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": true\n\t\t}\n\t}\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/configuration","description":"<p>Edit the configuration of a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"f96abcd3-ff82-4a7f-a179-8ef314e3e880","name":"Edit Configuration","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": true\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"28bb55869da1ebccb1bfe03e1a88ae6b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"6cd6a91b-c0f4-4b63-a19f-c19fafb3bdbd"},{"key":"X-Runtime","value":"7.129827"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"region\": {\n        \"locale\": \"en\",\n        \"time_zone\": \"Eastern Time (US & Canada)\"\n    },\n    \"archiving\": {\n        \"journal_address\": null,\n        \"smtp_collector_address\": null,\n        \"url\": null\n    },\n    \"permissions\": {\n        \"messages\": {\n            \"allow_spam_release\": true,\n            \"allow_policy_release\": true,\n            \"allow_virus_release\": false,\n            \"allow_feed\": true\n        },\n        \"console\": {\n            \"allow_console_access\": true,\n            \"allow_user_management_of_allow_block\": true,\n            \"allow_user_management_of_content_rules\": false,\n            \"allow_user_management_of_quarantine_preferences\": true,\n            \"allow_user_management_of_spam_tolerance\": true\n        }\n    },\n    \"console\": {\n        \"access\": {\n            \"email_authentication_enabled\": true,\n            \"authentication_type\": \"ldap\",\n            \"authentication_server\": null,\n            \"authentication_port\": 389,\n            \"authentication_use_ssl\": false,\n            \"authentication_radius_secret\": null,\n            \"authentication_username\": null\n        }\n    },\n    \"encryption\": {\n        \"bracket\": {\n            \"allow_export_default\": true,\n            \"allow_users_to_manage_defaults\": true,\n            \"journaling_address\": null,\n            \"protect_subject_default\": false,\n            \"request_bracket_email\": null,\n            \"rule_enabled\": false,\n            \"rule_trigger\": \"square\",\n            \"send_open_notification_default\": false,\n            \"company_profile\": {\n                \"allow_users_to_manage\": 1,\n                \"city\": null,\n                \"include_in_notifications\": 0,\n                \"logo_url_for_email\": null,\n                \"logo_url_for_preview\": null,\n                \"name\": null,\n                \"phone\": null,\n                \"postal_code\": null,\n                \"push_to_all_users\": null,\n                \"push_with_new_users\": 0,\n                \"state\": null,\n                \"street_address\": null,\n                \"website\": null\n            }\n        }\n    },\n    \"filtering\": {\n        \"alerts\": {\n            \"addresses\": [\n                \"demo@mailprotector.com\"\n            ],\n            \"include_user\": 1,\n            \"inbound\": {\n                \"virus_enabled\": true,\n                \"policy_enabled\": false,\n                \"spam_enabled\": false\n            },\n            \"outbound\": {\n                \"virus_enabled\": false,\n                \"policy_enabled\": true,\n                \"spam_enabled\": false\n            }\n        },\n        \"spam_tolerance\": {\n            \"quarantine_threshold\": 200,\n            \"tag_threshold\": 200,\n            \"tag_text_location\": \"subject\",\n            \"tag_text\": \"[Possible spam]\"\n        }\n    },\n    \"mail_flow\": {\n        \"inbound\": {\n            \"redirect_alias_to_primary\": false,\n            \"smtp_host\": \"domain-102.routing.emailservice.io\",\n            \"smtp_port\": 25,\n            \"smtp_host_use_mx\": true,\n            \"email_destinations_enabled\": false,\n            \"mail_delivery_enabled\": true\n        },\n        \"outbound\": {\n            \"relay_enabled\": true\n        }\n    },\n    \"notifications\": {\n        \"link_hours_until_expiration\": 72,\n        \"link_max_logins\": 3,\n        \"schedule\": {\n            \"enabled\": false,\n            \"start_hour\": 8,\n            \"end_hour\": 18,\n            \"days_of_week\": [\n                2,\n                3,\n                4,\n                5,\n                6\n            ]\n        }\n    },\n    \"messages\": {\n        \"review\": {\n            \"enabled\": true,\n            \"interval\": 3,\n            \"start_hour\": 8,\n            \"end_hour\": 17\n        },\n        \"visibility\": {\n            \"threshold\": 300\n        }\n    },\n    \"user_sync\": {\n        \"move_users\": true\n    }\n}"}],"_postman_id":"34ae15ea-1aca-4127-af07-fe32688651ce"}],"id":"fe56cdcf-603a-40c1-8e95-13af25a030e2","_postman_id":"fe56cdcf-603a-40c1-8e95-13af25a030e2","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Email Destinations","item":[{"name":"Domain Email Destinations","id":"fdf6c805-314e-4dc7-a05f-756a947c5348","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_destinations","description":"<p>Get the Email Destinations for a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","email_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"0faf9b7f-1495-450d-9aa4-6bcbd6c0e08c","name":"Domain Email Destinations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_destinations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"77cdc8c55ed8f7f4ee7b19d5e2beb266\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"071aa20a-5b18-4bbd-8b2e-bffa3e5ee53c"},{"key":"X-Runtime","value":"0.097664"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1293,\n        \"entity_id\": 102,\n        \"entity_type\": \"Domain\",\n        \"address\": \"example.com\",\n        \"priority\": 0\n    },\n    {\n        \"id\": 1294,\n        \"entity_id\": 102,\n        \"entity_type\": \"Domain\",\n        \"address\": \"example2.com\",\n        \"priority\": 1\n    }\n]"}],"_postman_id":"fdf6c805-314e-4dc7-a05f-756a947c5348"},{"name":"Create Domain Email Destination","id":"06237502-8742-4991-a414-bf7dcb37d585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"domain.com\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_destinations","description":"<p>Create an email destination for a domain. Address can be either a domain or IP address.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","email_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"cc492165-df97-4858-9d55-5c30053f8ff6","name":"Create Domain Email Destination","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_destinations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/email_destinations/1295"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"54708a8ecce08f78218f83c938aa4031\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"84774b00-cdef-4aee-9afa-96a3de77b120"},{"key":"X-Runtime","value":"0.163027"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1295,\n    \"entity_id\": 102,\n    \"entity_type\": \"Domain\",\n    \"address\": \"domain.com\",\n    \"priority\": 2\n}"}],"_postman_id":"06237502-8742-4991-a414-bf7dcb37d585"}],"id":"9e1714ec-5c83-4bc9-87bf-a74f45160148","_postman_id":"9e1714ec-5c83-4bc9-87bf-a74f45160148","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Email Sources","item":[{"name":"Domain Email Sources","id":"e1450af6-f2ba-45c8-b606-ad0accc7c30a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_sources","description":"<p>Get the email sources for a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","email_sources"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"d4c93093-515c-4f34-b97f-86a21bcef633","name":"Domain Email Sources","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_sources"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"aadc599fe90eb3d754c92fef157077bc\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"30b224c8-8030-4663-bf50-d38eeddf12b1"},{"key":"X-Runtime","value":"0.313140"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 127,\n        \"entity\": {\n            \"id\": 102,\n            \"entity_type\": \"Domain\",\n            \"name\": \"mpdemo.net\"\n        },\n        \"address\": \"97.81.240.155\"\n    }\n]"}],"_postman_id":"e1450af6-f2ba-45c8-b606-ad0accc7c30a"},{"name":"Create Domain Email Source","id":"dd870415-abbe-47eb-a071-a5f106e2485f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"192.168.0.1\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_sources","description":"<p>Create an email source for a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","email_sources"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"3c51d9b8-02c4-4879-87c8-74d9246cce39","name":"Create Domain Email Source","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"192.168.0.1\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/email_sources"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/email_sources/948"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"f3af83e174a272c9abb585cbf79c2efd\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"9f3ca955-89a5-41be-afde-9bc2d2281999"},{"key":"X-Runtime","value":"0.288054"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 948,\n    \"entity\": {\n        \"id\": 102,\n        \"entity_type\": \"Domain\",\n        \"name\": \"mpdemo.net\"\n    },\n    \"address\": \"192.168.0.1\"\n}"}],"_postman_id":"dd870415-abbe-47eb-a071-a5f106e2485f"}],"id":"444d35ee-cca5-4066-b9e4-81c417067020","_postman_id":"444d35ee-cca5-4066-b9e4-81c417067020","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Logs","item":[{"name":"Domain Logs","id":"5e8029e0-eab7-49a2-b360-f05aeba76a62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/logs","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","logs"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"e292fde7-0920-4bff-9522-58ba6f5e54ca","name":"Domain Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"6eebecc1a7f48f82bb745e1cce19ad75\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"fa982c18-757d-4693-9ed0-a4c1456f00ce"},{"key":"X-Runtime","value":"0.400795"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"a96c91c6-fdfe-4e99-a03c-3717b06bcdcb\",\n        \"uuid\": \"a96c91c6-fdfe-4e99-a03c-3717b06bcdcb\",\n        \"sender\": \"bounces@abmail.mailings.ncaa.com\",\n        \"from\": \"\\\"NCAA.com\\\" <no-reply@mailings.ncaa.com>\",\n        \"recipient\": \"carnegie@mpdemo.net\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"167.89.41.152\",\n        \"subject\": \"The Journey to Detroit Continues!\",\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-09T15:46:01.913+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_none\",\n            \"reply_spf_softfail\",\n            \"multiple_from_replyto\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"o903.abmail.mailings.ncaa.com\",\n        \"ptr\": \"o903.abmail.mailings.ncaa.com\",\n        \"ip\": \"167.89.41.152\",\n        \"postfix_queue_id\": \"29E3A61729\"\n    }\n]"}],"_postman_id":"5e8029e0-eab7-49a2-b360-f05aeba76a62"}],"id":"075d36df-0237-439d-8232-32debdabe6ef","_postman_id":"075d36df-0237-439d-8232-32debdabe6ef","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Messages","item":[{"name":"Domain Messages","id":"a59feed9-5b4d-49f0-af20-e4e10746d783","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/messages","description":"<p>Get the messages from the quarantine of users on a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","messages"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"ac686589-e46a-4567-98b4-914d73c4d6ae","name":"Domain Messages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"15cd9ac1c7ae9f9a5e92e1a24326332e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c03a01ec-404e-417c-9fbf-be7e4d8a6aa9"},{"key":"X-Runtime","value":"14.264853"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1989091611,\n        \"uuid\": \"7340C1A1-F2B1-4707-8DB3-D04036ACB3ED.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"EraseMyBackPain@memoryhacksplus.bid\",\n        \"to\": \"<brett@mpdemo.net>\",\n        \"from\": \"\\\"Erase My Back Pain\\\" <EraseMyBackPain@memoryhacksplus.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"1 Weird Stretch DESTROYS Back Pain & Sciatica\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 940\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T18:02:14.000Z\"\n    },\n    {\n        \"id\": 1989056539,\n        \"uuid\": \"CEF2590F-E55F-4238-A900-1E07B7730FAA.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016f8b5eee4b-f21c8cb8-6a52-4102-b053-d7f3f59f5ea7-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"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\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 270\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 7,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 50\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T17:34:12.000Z\"\n    },\n    {\n        \"id\": 1989046094,\n        \"uuid\": \"8BB711A6-97EA-439D-B749-AB687633A4A1.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"SqribbleReviewWITHDemo@sqribbles.bid\",\n        \"to\": \"<brett@mpdemo.net>\",\n        \"from\": \"\\\"Sqribble Review WITH Demo\\\" <SqribbleReviewWITHDemo@sqribbles.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"WATCH THIS: Create a product in 60 seconds!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 840\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T17:26:26.000Z\"\n    },\n    {\n        \"id\": 1989010262,\n        \"uuid\": \"9C93945F-8FA5-4BA4-A418-685210585D3A.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"KennethFreeman@megared.net.mx\",\n        \"to\": \"\\\"Delaney\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Brenna\\\" <KennethFreeman@megared.net.mx>\",\n        \"cc\": \"\",\n        \"subject\": \"How To Start Make $950 daily Online?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T16:54:27.000Z\"\n    },\n    {\n        \"id\": 1989007134,\n        \"uuid\": \"EA0FB6CE-D797-420C-8418-9AD35BED7FE3.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"HotNewOffer:BackyardRevolution@sugarbalances.bid\",\n        \"to\": \"<brett@mpdemo.net>\",\n        \"from\": \"\\\"Hot New Offer : Backyard Revolution\\\" <HotNewOffer:BackyardRevolution@sugarbalances.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"Orlando Carpenter Saves $975 a Year On Power. [SEE HOW]\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 860\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T16:51:01.000Z\"\n    },\n    {\n        \"id\": 1988994661,\n        \"uuid\": \"DEE15E84-2B79-4F35-8D22-7720BA1E23C8.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"v-bfkdnep_fjcackpmfo_gcpjfffj_gcpjfffj_a@bounce.e.theatlantic.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Atlantic <theatlantic@subscription.theatlantic.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Essential journalism for the year ahead\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T16:39:22.000Z\"\n    },\n    {\n        \"id\": 1988986249,\n        \"uuid\": \"A5B8D224-A83F-4C13-A934-8FC6D3D02142.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce@tech.channelfutures.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"Channel Futures\\\" <ChannelFutures@tech.channelfutures.com>\",\n        \"cc\": \"\",\n        \"subject\": \"MSP eBook - Growing & Sustaining Your Business\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T16:32:42.000Z\"\n    },\n    {\n        \"id\": 1988976799,\n        \"uuid\": \"BF26C8D5-6D3D-4142-8CAD-4CE8F13ED71F.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016f8b1ee466-711e8f2d-9678-4082-b865-8bc83b5b308a-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The Daily 202: The ghosts of 1979 still haunt U.S. policy toward Iran and shadow Trump’s response to missile strikes\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 40\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T16:24:15.000Z\"\n    },\n    {\n        \"id\": 1988964229,\n        \"uuid\": \"60700622-624B-4BCD-B341-E00F86F88DFC.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"GregoryWalker@tonywhoa.com\",\n        \"to\": \"\\\"Laurel\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Jaylee\\\" <GregoryWalker@tonywhoa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Viagra Super Force. Oh, yes...\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 640\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T16:13:59.000Z\"\n    },\n    {\n        \"id\": 1988962470,\n        \"uuid\": \"99F454C8-893F-4A3A-81F9-5B236875F4FA.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"iShopChargers@virtualpilotgames.bid\",\n        \"to\": \"<brett@mpdemo.net>\",\n        \"from\": \"\\\"iShop Chargers\\\" <iShopChargers@virtualpilotgames.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"The Last Charging Cable You'll Ever Buy. Guaranteed.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 960\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T16:13:03.000Z\"\n    },\n    {\n        \"id\": 1988928134,\n        \"uuid\": \"115FFC21-5BD8-45F4-A29F-B8EB821E6153.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+6692116-dc2e-carnegie=mpdemo.net@abmail.mailings.ncaa.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"\\\"NCAA.com\\\" <no-reply@mailings.ncaa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The Journey to Detroit Continues!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T15:45:59.000Z\"\n    },\n    {\n        \"id\": 1988920101,\n        \"uuid\": \"4C154493-1D75-42F3-939D-804C437BBCE2.2\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"Prostate911@prostate911plus.bid\",\n        \"to\": \"<brett@mpdemo.net>\",\n        \"from\": \"\\\"Prostate 911\\\" <Prostate911@prostate911plus.bid>\",\n        \"cc\": \"\",\n        \"subject\": \"Your Prostate Is the Size Of A Lemon\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 740\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T15:39:19.000Z\"\n    },\n    {\n        \"id\": 1988909229,\n        \"uuid\": \"BB29034B-4132-4DB7-B5FA-06D7C9842164.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"JamesKennedy@intelnet.net.gt\",\n        \"to\": \"\\\"Morgan\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Johanna\\\" <JamesKennedy@intelnet.net.gt>\",\n        \"cc\": \"\",\n        \"subject\": \"Earn $500 daily  - its easy!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 58,\n                \"mode\": \"inbound\",\n                \"title\": \"Get Rich\",\n                \"description\": \"Business opportunities, work at home offers, mlm, get rich on eBay, etc.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T15:28:25.000Z\"\n    },\n    {\n        \"id\": 1988872203,\n        \"uuid\": \"4D05BB49-4FBE-4F77-8A07-65D850560B5B.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+9360667-c4fa-charles=mpdemo.net@em8737.fastcompany.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"Fast Company Compass <compass@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"7 books to help you be a better leader in 2020\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T14:49:22.000Z\"\n    },\n    {\n        \"id\": 1988872469,\n        \"uuid\": \"7575CF14-8901-4173-8505-2AFBA01A5488.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+9360667-be88-carnegie=mpdemo.net@em8737.fastcompany.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"Fast Company Compass <compass@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"7 books to help you be a better leader in 2020\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T14:49:22.000Z\"\n    },\n    {\n        \"id\": 1988825679,\n        \"uuid\": \"06F1C5B0-ED91-4D44-84BE-782E1FBEC39F.1\",\n        \"address\": \"david@mpdemo.net\",\n        \"recipients\": [\n            \"david@mpdemo.net\"\n        ],\n        \"sender\": \"mail.jvwlcewiysdqkeyypyfob@edt.computerworld.com\",\n        \"to\": \"david@mpdemo.net\",\n        \"from\": \"Computerworld Online Resources <online@edt.computerworld.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Why you should be using low-code for app dev and how to get started.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 9635,\n            \"name\": \"david\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T14:02:06.000Z\"\n    },\n    {\n        \"id\": 1988804164,\n        \"uuid\": \"4E45D1FC-215B-4A57-9330-BE624EE92497.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"CharlesBailey@fiberlink.net.br\",\n        \"to\": \"\\\"Patricia\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Kaitlyn\\\" <CharlesBailey@fiberlink.net.br>\",\n        \"cc\": \"\",\n        \"subject\": \"Viagra Brand inspires! Strengther your love power now!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T13:40:23.000Z\"\n    },\n    {\n        \"id\": 1988799167,\n        \"uuid\": \"CD8C9762-2333-434E-BA52-A1F7382A67B4.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-alkppymmlhphndmtpypnmhtshtplyhnlhpvvhcy@srnemail.com\",\n        \"to\": \"\\\"192.88.135.9 SRNNews.com Newsletter Popup\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"Bill Bennett's American Patriot's Daily Almanac\\n <members@srnemail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Thomas Paine Publishes Common Sense\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 540\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T13:36:29.000Z\"\n    },\n    {\n        \"id\": 1988791616,\n        \"uuid\": \"BB1A2080-29BC-4CAD-9DBD-F0502584362A.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"AdamMorgan@tinsethcpa.com\",\n        \"to\": \"\\\"Everlee\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Regina\\\" <AdamMorgan@tinsethcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Cialis Soft Tabs - the best friend of man. Try it, you like it!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 980\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 25,\n                \"mode\": \"inbound\",\n                \"title\": \"Policy Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T13:30:29.000Z\"\n    },\n    {\n        \"id\": 1988758174,\n        \"uuid\": \"870BED74-D173-4A12-9D0E-35111C68ED37.1\",\n        \"address\": \"porn@mpdemo.net\",\n        \"recipients\": [\n            \"porn@mpdemo.net\"\n        ],\n        \"sender\": \"CarlMoore@tinamcmahancpa.com\",\n        \"to\": \"\\\"Ashlynn\\\" <porn@mpdemo.net>\",\n        \"from\": \"\\\"Leanna\\\" <CarlMoore@tinamcmahancpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"can you be free tomorrow\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1185169,\n            \"name\": \"porn\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T12:59:18.000Z\"\n    },\n    {\n        \"id\": 1988752392,\n        \"uuid\": \"7E0C11C6-287E-4EF2-A117-CF99984ECE0E.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"mifjinformative@valleylanesmidland.com\",\n        \"to\": \"Brett <brett@mpdemo.net>\",\n        \"from\": \"Celestine B. <mifjinformative@valleylanesmidland.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Hi, my name is Anna, I am an engineer.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 33,\n                \"mode\": \"inbound\",\n                \"title\": \"Junk\",\n                \"description\": \"This message contained content matching our junk email heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 17,\n                \"mode\": \"inbound\",\n                \"title\": \"Abused Legit Spam Domain\",\n                \"description\": \"The message contained a link to an abused domain reported with abused legit spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 61,\n                \"mode\": \"inbound\",\n                \"title\": \"Porn/Adult\",\n                \"description\": \"Pornography, Dating, 'organ' augmentation.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T12:54:07.000Z\"\n    },\n    {\n        \"id\": 1988712980,\n        \"uuid\": \"3E748884-0EB9-404F-BE85-64877C9F558B.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-vhfvmfvykjgnkyyyvknfhjmhjfhrrnbfctkbbj@townhallmail.com\",\n        \"to\": \"\\\"Friend\\\" <charles@mpdemo.net>\",\n        \"from\": \"Jonathan Garthwaite <THeditor@TownHallmail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Townhall Daily - Jan 09 - Kurt  Schlichter,Victor Davis Hanson,Derek Hunter,John Stossel,Todd Starnes and More\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T12:12:55.000Z\"\n    },\n    {\n        \"id\": 1988704856,\n        \"uuid\": \"96997535-BE66-4015-8254-4F5AFDAC1FF5.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"NatIvesWSJ-xurtkiy1yhtjkjkulu1d@cmail19.com\",\n        \"to\": \"\\\"carnegie@mpdemo.net\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"\\\"Nat Ives, WSJ\\\" <access@interactive.wsj.com>\",\n        \"cc\": \"\",\n        \"subject\": \"CMO Today: Teen Vogue’s Facebook Ad\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T12:03:31.000Z\"\n    },\n    {\n        \"id\": 1988672581,\n        \"uuid\": \"1BDE0031-2FA5-490B-AE18-2E571C4961D6.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016f8a155aca-1176c4c5-d477-4cb9-a806-e990165274ba-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Trump to move to exempt some major pipeline, drilling and other projects from environmental review\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T11:34:12.000Z\"\n    },\n    {\n        \"id\": 1988669207,\n        \"uuid\": \"B09DD187-79F8-41B9-ABF4-EFA3F78759FB.1\",\n        \"address\": \"codye.test@mpdemo.net\",\n        \"recipients\": [\n            \"codye.test@mpdemo.net\"\n        ],\n        \"sender\": \"delivery_20200109063141.19112781.3470502@bounce.theskimm.com\",\n        \"to\": \"codye.test@mpdemo.net\",\n        \"from\": \"theSkimm <dailyskimm@morning7.theskimm.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Daily Skimm: And we'll never be royals\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1187359,\n            \"name\": \"codye.test\"\n        },\n        \"user_group\": null,\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": null,\n        \"provider\": null,\n        \"message_date\": \"2020-01-09T11:31:41.000Z\"\n    },\n    {\n        \"id\": 1988656267,\n        \"uuid\": \"32E5D4DC-C018-4EFE-ABA9-C071CEF4B591.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"JerrySmith@opensvit.ua\",\n        \"to\": \"\\\"Laila\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Itzel\\\" <JerrySmith@opensvit.ua>\",\n        \"cc\": \"\",\n        \"subject\": \"Wild adventures all night long. Kamagra Oral Jelly.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T11:18:52.000Z\"\n    },\n    {\n        \"id\": 1988641078,\n        \"uuid\": \"5229D5CE-F9EA-4D30-A48C-6D438AD1F452.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016f89f9d206-4a814a3d-9ab8-4645-9a46-6426d7c1bff8-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Facebook won’t limit how politicians target ads or lie to voters under new rules\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T11:04:08.000Z\"\n    },\n    {\n        \"id\": 1988639171,\n        \"uuid\": \"9ECF91AB-F033-403C-814D-69487FE19D5D.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-63_HTML-328761131-3155861-7219217-238@bounce.aaas.sciencepubs.org\",\n        \"to\": \"<carnegie@mpdemo.net>\",\n        \"from\": \"\\\"News from Science\\\" <alerts@aaas.sciencepubs.org>\",\n        \"cc\": \"\",\n        \"subject\": \"How many of our comets come from alien solar systems?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 360\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T11:01:45.000Z\"\n    },\n    {\n        \"id\": 1988632253,\n        \"uuid\": \"E12D3F6D-9B3F-4791-A97C-EC6B8836D965.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"BobbyPerkins@tomwalshcpa.com\",\n        \"to\": \"\\\"Veronique\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Barbara\\\" <BobbyPerkins@tomwalshcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Cialis Professional. More than effectual medication!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 960\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T10:51:52.000Z\"\n    },\n    {\n        \"id\": 1988605152,\n        \"uuid\": \"6BA215C4-F0AB-4587-A337-265D175BDF24.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"ruifcontrol@woodley.org\",\n        \"to\": \"Brett <brett@mpdemo.net>\",\n        \"from\": \"Gilbertina I. Newsham <ruifcontrol@woodley.org>\",\n        \"cc\": \"\",\n        \"subject\": \"I am an interesting and not boring girl\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 25,\n                \"mode\": \"inbound\",\n                \"title\": \"Policy Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 36,\n                \"mode\": \"inbound\",\n                \"title\": \"Junk URL\",\n                \"description\": \"This message contained content matching our junk URL heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 17,\n                \"mode\": \"inbound\",\n                \"title\": \"Abused Legit Spam Domain\",\n                \"description\": \"The message contained a link to an abused domain reported with abused legit spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T10:10:38.000Z\"\n    },\n    {\n        \"id\": 1988604236,\n        \"uuid\": \"D318C6EC-E0E6-405F-AC22-F6986A771C94.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-dpsmmrttjcmcfhtdmrcftcdscmrgggfjcmllcbr@srnemail.com\",\n        \"to\": \"\\\"192.88.135.9 SRNNews.com Newsletter Popup\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"Daybreak Insider <members@srnemail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"States Seek to Stop Boys from Competing as Girls\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 540\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T10:09:05.000Z\"\n    },\n    {\n        \"id\": 1988597277,\n        \"uuid\": \"CB6ED0DC-351B-4DB3-8DD2-25E0E0A3A8A8.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"AlbertCooper@tihcpa.com\",\n        \"to\": \"\\\"Everly\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Angie\\\" <AlbertCooper@tihcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Get pure enjoyment. Use Cialis.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T09:54:56.000Z\"\n    },\n    {\n        \"id\": 1988579308,\n        \"uuid\": \"6CA0D516-BB56-487C-9090-2F3BEBDE5574.1\",\n        \"address\": \"ben@mpdemo.net\",\n        \"recipients\": [\n            \"ben@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+20995-d3ee-ben=mpdemo.net@em954.selling-greenville.com\",\n        \"to\": \"ben@mpdemo.net\",\n        \"from\": \"Marcus Wondracek <marcus@selling-greenville.com>\",\n        \"cc\": \"\",\n        \"subject\": \"433 Hilburn Way, Simpsonville, SC\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 9634,\n            \"name\": \"ben\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T09:16:55.000Z\"\n    },\n    {\n        \"id\": 1988576032,\n        \"uuid\": \"C09A4282-BAAB-41D8-9530-7FFB04A47B6E.1\",\n        \"address\": \"porn@mpdemo.net\",\n        \"recipients\": [\n            \"porn@mpdemo.net\"\n        ],\n        \"sender\": \"WillieMoore@totsona.com\",\n        \"to\": \"\\\"Angie\\\" <porn@mpdemo.net>\",\n        \"from\": \"\\\"Yareli\\\" <WillieMoore@totsona.com>\",\n        \"cc\": \"\",\n        \"subject\": \"It's incredibly confusing and drives me on simultaneously. Watch until I removed it from the access.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 980\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1185169,\n            \"name\": \"porn\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T09:09:48.000Z\"\n    },\n    {\n        \"id\": 1988570094,\n        \"uuid\": \"E7F1C478-3164-453D-9C34-CEC5DF41CF9D.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"tddewdrop@aero-data.com\",\n        \"to\": \"Brett <brett@mpdemo.net>\",\n        \"from\": \"Mrs. Carmita Preast <tddewdrop@aero-data.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Let’s make our life beautiful and adore it together.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 3,\n                \"mode\": \"inbound\",\n                \"title\": \"ISP Helo\",\n                \"description\": \"The HELO value used was from an ISP.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 36,\n                \"mode\": \"inbound\",\n                \"title\": \"Junk URL\",\n                \"description\": \"This message contained content matching our junk URL heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 13,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam Domain\",\n                \"description\": \"The message contained a link to a spam domain.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 61,\n                \"mode\": \"inbound\",\n                \"title\": \"Porn/Adult\",\n                \"description\": \"Pornography, Dating, 'organ' augmentation.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T08:59:04.000Z\"\n    },\n    {\n        \"id\": 1988469746,\n        \"uuid\": \"8437E6DB-EC79-4272-ACE7-049B2A5D9E1C.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"PeterBrown@toftnesscpa.com\",\n        \"to\": \"\\\"Madison\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Jennifer\\\" <PeterBrown@toftnesscpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"It's incredibly confusing and drives me on simultaneously. Watch until I removed it from the access.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T04:15:07.000Z\"\n    },\n    {\n        \"id\": 1988411187,\n        \"uuid\": \"DA4F5B9B-5760-410F-9564-7AA41951C612.1\",\n        \"address\": \"porn@mpdemo.net\",\n        \"recipients\": [\n            \"porn@mpdemo.net\"\n        ],\n        \"sender\": \"HenryJohnson@timoneillcpa.com\",\n        \"to\": \"\\\"Julia\\\" <porn@mpdemo.net>\",\n        \"from\": \"\\\"Dahlia\\\" <HenryJohnson@timoneillcpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"You can make it all! Levitra Soft.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1185169,\n            \"name\": \"porn\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T01:31:24.000Z\"\n    },\n    {\n        \"id\": 1988405709,\n        \"uuid\": \"CBA20042-CE3B-4381-87C0-C1D01D08D01E.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"v-bfkcnog_fjcackpmfo_gcpinabi_gcpinabi_a@bounce.e.theatlantic.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Atlantic <newsletters@theatlantic.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Americans still aren't rallying behind Trump on Iran\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 360\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T01:16:59.000Z\"\n    },\n    {\n        \"id\": 1988381908,\n        \"uuid\": \"D8AE728D-33BD-407E-A842-04A59828F5AB.1\",\n        \"address\": \"porn@mpdemo.net\",\n        \"recipients\": [\n            \"porn@mpdemo.net\"\n        ],\n        \"sender\": \"PaulRobinson@triolan.net\",\n        \"to\": \"\\\"Grace\\\" <porn@mpdemo.net>\",\n        \"from\": \"\\\"Tiffany\\\" <PaulRobinson@triolan.net>\",\n        \"cc\": \"\",\n        \"subject\": \"Get your fantastic pleasures. Buy Levitra.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 63,\n                \"mode\": \"inbound\",\n                \"title\": \"Snake Oil\",\n                \"description\": \"Online pharmacies, hgh, viagra, weight loss, no prescription needed.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1185169,\n            \"name\": \"porn\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T00:21:50.000Z\"\n    },\n    {\n        \"id\": 1988377354,\n        \"uuid\": \"02C31EA4-A692-4A26-AC55-68AB73927FCB.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"v-bfkcnip_fjcackpmfo_gcpillab_gcpillab_a@bounce.e.theatlantic.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Atlantic Politics <politicsdaily@theatlantic.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Will Trump take the high road?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T00:11:48.000Z\"\n    },\n    {\n        \"id\": 1988313403,\n        \"uuid\": \"C5AA67BF-07E6-47EE-B391-99F8B1050E27.1\",\n        \"address\": \"porn@mpdemo.net\",\n        \"recipients\": [\n            \"porn@mpdemo.net\"\n        ],\n        \"sender\": \"MikeSmith@vnstr.net\",\n        \"to\": \"\\\"Laura\\\" <porn@mpdemo.net>\",\n        \"from\": \"\\\"Olivia\\\" <MikeSmith@vnstr.net>\",\n        \"cc\": \"\",\n        \"subject\": \"There's a lot of bright stripes in life with Viagra Super Force.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 24,\n                \"mode\": \"inbound\",\n                \"title\": \"Exploits Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 23,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamhaus Block List\",\n                \"description\": \"This message came from an IP that is on the Spamhaus Block List.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1185169,\n            \"name\": \"porn\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T22:03:10.000Z\"\n    },\n    {\n        \"id\": 1988295023,\n        \"uuid\": \"9733A427-1D0C-4340-8481-A83E7A3BD8F1.1\",\n        \"address\": \"porn@mpdemo.net\",\n        \"recipients\": [\n            \"porn@mpdemo.net\"\n        ],\n        \"sender\": \"HenryMorgan@tommyscateringpa.com\",\n        \"to\": \"\\\"Zaria\\\" <porn@mpdemo.net>\",\n        \"from\": \"\\\"Juniper\\\" <HenryMorgan@tommyscateringpa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Kamagra Brand Oral Jelly - best ED medication. Cheaper now!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1185169,\n            \"name\": \"porn\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T21:29:33.000Z\"\n    },\n    {\n        \"id\": 1988285415,\n        \"uuid\": \"B9C468A0-C89B-40C3-9BBA-F613C22C65BE.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016f87011e46-cc24048e-f310-44c7-9893-e4974f6256f5-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Pelosi says House will vote Thursday on measure to limit Trump's military actions regarding Iran\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T21:13:15.000Z\"\n    },\n    {\n        \"id\": 1988281473,\n        \"uuid\": \"BA8095BA-95A3-4542-8F1D-A63BCA9C17DE.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"WSJcomEditors-xurtkll1jlddjdhka1d@cmail20.com\",\n        \"to\": \"\\\"carnegie@mpdemo.net\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"\\\"WSJ.com Editors\\\" <access@interactive.wsj.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Opinion: Best of the Web - A Reagan Revival in Trump’s Foreign Policy?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T21:07:18.000Z\"\n    },\n    {\n        \"id\": 1988280486,\n        \"uuid\": \"48BDDBF5-94DC-4CA9-8110-A6070781307C.1\",\n        \"address\": \"brett@mpdemo.net\",\n        \"recipients\": [\n            \"brett@mpdemo.net\"\n        ],\n        \"sender\": \"AlanScott@ufanet.ru\",\n        \"to\": \"\\\"Sunny\\\" <brett@mpdemo.net>\",\n        \"from\": \"\\\"Avah\\\" <AlanScott@ufanet.ru>\",\n        \"cc\": \"\",\n        \"subject\": \"can we schedule an appointment for the weekend?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1139911,\n            \"name\": \"*\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T21:06:10.000Z\"\n    },\n    {\n        \"id\": 1988279850,\n        \"uuid\": \"DEC2CE14-F1CA-4355-9575-4CB6C42636C4.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounceback@e.media.bloomberg.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"Bloomberg\\\" <subscriptions@media.bloomberg.com>\",\n        \"cc\": \"\",\n        \"subject\": \"New Year, new deal: Subscribe for just $1.99\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T21:05:12.000Z\"\n    },\n    {\n        \"id\": 1988275241,\n        \"uuid\": \"8BE01A59-DC69-47F5-B46C-DFA2E7F1E18A.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-mc.us2_6180498.1359255-292075e50a@mail1.davenetics.com\",\n        \"to\": \"<carnegie@mpdemo.net>\",\n        \"from\": \"=?utf-8?Q?NextDraft?= <dave@davenetics.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Flame War\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T20:57:31.000Z\"\n    },\n    {\n        \"id\": 1988264493,\n        \"uuid\": \"55A73FDF-B408-4582-9546-7622C34BBD60.1\",\n        \"address\": \"porn@mpdemo.net\",\n        \"recipients\": [\n            \"porn@mpdemo.net\"\n        ],\n        \"sender\": \"BrianPeterson@toscanapa.com\",\n        \"to\": \"\\\"Isla\\\" <porn@mpdemo.net>\",\n        \"from\": \"\\\"Addison\\\" <BrianPeterson@toscanapa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"remember the weekend?\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 1000\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 11,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send but is in transition\\t.\",\n                \"weight\": 100\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 170,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (From)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 34,\n                \"mode\": \"inbound\",\n                \"title\": \"Spam\",\n                \"description\": \"This message contained content matching our spam heuristics.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 1185169,\n            \"name\": \"porn\"\n        },\n        \"user_group\": {\n            \"id\": 20350,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T20:43:19.000Z\"\n    },\n    {\n        \"id\": 1988250964,\n        \"uuid\": \"C5E16916-10E3-44A5-9274-A38ECB8DA2E8.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-dpgpstpjrdmfrjjjghftcdsctrcpjfktbnrkkd@townhallmail.com\",\n        \"to\": \"\\\"Friend\\\" <charles@mpdemo.net>\",\n        \"from\": \"Jonathan Garthwaite <THeditor@TownHallmail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Trump Declares Victory Over Iran\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T20:22:26.000Z\"\n    },\n    {\n        \"id\": 1988184786,\n        \"uuid\": \"4DC0CC28-78F7-4C6A-9907-E100018B97D0.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce@tech.channelfutures.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"Tara Pollak\\\" <ChannelFutures@tech.channelfutures.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Your 2020 Security Checklist\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"Different User Group Name\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-08T19:01:03.000Z\"\n    }\n]"}],"_postman_id":"a59feed9-5b4d-49f0-af20-e4e10746d783"},{"name":"Release Message","id":"0c4d9f61-3fb8-4da1-bfc7-5fb4b7eb3923","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}"},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver","description":"<p>Release a message from the quarantine. The <code>recipients</code> field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","messages","{{message_id}}","deliver"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"1d9cffa7-8cc6-40de-ae77-696673089504","name":"Release Message","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e630abe8-ad9d-4ede-9c68-e88a74e273c7"},{"key":"X-Runtime","value":"1.371039"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0c4d9f61-3fb8-4da1-bfc7-5fb4b7eb3923"},{"name":"Release Multiple Messages","id":"88545f21-f3aa-45e0-921d-72953520415b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/messages/deliver_many","description":"<p>Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing <code>all_selected: true</code> will release all currently held messages from a domain's quarantine. </p>\n<p><strong>Note</strong>: 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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","messages","deliver_many"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"dad10c23-80ec-4c37-8709-48f78283933d","name":"Release Multiple Messages","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/messages/deliver_many"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f602713b4241cb2e3030443e7df8e91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e5ca6bef-d2ff-4a98-9fa5-6047f1b8fd0c"},{"key":"X-Runtime","value":"1.059916"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"delivered_messages\": [\n        2015573173,\n        2015573567\n    ]\n}"}],"_postman_id":"88545f21-f3aa-45e0-921d-72953520415b"}],"id":"12653c4b-5c16-4a5a-824f-85abe7d9f1aa","_postman_id":"12653c4b-5c16-4a5a-824f-85abe7d9f1aa","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"User Syncs","item":[{"name":"User Sync Schedules","item":[{"name":"User Sync Schedule","id":"05fdf51e-3b36-40b8-84ae-9e3331796625","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule","description":"<p>Get a user sync schedule for a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","user_sync_schedule"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"5648fdcb-5730-4e98-9898-74f0bad3e856","name":"User Sync Schedule","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/102/user_sync_schedule"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"c3e317a58b37260f188fdeea18a90ebd\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"9cced8cf-3ae9-425e-9f62-9b995a6fa716"},{"key":"X-Runtime","value":"3.487420"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 370,\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"interval\": 60,\n    \"enabled\": true,\n    \"last_run_at\": \"2020-01-09T22:19:05.000Z\",\n    \"next_run_at\": \"2020-01-09T23:19:05.000Z\"\n}"}],"_postman_id":"05fdf51e-3b36-40b8-84ae-9e3331796625"},{"name":"Update User Sync Schedule","id":"f83880e1-3f20-4149-af91-3dc12de6d85c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"interval\": 30,\n\t\"enabled\": true\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule","description":"<p>Update a domain's user sync schedule. The <code>interval</code> is used to calculate the minutes between user syncs.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","user_sync_schedule"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"3deacb6e-25fb-43b7-b0ef-f75999a7dbea","name":"Update User Sync Schedule","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"interval\": 30,\n\t\"enabled\": true\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_sync_schedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/102/user_sync_schedule"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"765069aa1558d360557ee9442e7c32af\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"fddbbe6a-da19-4ea0-8b8c-cda7ca0ef87f"},{"key":"X-Runtime","value":"0.661128"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 370,\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"interval\": 30,\n    \"enabled\": true,\n    \"last_run_at\": \"2020-01-09T22:19:05.000Z\",\n    \"next_run_at\": \"2020-01-09T23:19:05.000Z\"\n}"}],"_postman_id":"f83880e1-3f20-4149-af91-3dc12de6d85c"}],"id":"ee09ff1b-52b1-469b-8a0f-d21cdd0d79e5","_postman_id":"ee09ff1b-52b1-469b-8a0f-d21cdd0d79e5","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"User Sync Filters","item":[{"name":"User Sync Filters","id":"936b39de-68f7-4afc-9145-66133146407d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters","description":"<p>Get a list of user sync filters belonging to a particular user sync.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_syncs","{{user_sync_id}}","filters"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"307760cd-c102-45d2-bd24-25c3030d15e9","name":"User Sync Filters","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"71e5f1e7b30966048af8f9d94e40059c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"31ce77fc-0a8f-4edf-bfc1-56ee67348336"},{"key":"X-Runtime","value":"6.850352"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2820,\n        \"field\": \"Department\",\n        \"value\": \"Accounting\",\n        \"filter_group\": \"all\",\n        \"comparison_type\": {\n            \"id\": 1,\n            \"name\": \"equals\"\n        }\n    },\n    {\n        \"id\": 2841,\n        \"field\": \"userprincipalname\",\n        \"value\": \"value\",\n        \"filter_group\": \"any\",\n        \"comparison_type\": {\n            \"id\": 1,\n            \"name\": \"equals\"\n        }\n    }\n]"}],"_postman_id":"936b39de-68f7-4afc-9145-66133146407d"},{"name":"User Sync Filter","id":"ea3cb980-a372-4240-b51d-5bf8639715f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}","description":"<p>Get a user sync filter by its ID</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_sync_filters","{{user_sync_filter_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"5e02248f-9b70-48bb-9590-bd60ef4f933e","name":"User Sync Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_syncs/2820/filters"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e7fcde3599dba0d4e0901fc269a57cef\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"84610078-d063-4e85-9dfd-14cc2c0da6ba"},{"key":"X-Runtime","value":"2.353154"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2820,\n    \"field\": \"Department\",\n    \"value\": \"Accounting\",\n    \"filter_group\": \"all\",\n    \"comparison_type\": {\n        \"id\": 1,\n        \"name\": \"equals\"\n    }\n}"}],"_postman_id":"ea3cb980-a372-4240-b51d-5bf8639715f8"},{"name":"Create User Sync Filter","id":"63bf5a6e-40b5-47aa-9364-2356db7f0baa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"field\": \"userprincipalname\",\n\t\"value\": \"value\",\n\t\"filter_group\": \"any\",\n\t\"comparison_type_id\": 1\n}"},"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters","description":"<p>Create a user sync filter.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Comparison Type ID</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Equals</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Does not equal</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Greater than</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Less Than</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Contains</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Does not contain</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Matches</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Does not match</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_syncs","{{user_sync_id}}","filters"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"117b7ef5-d572-4500-abdc-947075658490","name":"Create User Sync Filter","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"field\": \"userprincipalname\",\n\t\"value\": \"value\",\n\t\"filter_group\": \"any\",\n\t\"comparison_type_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}/filters"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f78cef3664b945b179112248f0a2b1e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d32e2f11-2f1c-4194-9f19-36318cba874b"},{"key":"X-Runtime","value":"0.861734"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2842,\n    \"field\": \"userprincipalname\",\n    \"value\": \"value\",\n    \"filter_group\": \"any\",\n    \"comparison_type\": {\n        \"id\": 1,\n        \"name\": \"equals\"\n    }\n}"}],"_postman_id":"63bf5a6e-40b5-47aa-9364-2356db7f0baa"},{"name":"Delete User Sync Filter","id":"97c5d678-d599-4752-bb0e-0f340800d5d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}","description":"<p>Remove a user sync filter from a user sync. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_sync_filters","{{user_sync_filter_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"28ac2afd-98f7-418b-b757-ef0d67523c44","name":"Delete User Sync Filter","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_sync_filters/{{user_sync_filter_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"59edff1f-b988-4f88-95cb-477150f7c563"},{"key":"X-Runtime","value":"5.992195"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"97c5d678-d599-4752-bb0e-0f340800d5d1"}],"id":"4a557cfd-1a95-4e95-b461-c45756e80a0b","_postman_id":"4a557cfd-1a95-4e95-b461-c45756e80a0b","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Domain User Syncs","id":"2c483a5f-1093-4e6f-aa54-b2c5ec80eece","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_syncs","description":"<p>Get a list of user syncs belonging to a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","user_syncs"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"fc9ccee5-80a7-43b3-81c9-bc5695252450","name":"Domain User Syncs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_syncs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"eb8f26d5578f30a018c92f17ed49be20\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"37fc5ccc-3b64-4124-b916-da803882efcc"},{"key":"X-Runtime","value":"4.435091"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 3229,\n        \"name\": \"Active Directory\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"destination_user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"source_type\": \"UserSync::LdapSource\",\n        \"source\": {\n            \"id\": 1138,\n            \"host\": null,\n            \"port\": null,\n            \"usersname\": null,\n            \"password\": null,\n            \"search_base\": null,\n            \"use_ssl\": false\n        },\n        \"filters\": [\n            {\n                \"id\": 2820,\n                \"field\": \"Department\",\n                \"value\": \"Accounting\",\n                \"comparison_type\": 1\n            }\n        ],\n        \"alive\": true,\n        \"priority\": null,\n        \"enabled\": false\n    }\n]"}],"_postman_id":"2c483a5f-1093-4e6f-aa54-b2c5ec80eece"},{"name":"Get User Sync","id":"124811bc-899e-490c-9143-9c1ba3f9b78a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}","description":"<p>Get a single user sync using its ID.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_syncs","{{user_sync_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"1693360e-9ac9-422b-a4bb-6e1f5866974c","name":"Get User Sync","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_syncs/3229"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"34c29f7dcd0a599b1760907d41acfcf1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"9fe1f37e-e876-49cd-9683-65ee7aabb7d4"},{"key":"X-Runtime","value":"2.910249"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3229,\n    \"name\": \"Active Directory\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"destination_user_group\": {\n        \"id\": 109,\n        \"name\": \"CloudMail with Bracket\"\n    },\n    \"source_type\": \"UserSync::LdapSource\",\n    \"source\": {\n        \"id\": 1138,\n        \"host\": null,\n        \"port\": null,\n        \"usersname\": null,\n        \"password\": null,\n        \"search_base\": null,\n        \"use_ssl\": false\n    },\n    \"filters\": [\n        {\n            \"id\": 2820,\n            \"field\": \"Department\",\n            \"value\": \"Accounting\",\n            \"comparison_type\": 1\n        }\n    ],\n    \"alive\": true,\n    \"priority\": null,\n    \"enabled\": false\n}"}],"_postman_id":"124811bc-899e-490c-9143-9c1ba3f9b78a"},{"name":"Create User Sync","id":"7e4fe0a5-98da-43cd-afca-8b2c8022e946","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"destination_user_group_id\": 109,\n\t\"source_type\": \"UserSync::LdapSource\",\n\t\"enabled\": \"true\",\n\t\"source\": {\n\t\t\"host\": \"host.com\",\n\t\t\"port\": \"389\",\n\t\t\"use_ssl\": \"false\",\n\t\t\"username\": \"username\",\n\t\t\"password\": \"password\",\n\t\t\"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\"\n\t}\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_syncs","description":"<p>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 <code>enabled: \"true\"</code> is passed in the payload.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Source Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserSync::LdapSource</td>\n<td>Ldap source.</td>\n</tr>\n<tr>\n<td>UserSync::GoogleSource</td>\n<td>GSuite source. Not available through the API. Must be provisioned through the web console.</td>\n</tr>\n<tr>\n<td>UserSync::MicrosoftGraphSource</td>\n<td>Microsoft Office365 source. Not available through the API. Must be provisioned through the web console.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","user_syncs"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"f8db0707-8f02-4674-b8bf-3161c2af4f48","name":"Create User Sync","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"destination_user_group_id\": 109,\n\t\"source_type\": \"UserSync::LdapSource\",\n\t\"enabled\": \"true\",\n\t\"source\": {\n\t\t\"host\": \"host.com\",\n\t\t\"port\": \"389\",\n\t\t\"use_ssl\": \"false\",\n\t\t\"username\": \"username\",\n\t\t\"password\": \"password\",\n\t\t\"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_syncs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_syncs/3279"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"f52a7209bdffd2a64232ba4465f36f19\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"21526cc1-b52a-4f68-b008-a0cd642640c3"},{"key":"X-Runtime","value":"0.732769"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3279,\n    \"name\": \"Active Directory\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"destination_user_group\": {\n        \"id\": 109,\n        \"name\": \"CloudMail with Bracket\"\n    },\n    \"source_type\": \"UserSync::LdapSource\",\n    \"source\": {\n        \"id\": 1156,\n        \"host\": \"host.com\",\n        \"port\": \"389\",\n        \"usersname\": \"username\",\n        \"password\": \"password\",\n        \"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\",\n        \"use_ssl\": false\n    },\n    \"filters\": [],\n    \"alive\": true,\n    \"priority\": null,\n    \"enabled\": true\n}"}],"_postman_id":"7e4fe0a5-98da-43cd-afca-8b2c8022e946"},{"name":"Update User Sync","id":"45c3ecc5-8f48-4886-9476-1a638eeee4bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"destination_user_group_id\": 19543,\n\t\"source_type\": \"UserSync::LdapSource\",\n\t\"enabled\": true,\n\t\"source\": {\n\t\t\"host\": \"new-host.com\",\n\t\t\"port\": \"389\",\n\t\t\"use_ssl\": \"false\",\n\t\t\"username\": \"username\",\n\t\t\"password\": \"password\",\n\t\t\"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\"\n\t}\n}"},"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}","description":"<p>Update an existing user sync. Accepts the same parameters as creating a user sync.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_syncs","{{user_sync_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"291a34b3-8000-4568-ae06-4980781565ea","name":"Update User Sync","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"destination_user_group_id\": 19543,\n\t\"source_type\": \"UserSync::LdapSource\",\n\t\"enabled\": false,\n\t\"source\": {\n\t\t\"host\": \"new-host.com\",\n\t\t\"port\": \"389\",\n\t\t\"use_ssl\": \"false\",\n\t\t\"username\": \"username\",\n\t\t\"password\": \"password\",\n\t\t\"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_syncs/3229"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"4f83bba5a66485bfe7c8aaaf95f2bf0e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"dc5d64b1-9c22-4377-95dc-75efdeeb2970"},{"key":"X-Runtime","value":"0.534408"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3229,\n    \"name\": \"Active Directory\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"destination_user_group\": {\n        \"id\": 19543,\n        \"name\": \"Continuity Bundle (CloudFilter + XtraMail)\"\n    },\n    \"source_type\": \"UserSync::LdapSource\",\n    \"source\": {\n        \"id\": 1138,\n        \"host\": \"new-host.com\",\n        \"port\": \"389\",\n        \"usersname\": \"username\",\n        \"password\": \"password\",\n        \"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\",\n        \"use_ssl\": false\n    },\n    \"filters\": [\n        {\n            \"id\": 2820,\n            \"field\": \"Department\",\n            \"value\": \"Accounting\",\n            \"comparison_type\": 1\n        }\n    ],\n    \"alive\": true,\n    \"priority\": null,\n    \"enabled\": false\n}"},{"id":"dde19d81-04e2-4a9e-9413-ab4f39165ff3","name":"Update User Sync","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"destination_user_group_id\": 19543,\n\t\"source_type\": \"UserSync::LdapSource\",\n\t\"enabled\": true,\n\t\"source\": {\n\t\t\"host\": \"new-host.com\",\n\t\t\"port\": \"389\",\n\t\t\"use_ssl\": \"false\",\n\t\t\"username\": \"username\",\n\t\t\"password\": \"password\",\n\t\t\"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_syncs/3229"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"c39d56d4a74fbd8cebe2977653aa889c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3ace27f4-34d7-431a-af19-3719d09e9f7b"},{"key":"X-Runtime","value":"0.457927"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3229,\n    \"name\": \"Active Directory\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"destination_user_group\": {\n        \"id\": 19543,\n        \"name\": \"Continuity Bundle (CloudFilter + XtraMail)\"\n    },\n    \"source_type\": \"UserSync::LdapSource\",\n    \"source\": {\n        \"id\": 1138,\n        \"host\": \"new-host.com\",\n        \"port\": \"389\",\n        \"usersname\": \"username\",\n        \"password\": \"password\",\n        \"search_base\": \"dc=MAILPROTECTOR,dc=local, OU=OrgUnit\",\n        \"use_ssl\": false\n    },\n    \"filters\": [\n        {\n            \"id\": 2820,\n            \"field\": \"Department\",\n            \"value\": \"Accounting\",\n            \"comparison_type\": 1\n        }\n    ],\n    \"alive\": true,\n    \"priority\": null,\n    \"enabled\": true\n}"}],"_postman_id":"45c3ecc5-8f48-4886-9476-1a638eeee4bb"},{"name":"Delete User Sync","id":"3ec55519-f274-4fb0-9c56-b4127c111fd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}","description":"<p>Delete a user sync.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_syncs","{{user_sync_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"b7f96705-d5e5-46c9-a18e-d1f9d66f73ab","name":"Delete User Sync","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_syncs/{{user_sync_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f50474a3-c68e-4e85-aa0b-99fd44d0b80d"},{"key":"X-Runtime","value":"1.761101"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3ec55519-f274-4fb0-9c56-b4127c111fd0"}],"id":"b80f9ed5-a25a-44d9-b3d2-9f7bf8150bf9","_postman_id":"b80f9ed5-a25a-44d9-b3d2-9f7bf8150bf9","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Domains","event":[{"listen":"prerequest","script":{"id":"b3e7e8b0-88a2-4f19-aeeb-00d544cf1853","exec":[""],"type":"text/javascript"}}],"id":"4a201808-bec4-4519-a00e-7035505eff43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/{{entity}}/{{entity_id}}/domains","description":"<p>Get information about many domains at once. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","{{entity}}","{{entity_id}}","domains"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"c2ea6e35-968e-4369-86a7-4891744f0a2b","name":"Get Domains Under Customer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"83147d3044b2eb13359f5c8907e8f37b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5d2c3e70-8774-470a-829c-669092933788"},{"key":"X-Runtime","value":"1.260417"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 20043,\n        \"name\": \"bracket.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2017-03-08T16:07:58.000Z\",\n        \"updated_at\": \"2017-05-31T09:14:35.000Z\"\n    },\n    {\n        \"id\": 15650,\n        \"name\": \"cloudmail.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2014-07-17T21:07:53.000Z\",\n        \"updated_at\": \"2015-09-21T03:06:29.000Z\"\n    },\n    {\n        \"id\": 15288,\n        \"name\": \"cloudmail.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2014-05-23T21:53:53.000Z\",\n        \"updated_at\": \"2015-09-21T03:05:34.000Z\"\n    },\n    {\n        \"id\": 16370,\n        \"name\": \"emailservice.io\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2015-02-26T20:00:18.000Z\",\n        \"updated_at\": \"2015-09-21T03:12:31.000Z\"\n    },\n    {\n        \"id\": 17044,\n        \"name\": \"exchange2016.mpdemo.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2015-10-28T15:29:53.000Z\",\n        \"updated_at\": \"2018-08-23T03:00:33.000Z\"\n    },\n    {\n        \"id\": 17995,\n        \"name\": \"forcencrypt.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2016-06-20T19:24:05.000Z\",\n        \"updated_at\": \"2016-06-22T09:12:28.000Z\"\n    },\n    {\n        \"id\": 11744,\n        \"name\": \"getcloudfilter.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-12-27T17:37:56.000Z\",\n        \"updated_at\": \"2016-11-17T09:07:08.000Z\"\n    },\n    {\n        \"id\": 1489,\n        \"name\": \"mailprotector.biz\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:31:22.000Z\",\n        \"updated_at\": \"2018-02-19T09:00:45.000Z\"\n    },\n    {\n        \"id\": 1481,\n        \"name\": \"mailprotector.co.uk\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:29:18.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:27:24.000Z\",\n        \"updated_at\": \"2018-08-23T02:00:48.000Z\"\n    },\n    {\n        \"id\": 1477,\n        \"name\": \"mailprotector.com.au\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:28:00.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 9073,\n        \"name\": \"mailprotector.me\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2011-03-01T18:31:01.000Z\",\n        \"updated_at\": \"2016-04-28T09:04:09.000Z\"\n    },\n    {\n        \"id\": 1483,\n        \"name\": \"mailprotectorupdate.biz\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:29:25.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 1485,\n        \"name\": \"mailprotectorupdate.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:30:08.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 27614,\n        \"name\": \"newdomain2.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 1,\n            \"name\": \"Pending\"\n        },\n        \"parent\": null,\n        \"verification_token\": \"JfqhMDi6OSOGmaTr1I/1j2KI2jQWjSl9ioy+5QPbKMA=\",\n        \"created_at\": \"2019-08-09T16:27:23.000Z\",\n        \"updated_at\": \"2019-08-09T16:27:23.000Z\"\n    },\n    {\n        \"id\": 22214,\n        \"name\": \"otransport-1.us-east-1.mailprotector.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2018-02-07T15:33:14.000Z\",\n        \"updated_at\": \"2018-02-08T09:28:21.000Z\"\n    },\n    {\n        \"id\": 15652,\n        \"name\": \"securestore.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2014-07-17T21:09:16.000Z\",\n        \"updated_at\": \"2015-09-21T03:06:29.000Z\"\n    },\n    {\n        \"id\": 15648,\n        \"name\": \"xtramail.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2014-07-17T21:03:52.000Z\",\n        \"updated_at\": \"2015-09-21T03:06:29.000Z\"\n    }\n]"},{"id":"c54ec91d-2d46-42dd-bcca-b4f890debb78","name":"Get Domains Under Reseller","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"total\":56,\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"86b13ba7966deef13b7ee2c36da9f4a8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"df79a014-dde5-4b18-b245-f92359fa9a9c"},{"key":"X-Runtime","value":"0.524596"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 8133,\n        \"name\": \"abilitymessaging.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-11-20T09:19:20.000Z\",\n        \"updated_at\": \"2015-09-23T02:39:48.000Z\"\n    },\n    {\n        \"id\": 10757,\n        \"name\": \"abilitymessaging2.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-07-12T22:38:30.000Z\",\n        \"updated_at\": \"2015-09-23T02:54:46.000Z\"\n    },\n    {\n        \"id\": 10787,\n        \"name\": \"ardo.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-07-19T13:39:47.000Z\",\n        \"updated_at\": \"2015-09-23T02:54:49.000Z\"\n    },\n    {\n        \"id\": 10789,\n        \"name\": \"ardo2.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-07-19T13:40:42.000Z\",\n        \"updated_at\": \"2015-09-23T02:54:49.000Z\"\n    },\n    {\n        \"id\": 20043,\n        \"name\": \"bracket.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2017-03-08T16:07:58.000Z\",\n        \"updated_at\": \"2017-05-31T09:14:35.000Z\"\n    },\n    {\n        \"id\": 8159,\n        \"name\": \"calelite.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-11-20T09:23:07.000Z\",\n        \"updated_at\": \"2015-09-23T02:39:49.000Z\"\n    },\n    {\n        \"id\": 10387,\n        \"name\": \"cidermill.net\",\n        \"account\": {\n            \"id\": 1987,\n            \"name\": \"OCx Networks\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-05-17T22:31:08.000Z\",\n        \"updated_at\": \"2017-05-15T09:05:45.000Z\"\n    },\n    {\n        \"id\": 9504,\n        \"name\": \"claytonodonnell.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2011-08-24T13:56:35.000Z\",\n        \"updated_at\": \"2015-09-23T02:48:01.000Z\"\n    },\n    {\n        \"id\": 15650,\n        \"name\": \"cloudmail.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2014-07-17T21:07:53.000Z\",\n        \"updated_at\": \"2015-09-21T03:06:29.000Z\"\n    },\n    {\n        \"id\": 15288,\n        \"name\": \"cloudmail.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2014-05-23T21:53:53.000Z\",\n        \"updated_at\": \"2015-09-21T03:05:34.000Z\"\n    },\n    {\n        \"id\": 9793,\n        \"name\": \"dpec-na.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-01-10T21:39:50.000Z\",\n        \"updated_at\": \"2015-09-23T02:50:30.000Z\"\n    },\n    {\n        \"id\": 9798,\n        \"name\": \"dpec-na2.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-01-11T21:56:37.000Z\",\n        \"updated_at\": \"2015-09-23T02:50:38.000Z\"\n    },\n    {\n        \"id\": 8169,\n        \"name\": \"e-inbusiness.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-11-20T09:24:36.000Z\",\n        \"updated_at\": \"2015-09-23T02:40:11.000Z\"\n    },\n    {\n        \"id\": 16370,\n        \"name\": \"emailservice.io\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2015-02-26T20:00:18.000Z\",\n        \"updated_at\": \"2015-09-21T03:12:31.000Z\"\n    },\n    {\n        \"id\": 17044,\n        \"name\": \"exchange2016.mpdemo.net\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2015-10-28T15:29:53.000Z\",\n        \"updated_at\": \"2018-08-23T03:00:33.000Z\"\n    },\n    {\n        \"id\": 17995,\n        \"name\": \"forcencrypt.email\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2016-06-20T19:24:05.000Z\",\n        \"updated_at\": \"2016-06-22T09:12:28.000Z\"\n    },\n    {\n        \"id\": 11744,\n        \"name\": \"getcloudfilter.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-12-27T17:37:56.000Z\",\n        \"updated_at\": \"2016-11-17T09:07:08.000Z\"\n    },\n    {\n        \"id\": 9859,\n        \"name\": \"hallercolvin.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-02-03T15:55:56.000Z\",\n        \"updated_at\": \"2015-09-23T02:51:00.000Z\"\n    },\n    {\n        \"id\": 9865,\n        \"name\": \"hallercolvin2.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-02-03T19:13:06.000Z\",\n        \"updated_at\": \"2015-09-23T02:51:01.000Z\"\n    },\n    {\n        \"id\": 9867,\n        \"name\": \"hallercolvin3.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2012-02-03T19:13:20.000Z\",\n        \"updated_at\": \"2015-09-23T02:51:01.000Z\"\n    },\n    {\n        \"id\": 8161,\n        \"name\": \"interflexgroup.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-11-20T09:23:25.000Z\",\n        \"updated_at\": \"2015-09-21T02:30:00.000Z\"\n    },\n    {\n        \"id\": 8163,\n        \"name\": \"interflexgroupcouk.out\",\n        \"account\": {\n            \"id\": 1945,\n            \"name\": \"Secondary Outbound holder\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-11-20T09:23:43.000Z\",\n        \"updated_at\": \"2015-09-21T02:30:00.000Z\"\n    },\n    {\n        \"id\": 1489,\n        \"name\": \"mailprotector.biz\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:31:22.000Z\",\n        \"updated_at\": \"2018-02-19T09:00:45.000Z\"\n    },\n    {\n        \"id\": 1481,\n        \"name\": \"mailprotector.co.uk\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:29:18.000Z\",\n        \"updated_at\": \"2015-09-21T02:00:54.000Z\"\n    },\n    {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\",\n        \"account\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"domain_status\": {\n            \"id\": 2,\n            \"name\": \"Active\"\n        },\n        \"parent\": null,\n        \"verification_token\": null,\n        \"created_at\": \"2010-08-23T19:27:24.000Z\",\n        \"updated_at\": \"2018-08-23T02:00:48.000Z\"\n    }\n]"}],"_postman_id":"4a201808-bec4-4519-a00e-7035505eff43"},{"name":"Domain","id":"55cd2db7-75a8-43a4-be2e-e6fa27382e87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}","description":"<p>Get information about a single domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"f271cb16-f9fa-486c-a88a-db186d28e925","name":"Get Domain By ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/102"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e83f63cc9575e0f4d96f00b2efa1d97f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"655a87cc-7fb2-469d-bd17-c18314f442c6"},{"key":"X-Runtime","value":"0.217272"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 102,\n    \"name\": \"mpdemo.net\",\n    \"account\": {\n        \"id\": 7114,\n        \"name\": \"Mailprotector Demo Customer\"\n    },\n    \"domain_status\": {\n        \"id\": 2,\n        \"name\": \"Active\"\n    },\n    \"parent\": null,\n    \"verification_token\": null,\n    \"created_at\": \"2010-01-02T00:00:00.000Z\",\n    \"updated_at\": \"2019-08-23T02:00:52.000Z\"\n}"}],"_postman_id":"55cd2db7-75a8-43a4-be2e-e6fa27382e87"},{"name":"Create Domain","id":"04f30070-96ba-41d4-8c91-248bdcb08968","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new-domain.com\"\n}"},"url":"emailservice.io/api/v1/customers/{{customer_id}}/domains","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","customers","{{customer_id}}","domains"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"56824175-ced5-4405-9baf-c7b711a3b62b","name":"Create Domain","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new-domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/domains"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/28480"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"6ca94589ee57bd10dabe5f41819f6e81\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"74dc4a16-6bcd-4559-9b1e-8455d695d170"},{"key":"X-Runtime","value":"2.400473"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 28480,\n    \"name\": \"new-domain.com\",\n    \"account\": {\n        \"id\": 329,\n        \"name\": \"Mailprotector group\"\n    },\n    \"domain_status\": {\n        \"id\": 1,\n        \"name\": \"Pending\"\n    },\n    \"parent\": null,\n    \"verification_token\": \"otFBZ1SvhceapIOOTiRxYr788GzVnY05ny0OvXyyi6Y=\",\n    \"created_at\": \"2019-12-27T21:47:02.000Z\",\n    \"updated_at\": \"2019-12-27T21:47:02.000Z\"\n}"}],"_postman_id":"04f30070-96ba-41d4-8c91-248bdcb08968"},{"name":"Create Domain Alias","id":"3b16c2e5-b79a-4cc4-afdc-3d86dabc3f43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"domain-alias.com\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/aliases","description":"<p>Create a new domain alias for a domain. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","aliases"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"1006cb22-f2f9-4efc-9c6a-1f035c726164","name":"Create Domain Alias","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"domain-alias.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/aliases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/28481/aliases"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"cffd98fdd64812632beac14c11b0d4e4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5041fe2b-f145-4841-a823-1ba0c070ffd8"},{"key":"X-Runtime","value":"12.727952"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 28481,\n    \"name\": \"domain-alias.com\",\n    \"account\": {\n        \"id\": 7114,\n        \"name\": \"Mailprotector Demo Customer\"\n    },\n    \"domain_status\": {\n        \"id\": 1,\n        \"name\": \"Pending\"\n    },\n    \"parent\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"verification_token\": \"xUA9khcFa6S6fdVAr/li0i/lXXo1wfdbvplUoBrhQ0Y=\",\n    \"created_at\": \"2019-12-30T20:09:39.000Z\",\n    \"updated_at\": \"2019-12-30T20:09:39.000Z\"\n}"}],"_postman_id":"3b16c2e5-b79a-4cc4-afdc-3d86dabc3f43"},{"name":"Move Domain","id":"1a8798fe-ca33-4152-a2d6-bd414d5ec6e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"customer_id\": 16998\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/move","description":"<p>Move a domain from one customer to another within the same reseller.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","move"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"fa70adce-a9de-4e56-82d7-1761bc083182","name":"Move Domain","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"customer_id\": 16998\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/move"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/102"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"489984d4afd9447f577469361a55a2ae\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e1f17f23-dfcf-46ff-a471-8bc4ddd22be1"},{"key":"X-Runtime","value":"28.877149"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 102,\n    \"name\": \"mpdemo.net\",\n    \"account\": {\n        \"id\": 16998,\n        \"name\": \"Test Customer 3\"\n    },\n    \"domain_status\": {\n        \"id\": 2,\n        \"name\": \"Active\"\n    },\n    \"parent\": null,\n    \"verification_token\": \"dY6sAmKzoYcZONSYtxswGZqZhPWQpa1PbrX1chJgQY4=\",\n    \"address_discovery_enabled\": true,\n    \"created_at\": \"2010-01-02T00:00:00.000Z\",\n    \"updated_at\": \"2020-01-16T17:20:30.000Z\"\n}"}],"_postman_id":"1a8798fe-ca33-4152-a2d6-bd414d5ec6e6"},{"name":"Update Domain","id":"0a8eb8d6-d02d-4047-b0e7-4a6c1a359b41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address_discovery_enabled\": false\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}","description":"<p>Update a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"0be6f228-b64d-414b-9543-dad49fc4f1ea","name":"Update Domain","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address_discovery_enabled\": false\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/domains/102"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3bdeabd62720d3eb15dabc3128ff8d27\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e4dcb52b-ffcf-4d15-9d5d-7649871f9691"},{"key":"X-Runtime","value":"0.255831"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 102,\n    \"name\": \"mpdemo.net\",\n    \"account\": {\n        \"id\": 7114,\n        \"name\": \"Mailprotector Demo Customer\"\n    },\n    \"domain_status\": {\n        \"id\": 2,\n        \"name\": \"Active\"\n    },\n    \"parent\": null,\n    \"verification_token\": \"4wEFVdi7Ym0TXGOaJBNoy95Z99YXm87CVMyQxaaa6SQ=\",\n    \"address_discovery_enabled\": false,\n    \"created_at\": \"2010-01-02T00:00:00.000Z\",\n    \"updated_at\": \"2019-12-30T22:24:37.000Z\"\n}"}],"_postman_id":"0a8eb8d6-d02d-4047-b0e7-4a6c1a359b41"},{"name":"Delete Domain","id":"0313a5b4-8d68-4e93-87c6-e884f6c79e92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}","description":"<p>Delete a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"16dd8bdb-b25e-48c0-9417-d5eb297a9823","name":"Delete Domain","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f01be778-28ef-4f48-8d31-37afb8f77c87"},{"key":"X-Runtime","value":"1.157667"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0313a5b4-8d68-4e93-87c6-e884f6c79e92"}],"id":"66e09bc3-cf36-47f3-9bc6-be71cdf8e607","description":"<p>Get, create, update, and delete domains from Mailprotector.</p>\n","_postman_id":"66e09bc3-cf36-47f3-9bc6-be71cdf8e607","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"User Groups","item":[{"name":"Users","item":[{"name":"User Group Users","id":"774ebd09-64ba-4b94-9a82-cc2df0ff5e87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users","description":"<p>Get users belonging to a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","users"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"3a1ac6e8-c4e8-4086-840f-da902af8bb26","name":"User Group Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"72cc8880158523664270550d16245ce5\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"81dd49df-d813-4472-9c79-733726865496"},{"key":"X-Runtime","value":"1.076381"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 826457,\n        \"name\": \"andy\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"andy@mpdemo.net\",\n        \"email_addresses\": [\n            \"andy@mpdemo.net\",\n            \"andy@exchange.mpdemo.net\",\n            \"andyb@mpdemo.net\",\n            \"andyb@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-03-10T16:14:42.000Z\",\n        \"updated_at\": \"2020-01-09T13:28:16.000Z\"\n    },\n    {\n        \"id\": 700549,\n        \"name\": \"athena\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"athena@mpdemo.net\",\n        \"email_addresses\": [\n            \"athena@mpdemo.net\",\n            \"athena@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Athena \",\n        \"last_name\": \"\",\n        \"created_at\": \"2015-10-20T14:18:11.000Z\",\n        \"updated_at\": \"2020-01-09T13:08:23.000Z\"\n    },\n    {\n        \"id\": 9634,\n        \"name\": \"ben\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"ben@mpdemo.net\",\n        \"email_addresses\": [\n            \"ben@mpdemo.net\",\n            \"ben@exchange.mpdemo.net\",\n            \"webmaster@mpdemo.net\",\n            \"webmaster@exchange.mpdemo.net\",\n            \"bentest@mpdemo.net\",\n            \"bentest@exchange.mpdemo.net\",\n            \"ben1.0@mpdemo.net\",\n            \"ben1.0@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Ben\",\n        \"last_name\": \"Hathaway\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2020-01-09T13:00:09.000Z\"\n    },\n    {\n        \"id\": 848411,\n        \"name\": \"bill\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"bill@mpdemo.net\",\n        \"email_addresses\": [\n            \"bill@mpdemo.net\",\n            \"bill@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:16:20.000Z\",\n        \"updated_at\": \"2020-01-09T13:30:09.000Z\"\n    },\n    {\n        \"id\": 871139,\n        \"name\": \"carnegie\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"carnegie@mpdemo.net\",\n        \"email_addresses\": [\n            \"carnegie@mpdemo.net\",\n            \"carnegie@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Carnegie\",\n        \"last_name\": \"User\",\n        \"created_at\": \"2017-08-11T19:00:29.000Z\",\n        \"updated_at\": \"2020-01-09T13:33:47.000Z\"\n    },\n    {\n        \"id\": 865693,\n        \"name\": \"charles\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"charles@mpdemo.net\",\n        \"email_addresses\": [\n            \"charles@mpdemo.net\",\n            \"charles@exchange.mpdemo.net\",\n            \"thehulk@mpdemo.net\",\n            \"thehulk@exchange.mpdemo.net\",\n            \"violation.alert@mpdemo.net\",\n            \"violation.alert@exchange.mpdemo.net\",\n            \"yolo@mpdemo.net\",\n            \"yolo@exchange.mpdemo.net\",\n            \"spam@mpdemo.net\",\n            \"spam@exchange.mpdemo.net\",\n            \"abuse@mpdemo.net\",\n            \"abuse@exchange.mpdemo.net\",\n            \"bracketsales@mpdemo.net\",\n            \"bracketsales@exchange.mpdemo.net\",\n            \"theboss@mpdemo.net\",\n            \"theboss@exchange.mpdemo.net\",\n            \"reports@mpdemo.net\",\n            \"reports@exchange.mpdemo.net\",\n            \"charles.ascii@mpdemo.net\",\n            \"charles.ascii@exchange.mpdemo.net\",\n            \"typo1@mpdemo.net\",\n            \"typo1@exchange.mpdemo.net\",\n            \"susann@mpdemo.net\",\n            \"susann@exchange.mpdemo.net\",\n            \"susan.smith@mpdemo.net\",\n            \"susan.smith@exchange.mpdemo.net\",\n            \"susantypo1@mpdemo.net\",\n            \"susantypo1@exchange.mpdemo.net\",\n            \"ironman@mpdemo.net\",\n            \"ironman@exchange.mpdemo.net\",\n            \"freestuff@mpdemo.net\",\n            \"freestuff@exchange.mpdemo.net\",\n            \"cccharles@mpdemo.net\",\n            \"cccharles@exchange.mpdemo.net\",\n            \"janet@mpdemo.net\",\n            \"janet@exchange.mpdemo.net\",\n            \"robot22@mpdemo.net\",\n            \"robot22@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Charles \",\n        \"last_name\": \"Love\",\n        \"created_at\": \"2017-07-25T14:11:09.000Z\",\n        \"updated_at\": \"2020-01-09T13:31:49.000Z\"\n    },\n    {\n        \"id\": 9635,\n        \"name\": \"david\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"david@mpdemo.net\",\n        \"email_addresses\": [\n            \"david@mpdemo.net\",\n            \"david@exchange.mpdemo.net\",\n            \"admin@mpdemo.net\",\n            \"admin@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2020-01-09T13:00:10.000Z\"\n    },\n    {\n        \"id\": 848410,\n        \"name\": \"dennis\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"dennis@mpdemo.net\",\n        \"email_addresses\": [\n            \"dennis@mpdemo.net\",\n            \"dennis@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:15:56.000Z\",\n        \"updated_at\": \"2020-01-09T13:30:09.000Z\"\n    },\n    {\n        \"id\": 746912,\n        \"name\": \"forcencrypt\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"forcencrypt@mpdemo.net\",\n        \"email_addresses\": [\n            \"forcencrypt@mpdemo.net\",\n            \"forcencrypt@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"ForcEncrypt\",\n        \"last_name\": \"Demo\",\n        \"created_at\": \"2016-08-16T16:29:34.000Z\",\n        \"updated_at\": \"2020-01-09T13:12:53.000Z\"\n    },\n    {\n        \"id\": 1123452,\n        \"name\": \"hsolo\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"hsolo@mpdemo.net\",\n        \"email_addresses\": [\n            \"hsolo@mpdemo.net\",\n            \"hsolo@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Han\",\n        \"last_name\": \"Solo\",\n        \"created_at\": \"2019-04-01T22:05:28.000Z\",\n        \"updated_at\": \"2020-01-09T14:41:12.000Z\"\n    },\n    {\n        \"id\": 811831,\n        \"name\": \"information\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"information@mpdemo.net\",\n        \"email_addresses\": [\n            \"information@mpdemo.net\",\n            \"information@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-01-25T21:04:33.000Z\",\n        \"updated_at\": \"2020-01-09T13:26:54.000Z\"\n    },\n    {\n        \"id\": 9637,\n        \"name\": \"jeremy\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"jeremy@mpdemo.net\",\n        \"email_addresses\": [\n            \"jeremy@mpdemo.net\",\n            \"jeremy@exchange.mpdemo.net\",\n            \"info@mpdemo.net\",\n            \"info@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Jeremy\",\n        \"last_name\": \"Nigh\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2020-01-09T13:00:10.000Z\"\n    },\n    {\n        \"id\": 849879,\n        \"name\": \"john\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"john@mpdemo.net\",\n        \"email_addresses\": [\n            \"john@mpdemo.net\",\n            \"john@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"John\",\n        \"last_name\": \"Henderson\",\n        \"created_at\": \"2017-05-28T17:56:53.000Z\",\n        \"updated_at\": \"2020-01-09T13:30:14.000Z\"\n    },\n    {\n        \"id\": 1198487,\n        \"name\": \"joshcmnametest\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"joshcmnametest@mpdemo.net\",\n        \"email_addresses\": [\n            \"joshcmnametest@mpdemo.net\",\n            \"joshcmnametest@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Josh\",\n        \"last_name\": \"NameTest\",\n        \"created_at\": \"2019-08-12T16:15:02.000Z\",\n        \"updated_at\": \"2020-01-09T15:05:55.000Z\"\n    },\n    {\n        \"id\": 1182450,\n        \"name\": \"joshtest\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"joshtest@mpdemo.net\",\n        \"email_addresses\": [\n            \"joshtest@mpdemo.net\",\n            \"joshtest@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Josh\",\n        \"last_name\": \"Test\",\n        \"created_at\": \"2019-07-17T19:00:10.000Z\",\n        \"updated_at\": \"2020-01-09T16:23:27.000Z\"\n    },\n    {\n        \"id\": 894395,\n        \"name\": \"justin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"justin@mpdemo.net\",\n        \"email_addresses\": [\n            \"justin@mpdemo.net\",\n            \"justin@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Justin\",\n        \"last_name\": \"Hathaway\",\n        \"created_at\": \"2017-11-09T15:15:31.000Z\",\n        \"updated_at\": \"2020-01-09T13:37:10.000Z\"\n    },\n    {\n        \"id\": 849530,\n        \"name\": \"kurin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"kurin@mpdemo.net\",\n        \"email_addresses\": [\n            \"kurin@mpdemo.net\",\n            \"kurin@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Kurin\",\n        \"last_name\": \"Quintavalle\",\n        \"created_at\": \"2017-05-25T17:51:39.000Z\",\n        \"updated_at\": \"2020-01-09T13:30:12.000Z\"\n    },\n    {\n        \"id\": 846968,\n        \"name\": \"laura\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"laura@mpdemo.net\",\n        \"email_addresses\": [\n            \"laura@mpdemo.net\",\n            \"laura@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-15T19:19:45.000Z\",\n        \"updated_at\": \"2020-01-09T13:30:02.000Z\"\n    },\n    {\n        \"id\": 862746,\n        \"name\": \"markgcm\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"markgcm@mpdemo.net\",\n        \"email_addresses\": [\n            \"markgcm@mpdemo.net\",\n            \"markgcm@exchange.mpdemo.net\",\n            \"markg@mpdemo.net\",\n            \"markg@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"Mark\",\n        \"last_name\": \"G Demo\",\n        \"created_at\": \"2017-07-11T20:56:50.000Z\",\n        \"updated_at\": \"2020-01-09T13:31:26.000Z\"\n    },\n    {\n        \"id\": 9646,\n        \"name\": \"michael\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"michael@mpdemo.net\",\n        \"email_addresses\": [\n            \"michael@mpdemo.net\",\n            \"michael@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2020-01-09T13:00:10.000Z\"\n    },\n    {\n        \"id\": 848413,\n        \"name\": \"rachel\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"rachel@mpdemo.net\",\n        \"email_addresses\": [\n            \"rachel@mpdemo.net\",\n            \"rachel@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:16:45.000Z\",\n        \"updated_at\": \"2020-01-09T13:30:09.000Z\"\n    },\n    {\n        \"id\": 883647,\n        \"name\": \"smtptest\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"smtptest@mpdemo.net\",\n        \"email_addresses\": [\n            \"smtptest@mpdemo.net\",\n            \"smtptest@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-10-09T14:56:13.000Z\",\n        \"updated_at\": \"2020-01-09T13:35:35.000Z\"\n    }\n]"}],"_postman_id":"774ebd09-64ba-4b94-9a82-cc2df0ff5e87"},{"name":"Create User","id":"7f4a2ee8-cb26-439d-bfdd-3150d488ff76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Username\",\n\t\"first_name\":\"First Name\",\n\t\"last_name\": \"Last Name\",\n\t\"user_type_id\": 1,\n\t\"aliases\": [\"alias_username\",\"alias_username2\"]\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users","description":"<p>Create a single user under a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","users"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"b64fcc21-1868-4fe8-bab0-85d7290ff169","name":"Create User","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Username\",\n\t\"first_name\":\"First Name\",\n\t\"last_name\": \"Last Name\",\n\t\"user_type_id\": 1,\n\t\"aliases\": [\"alias_username\",\"alias_username2\"]\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/users/1274645"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"dc9756db58e781d4dc8fbf7a3674a409\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2da0fbd6-d0fb-4a31-a18f-69578bb79aaf"},{"key":"X-Runtime","value":"1.154319"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1274645,\n        \"name\": \"username\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"username@mpdemo.net\",\n        \"email_addresses\": [\n            \"username@mpdemo.net\",\n            \"username@exchange.mpdemo.net\"\n        ],\n        \"first_name\": \"First Name\",\n        \"last_name\": \"Last Name\",\n        \"created_at\": \"2020-01-10T17:01:23.000Z\",\n        \"updated_at\": \"2020-01-10T17:01:23.000Z\"\n    }\n]"}],"_postman_id":"7f4a2ee8-cb26-439d-bfdd-3150d488ff76"},{"name":"Create Multiple Users","id":"5b2b7d51-0bc5-45df-81ec-eb9c2042e4d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\n\t\t\t\"name\":\"Username1\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username1-1\",\"alias_username1-2\"]\n\t\t},\n\t\t{\n\t\t\t\"name\":\"Username2\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username2-1\",\"alias_username2-2\"]\n\t\t}\n\t]\n}\n"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many","description":"<p>Create multiple users under a user group at once.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","users","create_many"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"2f62637b-8729-41b0-a94f-ad88bb691f7b","name":"Create Multiple Users","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\n\t\t\t\"name\":\"Username1\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username1-1\",\"alias_username1-2\"]\n\t\t},\n\t\t{\n\t\t\t\"name\":\"Username2\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username2-1\",\"alias_username2-2\"]\n\t\t}\n\t]\n}\n","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/users/1237621"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"247a4069de5a69ec9ebe8527746561e4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1c91f5fb-c944-4ff7-bb4f-703e70ae5f8b"},{"key":"X-Runtime","value":"12.588969"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1237621,\n        \"name\": \"username1\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"username1@mpdemo.net\",\n        \"email_addresses\": [\n            \"username1@mpdemo.net\",\n            \"username1@exchange.mpdemo.net\",\n            \"username1@test.domain.com\"\n        ],\n        \"first_name\": \"First Name\",\n        \"last_name\": \"Last Name\",\n        \"created_at\": \"2019-12-12T23:02:00.000Z\",\n        \"updated_at\": \"2019-12-12T23:02:00.000Z\"\n    },\n    {\n        \"id\": 1237622,\n        \"name\": \"username2\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"username2@mpdemo.net\",\n        \"email_addresses\": [\n            \"username2@mpdemo.net\",\n            \"username2@exchange.mpdemo.net\",\n            \"username2@test.domain.com\"\n        ],\n        \"first_name\": \"First Name\",\n        \"last_name\": \"Last Name\",\n        \"created_at\": \"2019-12-12T23:02:00.000Z\",\n        \"updated_at\": \"2019-12-12T23:02:00.000Z\"\n    }\n]"}],"_postman_id":"5b2b7d51-0bc5-45df-81ec-eb9c2042e4d9"}],"id":"6e153b0e-94fb-42c9-99bf-ba6693834f80","_postman_id":"6e153b0e-94fb-42c9-99bf-ba6693834f80","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Conifiguration","item":[{"name":"User Group Configuration","id":"4c6baf44-88a2-4a79-8a93-f5d45d8318ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration","description":"<p>Get the configuration for a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"d7a889d2-e994-4d7b-9f00-bc2b25439f52","name":"User Group Configuration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"791fc359433e4a7c4a6421ad4367e3bf\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3f134bc6-541e-4127-896d-49e7d61c7abe"},{"key":"X-Runtime","value":"1.811274"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"configuration\": {\n        \"region\": {\n            \"locale\": \"en\",\n            \"time_zone\": \"Eastern Time (US & Canada)\"\n        },\n        \"archiving\": {\n            \"journal_address\": null,\n            \"smtp_collector_address\": null,\n            \"url\": null\n        },\n        \"permissions\": {\n            \"messages\": {\n                \"allow_spam_release\": true,\n                \"allow_policy_release\": false,\n                \"allow_virus_release\": false,\n                \"allow_feed\": true\n            },\n            \"console\": {\n                \"allow_console_access\": true,\n                \"allow_user_management_of_allow_block\": true,\n                \"allow_user_management_of_content_rules\": false,\n                \"allow_user_management_of_quarantine_preferences\": true,\n                \"allow_user_management_of_spam_tolerance\": true\n            }\n        },\n        \"console\": {\n            \"access\": {\n                \"email_authentication_enabled\": true,\n                \"authentication_type\": \"ldap\",\n                \"authentication_server\": \"delivery.cloudmail.email\",\n                \"authentication_port\": 389,\n                \"authentication_use_ssl\": false,\n                \"authentication_radius_secret\": null,\n                \"authentication_username\": null\n            }\n        },\n        \"encryption\": {\n            \"bracket\": {\n                \"allow_export_default\": true,\n                \"allow_users_to_manage_defaults\": true,\n                \"journaling_address\": null,\n                \"protect_subject_default\": false,\n                \"request_bracket_email\": \"BracketSales@mpdemo.net\",\n                \"rule_enabled\": true,\n                \"rule_trigger\": \"square\",\n                \"send_open_notification_default\": false,\n                \"company_profile\": {\n                    \"allow_users_to_manage\": 1,\n                    \"city\": null,\n                    \"include_in_notifications\": 0,\n                    \"logo_url_for_email\": null,\n                    \"logo_url_for_preview\": null,\n                    \"name\": null,\n                    \"phone\": null,\n                    \"postal_code\": null,\n                    \"push_to_all_users\": null,\n                    \"push_with_new_users\": 0,\n                    \"state\": null,\n                    \"street_address\": null,\n                    \"website\": null\n                }\n            }\n        },\n        \"filtering\": {\n            \"alerts\": {\n                \"addresses\": [\n                    \"demo@mailprotector.com\"\n                ],\n                \"include_user\": 1,\n                \"inbound\": {\n                    \"virus_enabled\": true,\n                    \"policy_enabled\": false,\n                    \"spam_enabled\": false\n                },\n                \"outbound\": {\n                    \"virus_enabled\": true,\n                    \"policy_enabled\": true,\n                    \"spam_enabled\": false\n                }\n            },\n            \"spam_tolerance\": {\n                \"quarantine_threshold\": 240,\n                \"tag_threshold\": 240,\n                \"tag_text_location\": \"subject\",\n                \"tag_text\": \"[Possible spam]\"\n            }\n        },\n        \"mail_flow\": {\n            \"inbound\": {\n                \"redirect_alias_to_primary\": false,\n                \"smtp_host\": \"user_group-109.dev.routing.emailservice.io\",\n                \"smtp_port\": 25,\n                \"smtp_host_use_mx\": true,\n                \"email_destinations_enabled\": true,\n                \"mail_delivery_enabled\": true\n            },\n            \"outbound\": {\n                \"relay_enabled\": true\n            }\n        },\n        \"notifications\": {\n            \"link_hours_until_expiration\": 72,\n            \"link_max_logins\": 3,\n            \"schedule\": {\n                \"enabled\": false,\n                \"start_hour\": 8,\n                \"end_hour\": 18,\n                \"days_of_week\": [\n                    2,\n                    3,\n                    4,\n                    5,\n                    6\n                ]\n            }\n        },\n        \"messages\": {\n            \"review\": {\n                \"enabled\": true,\n                \"interval\": 24,\n                \"start_hour\": 8,\n                \"end_hour\": 18\n            },\n            \"visibility\": {\n                \"threshold\": 400\n            }\n        }\n    }\n}"}],"_postman_id":"4c6baf44-88a2-4a79-8a93-f5d45d8318ac"},{"name":"Edit User Group Configuration","id":"6d0ae9be-426d-4eb7-8788-fd946959945a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": true\n\t\t}\n\t}\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration","description":"<p>Edit the configuration for a user group. Fields not supplied will not be overwritten.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","configuration"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"a5e09df4-b3ff-4018-9f64-1baa256213ca","name":"Edit User Group Configuration","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"permissions\": {\n\t\t\"messages\": {\n\t\t\t\"allow_spam_release\": true\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/configuration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"5778b31dbb8588752d0466469dc85d15\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c68b4f3d-de99-428f-bc73-271be78507f8"},{"key":"X-Runtime","value":"0.874262"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"region\": {\n        \"locale\": \"en\",\n        \"time_zone\": \"Eastern Time (US & Canada)\"\n    },\n    \"archiving\": {\n        \"journal_address\": null,\n        \"smtp_collector_address\": null,\n        \"url\": null\n    },\n    \"permissions\": {\n        \"messages\": {\n            \"allow_spam_release\": true,\n            \"allow_policy_release\": false,\n            \"allow_virus_release\": false,\n            \"allow_feed\": true\n        },\n        \"console\": {\n            \"allow_console_access\": true,\n            \"allow_user_management_of_allow_block\": true,\n            \"allow_user_management_of_content_rules\": false,\n            \"allow_user_management_of_quarantine_preferences\": true,\n            \"allow_user_management_of_spam_tolerance\": true\n        }\n    },\n    \"console\": {\n        \"access\": {\n            \"email_authentication_enabled\": true,\n            \"authentication_type\": \"ldap\",\n            \"authentication_server\": \"delivery.cloudmail.email\",\n            \"authentication_port\": 389,\n            \"authentication_use_ssl\": false,\n            \"authentication_radius_secret\": null,\n            \"authentication_username\": null\n        }\n    },\n    \"encryption\": {\n        \"bracket\": {\n            \"allow_export_default\": true,\n            \"allow_users_to_manage_defaults\": true,\n            \"journaling_address\": null,\n            \"protect_subject_default\": false,\n            \"request_bracket_email\": \"BracketSales@mpdemo.net\",\n            \"rule_enabled\": true,\n            \"rule_trigger\": \"square\",\n            \"send_open_notification_default\": false,\n            \"company_profile\": {\n                \"allow_users_to_manage\": 1,\n                \"city\": null,\n                \"include_in_notifications\": 0,\n                \"logo_url_for_email\": null,\n                \"logo_url_for_preview\": null,\n                \"name\": null,\n                \"phone\": null,\n                \"postal_code\": null,\n                \"push_to_all_users\": null,\n                \"push_with_new_users\": 0,\n                \"state\": null,\n                \"street_address\": null,\n                \"website\": null\n            }\n        }\n    },\n    \"filtering\": {\n        \"alerts\": {\n            \"addresses\": [\n                \"demo@mailprotector.com\"\n            ],\n            \"include_user\": 1,\n            \"inbound\": {\n                \"virus_enabled\": true,\n                \"policy_enabled\": false,\n                \"spam_enabled\": false\n            },\n            \"outbound\": {\n                \"virus_enabled\": true,\n                \"policy_enabled\": true,\n                \"spam_enabled\": false\n            }\n        },\n        \"spam_tolerance\": {\n            \"quarantine_threshold\": 240,\n            \"tag_threshold\": 240,\n            \"tag_text_location\": \"subject\",\n            \"tag_text\": \"[Possible spam]\"\n        }\n    },\n    \"mail_flow\": {\n        \"inbound\": {\n            \"redirect_alias_to_primary\": false,\n            \"smtp_host\": \"user_group-109.dev.routing.emailservice.io\",\n            \"smtp_port\": 25,\n            \"smtp_host_use_mx\": true,\n            \"email_destinations_enabled\": true,\n            \"mail_delivery_enabled\": true\n        },\n        \"outbound\": {\n            \"relay_enabled\": true\n        }\n    },\n    \"notifications\": {\n        \"link_hours_until_expiration\": 72,\n        \"link_max_logins\": 3,\n        \"schedule\": {\n            \"enabled\": false,\n            \"start_hour\": 8,\n            \"end_hour\": 18,\n            \"days_of_week\": [\n                2,\n                3,\n                4,\n                5,\n                6\n            ]\n        }\n    },\n    \"messages\": {\n        \"review\": {\n            \"enabled\": true,\n            \"interval\": 24,\n            \"start_hour\": 8,\n            \"end_hour\": 18\n        },\n        \"visibility\": {\n            \"threshold\": 400\n        }\n    }\n}"}],"_postman_id":"6d0ae9be-426d-4eb7-8788-fd946959945a"}],"id":"c76c6152-fafa-4863-9379-8d51844e589f","_postman_id":"c76c6152-fafa-4863-9379-8d51844e589f","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Email Destinations","item":[{"name":"User Group Email Destinations","id":"d4f70c8a-a5d1-4ec8-9929-d31d064bd873","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations","description":"<p>Get the email destinations belonging to a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","email_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"d7312869-0629-4c4d-a157-a3c17054a6f8","name":"User Group Email Destinations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"8b90b4b046d757d44869c709806cc7f4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2a1348f9-9ff1-4e15-8a43-3a9b87cab7b3"},{"key":"X-Runtime","value":"0.183173"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 554,\n        \"entity_id\": 109,\n        \"entity_type\": \"UserGroup\",\n        \"address\": \"delivery.cloudmail.email\",\n        \"priority\": 0\n    }\n]"}],"_postman_id":"d4f70c8a-a5d1-4ec8-9929-d31d064bd873"},{"name":"Create User Group Email Destination","id":"5e9ac379-bde9-47ed-bfeb-801052577db9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"hostname.domain.com\"\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations","description":"<p>Create a new email destination for a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","email_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"818a7aa0-973b-4d99-afea-a20df0d337ce","name":"Create User Group Email Destination","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"hostname.domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_destinations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/email_destinations/1652"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b52a005f004b05ba4e952cbd41ea1dd4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"05f9f4c2-1cf9-4aad-be81-8b257e9bd40d"},{"key":"X-Runtime","value":"0.141219"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1652,\n    \"entity_id\": 109,\n    \"entity_type\": \"UserGroup\",\n    \"address\": \"hostname.domain.com\",\n    \"priority\": 1\n}"}],"_postman_id":"5e9ac379-bde9-47ed-bfeb-801052577db9"}],"id":"f7ca3273-588f-40f1-b3be-8d6092cbb751","_postman_id":"f7ca3273-588f-40f1-b3be-8d6092cbb751","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Email Sources","item":[{"name":"User Group Email Sources","id":"94aeeaf1-854a-48ac-8962-e8750a87f5ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources","description":"<p>Get all email sources for a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","email_sources"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"4106874a-d8c5-45a5-b259-4b7aa0dfa5af","name":"User Group Email Sources","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"53bea90083978cfc856e4f76fba0a828\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3bc12c10-d7a5-4a23-a072-a3a9114d5237"},{"key":"X-Runtime","value":"0.641113"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 128,\n        \"entity\": {\n            \"id\": 109,\n            \"entity_type\": \"UserGroup\",\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"address\": \"97.81.240.155\"\n    }\n]"}],"_postman_id":"94aeeaf1-854a-48ac-8962-e8750a87f5ea"},{"name":"Create User Group Email Source","id":"69c6789c-8c1c-40f6-a7f6-22456a9faa6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"192.168.0.1\"\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources","description":"<p>Create a new email source for a user group</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","email_sources"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"853c6b59-a793-4a79-b060-50f68792bacd","name":"Create User Group Email Source","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"192.168.0.1\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/email_sources"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/email_sources/1642"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a8778d918d86b855ab1a8e64341f9963\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef2bf6d0-381c-4454-b68b-e5cd7d10b6f0"},{"key":"X-Runtime","value":"0.139784"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1642,\n    \"entity\": {\n        \"id\": 109,\n        \"entity_type\": \"UserGroup\",\n        \"name\": \"CloudMail with Bracket\"\n    },\n    \"address\": \"192.168.0.1\"\n}"}],"_postman_id":"69c6789c-8c1c-40f6-a7f6-22456a9faa6e"}],"id":"7789ed87-7557-4655-8874-1e183c439189","_postman_id":"7789ed87-7557-4655-8874-1e183c439189","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Services","item":[{"name":"Get User Group Services","id":"8eae8a16-b22d-4026-88e4-362cc10b844f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/services","description":"<p>Get the active services for a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","services"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"350a2e6f-e10f-4564-a487-f3c19aea26de","name":"Get User Group Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"8e9e1861a6bc508975d47b58a843609b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"47e0cf6d-589a-4413-8919-1e383e89538c"},{"key":"X-Runtime","value":"0.137099"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 9529,\n        \"service_type\": \"CloudFilter Email Security\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2012-04-30T18:57:35.000Z\"\n    },\n    {\n        \"id\": 38598,\n        \"service_type\": \"CloudMail\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2018-03-06T19:43:00.000Z\"\n    },\n    {\n        \"id\": 7911,\n        \"service_type\": \"SafeSend Outbound\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2012-03-05T03:26:51.000Z\"\n    },\n    {\n        \"id\": 49266,\n        \"service_type\": \"Bracket w/ CloudFilter & SafeSend\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2019-07-25T19:45:48.000Z\"\n    }\n]"}],"_postman_id":"8eae8a16-b22d-4026-88e4-362cc10b844f"},{"name":"Update User Group Services","id":"d3a6402d-20b0-47b4-835b-e2a45ec4d456","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"service_types\": {\n\t\t\"addons\": [\"bracket\", \"securestore\"],\n\t\t\"hosting\": \"other\"\n\t}\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/services","description":"<p>Provision new services or remove active services by updating the services for a user group.</p>\n<p>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. </p>\n<p>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.</p>\n<h2 id=\"hosting\">Hosting</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Product</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Other</td>\n<td>You are supplying your own mail server.</td>\n</tr>\n<tr>\n<td>GSuite</td>\n<td>Same as \"other\", but implies the mail server is hosted on GSuite.</td>\n</tr>\n<tr>\n<td>Office365</td>\n<td>Same as \"other\", but implies the mail server is hosted on Office 365.</td>\n</tr>\n<tr>\n<td>CloudMail</td>\n<td>Mailprotector's basic mail hosting option. Users can manage email via secure webmail console or email client via (POP3 or IMAP syncing).</td>\n</tr>\n<tr>\n<td>Exchange</td>\n<td>Mailprotector's hosted Exchange 2016.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"addons\">Addons</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Product</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeSend</td>\n<td>Enhanced Outbound Protection</td>\n</tr>\n<tr>\n<td>Bracket</td>\n<td>Encrypted Email</td>\n</tr>\n<tr>\n<td>SecureStore</td>\n<td>Email Archiving</td>\n</tr>\n<tr>\n<td>XtraMail</td>\n<td>Email Continuity</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong></p>\n<ul>\n<li>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.</li>\n<li>SafeSend must be provisioned with Bracket. If it is not supplied in the request, it will be automatically provisioned when Bracket is activated.</li>\n<li>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.</li>\n<li>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.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","services"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"da460cf5-4b5e-48ef-883a-98c37f0d4f45","name":"Update User Group Services","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"service_types\": {\n\t\t\"addons\": [\"bracket\", \"securestore\"],\n\t\t\"hosting\": \"other\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_groups/109/services"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e90311488469cdf478b96f1435f743e8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"885f518b-49ae-463f-b2d0-2a645ba16419"},{"key":"X-Runtime","value":"0.468191"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 9529,\n        \"service_type\": \"CloudFilter Email Security\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2012-04-30T18:57:35.000Z\"\n    },\n    {\n        \"id\": 53901,\n        \"service_type\": \"Other\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2020-01-14T21:05:11.000Z\"\n    },\n    {\n        \"id\": 53911,\n        \"service_type\": \"Bracket w/ CloudFilter & SafeSend\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2020-01-14T21:41:15.000Z\"\n    },\n    {\n        \"id\": 53913,\n        \"service_type\": \"SecureStore\",\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"created_at\": \"2020-01-14T22:03:36.000Z\"\n    }\n]"}],"_postman_id":"d3a6402d-20b0-47b4-835b-e2a45ec4d456"}],"id":"895f2e2a-d568-403c-829c-7185cf7d0703","_postman_id":"895f2e2a-d568-403c-829c-7185cf7d0703","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Messages","item":[{"name":"User Group Messages","id":"0413e931-dc02-4095-9a28-ed665e90fb06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/messages","description":"<p>Get the messages from the quarantines of users under a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","messages"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"85792705-9bda-4d90-b630-e2637fd45166","name":"User Group Messages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"0c7c1ff7eec2b031a5c66b8ed7f3b6fa\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"022581a7-758e-4f2e-8818-e1712f1ef988"},{"key":"X-Runtime","value":"13.646537"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1994268904,\n        \"uuid\": \"1B93DF58-63E7-4CD0-BB80-89A70F7A3E50.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa9f24269-7833c710-d055-49ac-b0b2-2ab4ffbcf625-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Environment Alert: The past decade was the hottest ever recorded, driven by spiking temperatures in the past five years\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T16:03:43.000Z\"\n    },\n    {\n        \"id\": 1994268473,\n        \"uuid\": \"04A72C3F-B930-4C59-8588-4B49F62471D6.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-lqddwmmjzrknmdnrmjwhmzdzzzrfkqgqkhp@email.fastcompany.com\",\n        \"to\": \"\\\"\\\" <carnegie@MPDEMO.NET>\",\n        \"from\": \"Fast Company Events <events@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"RSVP Now! Join us in Austin at the Fast Company Grill\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T16:01:53.000Z\"\n    },\n    {\n        \"id\": 1994268556,\n        \"uuid\": \"7377EA8D-FFE1-4BE5-88A2-28B20D72FA17.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-myytbccnclqdctdlcnbpcwtwwwlzqsysqpg@email.fastcompany.com\",\n        \"to\": \"\\\"\\\" <charles@mpdemo.net>\",\n        \"from\": \"Fast Company Events <events@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"RSVP Now! Join us in Austin at the Fast Company Grill\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T16:01:53.000Z\"\n    },\n    {\n        \"id\": 1994216861,\n        \"uuid\": \"035BF8F2-E632-4034-A7E4-0E3D7B665B92.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa9c71747-98e4dd43-546c-4667-86c7-c7a9654f2829-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Schiff, Nadler are among the House members named as impeachment managers who will prosecute the case against Trump\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T15:16:34.000Z\"\n    },\n    {\n        \"id\": 1994213189,\n        \"uuid\": \"9F4B926A-EA3F-4669-998D-415E4D592012.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+9360667-c4fa-charles=mpdemo.net@em8737.fastcompany.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"Fast Company Compass <compass@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The perfect ergonomic keyboard is here\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": \"2020-01-15T15:24:18.000Z\",\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T15:13:28.000Z\"\n    },\n    {\n        \"id\": 1994213191,\n        \"uuid\": \"68F681F0-1587-421A-A2C0-9D59A132CE1B.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+9360667-be88-carnegie=mpdemo.net@em8737.fastcompany.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"Fast Company Compass <compass@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The perfect ergonomic keyboard is here\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T15:13:27.000Z\"\n    },\n    {\n        \"id\": 1994184714,\n        \"uuid\": \"3B03D365-B95F-48E9-A78F-626434CB5C83.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa9aaad0e-f89267f9-514e-4572-96b0-f1c920cece30-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Speaker Pelosi expected to name team of House managers who will prosecute the case against Trump. Watch live coverage and analysis.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 270\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 7,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 50\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T14:45:32.000Z\"\n    },\n    {\n        \"id\": 1994150424,\n        \"uuid\": \"37BB6DEC-4058-4182-87F4-C3097BB658A9.3\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa98bd8cc-cc0fefc8-c0f0-4017-879c-d0b18fe4a688-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Russian cabinet resigns after Putin calls for constitutional change that could give him significant influence after term finishes\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T14:11:52.000Z\"\n    },\n    {\n        \"id\": 1994114526,\n        \"uuid\": \"D01EC168-1D65-42F5-96B2-C20B7166D8FB.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-otlllkttqwlwdjtrrzldtwrqfqwjkwdqwlccwpk@srnemail.com\",\n        \"to\": \"\\\"192.88.135.9 SRNNews.com Newsletter Popup\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"Bill Bennett's American Patriot's Daily Almanac\\n <members@srnemail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Remembering Martin Luther King Jr.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 540\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T13:36:49.000Z\"\n    },\n    {\n        \"id\": 1994050917,\n        \"uuid\": \"31611E0E-228A-445C-9CAD-1BBA17982A03.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-uyhqmhqcgpfsnyyhmgshnpcymccyysbhjdgbbp@townhallmail.com\",\n        \"to\": \"\\\"Friend\\\" <charles@mpdemo.net>\",\n        \"from\": \"Jonathan Garthwaite <THeditor@TownHallmail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Townhall Daily - Jan 15 - Kurt  Schlichter,Ben Shapiro,Walter E. Williams,John Stossel,Sean Spicer and More\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T12:12:50.000Z\"\n    },\n    {\n        \"id\": 1993986685,\n        \"uuid\": \"A5284607-E015-41AA-9B1E-B5719E9CFA92.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-63_HTML-328761131-3163769-7219217-238@bounce.aaas.sciencepubs.org\",\n        \"to\": \"<carnegie@mpdemo.net>\",\n        \"from\": \"\\\"News from Science\\\" <alerts@aaas.sciencepubs.org>\",\n        \"cc\": \"\",\n        \"subject\": \"World on alert for potential spread of new SARS-like virus found in China\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 380\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T11:01:36.000Z\"\n    },\n    {\n        \"id\": 1993973605,\n        \"uuid\": \"0A670970-82A3-4D54-A583-450DEFEC0FA8.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-rrcvvkcclgvgpncttrnpcgtljwrkjjplgvhhgsk@srnemail.com\",\n        \"to\": \"\\\"192.88.135.9 SRNNews.com Newsletter Popup\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"Daybreak Insider <members@srnemail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"CNN Takes Sides in Dem Debate\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 540\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T10:08:48.000Z\"\n    },\n    {\n        \"id\": 1993995201,\n        \"uuid\": \"C32C1254-08DF-4C42-9636-546A62D957B6.1\",\n        \"address\": \"ben@mpdemo.net\",\n        \"recipients\": [\n            \"ben@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+20995-d3ee-ben=mpdemo.net@em954.selling-greenville.com\",\n        \"to\": \"ben@mpdemo.net\",\n        \"from\": \"Marcus Wondracek <marcus@selling-greenville.com>\",\n        \"cc\": \"\",\n        \"subject\": \"428 Hilburn Way, Simpsonville, SC + 1 Other New Property\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 420\n        },\n        \"results\": [\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 9634,\n            \"name\": \"ben\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T09:10:51.000Z\"\n    },\n    {\n        \"id\": 1994004621,\n        \"uuid\": \"8A5F4746-AA7A-4DF2-B458-6BD1A46A24EF.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa76fddf5-1b0da981-fa9a-4c4c-84ec-f5510114d469-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Warren and Sanders managed their growing tensions well. One candidate was a surprising bystander. Read our full debate analysis.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T04:22:04.000Z\"\n    },\n    {\n        \"id\": 1994057771,\n        \"uuid\": \"C2F8A4FA-AB88-4C42-BE8E-FB3358F9B900.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa746b1a7-9d060edb-631c-4843-b5f9-47addbe3da19-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Ukraine prosecutor offered information related to Biden in exchange for U.S. ambassador’s ouster, newly released materials show\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T03:37:05.000Z\"\n    },\n    {\n        \"id\": 1994035035,\n        \"uuid\": \"1644AAA4-176C-458B-9445-BDCDAC2548A2.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa742ee73-2c28032d-2dcb-46df-9481-026d119bdef0-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"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\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 270\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 7,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 20 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 50\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T03:32:59.000Z\"\n    },\n    {\n        \"id\": 1993990654,\n        \"uuid\": \"342DA022-9906-461D-BD3D-2A4BAAE498C2.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa723a4b8-c47aabec-5509-4c0f-9ccc-7fdf549d4ea2-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Warren and Sanders spar onstage over whether Sanders said a woman couldn't win the presidency\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T02:58:48.000Z\"\n    },\n    {\n        \"id\": 1993986094,\n        \"uuid\": \"24536E49-7A05-403E-9F35-4B2926A020B7.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa701ff85-cbf5a944-ffa1-4625-8e53-798c706294c3-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Michael Flynn moves to withdraw guilty plea, in reversal for former Trump national security adviser\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T02:22:03.000Z\"\n    },\n    {\n        \"id\": 1993998265,\n        \"uuid\": \"F2A38BA1-4D74-4A7F-B44B-49E82D46A622.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa6fe1e72-e163fb18-0522-4394-8fef-19999af1009e-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Tonight's Democratic debate opens with discussion of Iran, war and commander-in-chief credentials. Follow The Post's live coverage.\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T02:17:49.000Z\"\n    },\n    {\n        \"id\": 1993971787,\n        \"uuid\": \"337CB572-CE89-4233-9BD3-1ED03A5E56D6.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"v-bfkjlcd_fjcackpmfo_gcpoahnc_gcpoahnc_a@bounce.e.theatlantic.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Atlantic Politics <politicsdaily@theatlantic.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Getting out the (Latino) vote\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T00:55:53.000Z\"\n    },\n    {\n        \"id\": 1994055440,\n        \"uuid\": \"C21B0210-F377-4E24-A0D3-5A827032A71B.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa6ad9eb0-19159be3-9391-453d-9075-c48c94eb6f35-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Boston Red Sox 'part ways' with manager Alex Cora, who was implicated in MLB sign-stealing scandal\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T00:49:53.000Z\"\n    },\n    {\n        \"id\": 1993970416,\n        \"uuid\": \"FBA4F4E2-0745-4CE9-AE01-3EC679A040F6.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"v-bfkjlbe_fjcackpmfo_gcpoacfd_gcpoacfd_a@bounce.e.theatlantic.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Atlantic <newsletters@theatlantic.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The small rebellion of reading fiction\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T00:29:06.000Z\"\n    },\n    {\n        \"id\": 1993993858,\n        \"uuid\": \"8FC50E31-8C6F-4375-B2AF-B9E503627E96.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa68ecb15-9042c6b0-f9f0-420b-8bc7-0d4f12ff4398-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Post Exclusive: More than 100 billion pain pills were shipped nationwide over nine years, newly disclosed data shows\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-15T00:16:13.000Z\"\n    },\n    {\n        \"id\": 1993659797,\n        \"uuid\": \"DE46197A-5AE0-41FF-8879-B7174AEE583B.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"v-bfkjilh_fjcackpmfo_gcpnoapi_gcpnoapi_a@bounce.e.theatlantic.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Atlantic <newsletters@theatlantic.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The Atlantic Photo - Winners of the 2019 Ocean Art Underwater Photo Contest\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 380\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T21:04:40.000Z\"\n    },\n    {\n        \"id\": 1993656279,\n        \"uuid\": \"F8D84D99-2216-4272-816F-61091ECC4501.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounceback@e.media.bloomberg.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"Bloomberg\\\" <subscriptions@media.bloomberg.com>\",\n        \"cc\": \"\",\n        \"subject\": \"2020 is a big deal - and so is this\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T21:02:43.000Z\"\n    },\n    {\n        \"id\": 1993655835,\n        \"uuid\": \"18354311-500D-4044-8B9D-57A31363FACF.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-ivbhzyhcbndwmggydbwymncgvmhgnwkyrfbkkn@townhallmail.com\",\n        \"to\": \"\\\"Friend\\\" <charles@mpdemo.net>\",\n        \"from\": \"Jonathan Garthwaite <THeditor@TownHallmail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Pelosi Had a Dirty Little Secret for Withholding Impeachment Articles\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 320\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T20:59:47.000Z\"\n    },\n    {\n        \"id\": 1993679595,\n        \"uuid\": \"8DA55367-D1E3-4A1B-941C-5E8C231AAAB6.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-mc.us2_6180498.1359271-292075e50a@mail1.davenetics.com\",\n        \"to\": \"<carnegie@mpdemo.net>\",\n        \"from\": \"=?utf-8?Q?NextDraft?= <dave@davenetics.com>\",\n        \"cc\": \"\",\n        \"subject\": \"SAD!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T20:32:26.000Z\"\n    },\n    {\n        \"id\": 1993658447,\n        \"uuid\": \"B931BD1E-DB7B-44C3-AB58-F5BC1E5A8C87.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce@tech.channelfutures.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"Channel Futures\\\" <ChannelFutures@tech.channelfutures.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Guide to Setting Hourly Rates for Field Service Technicians\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 320\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T20:31:19.000Z\"\n    },\n    {\n        \"id\": 1993576997,\n        \"uuid\": \"83DEFEDA-A0FA-4897-A719-25B9C2B94DE0.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa5bc523d-84bc7be7-011e-4fea-9f32-e3e466792b01-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Senate resolution to limit Trump's military authority on Iran has enough Republican votes to pass, key Democrat says\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T20:26:20.000Z\"\n    },\n    {\n        \"id\": 1993668763,\n        \"uuid\": \"91FB47C5-2718-4B75-B68B-5E5E97679B92.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa4fad264-e4cfce96-010d-4880-99fa-81bef8148ddb-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The Daily 202: 10 questions after Pelosi announces a Wednesday vote on transmitting the articles of impeachment\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 40\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T16:54:58.000Z\"\n    },\n    {\n        \"id\": 1993380671,\n        \"uuid\": \"9B4E2AAE-990E-445B-8559-6149091BC11A.1\",\n        \"address\": \"ben@mpdemo.net\",\n        \"recipients\": [\n            \"ben@mpdemo.net\"\n        ],\n        \"sender\": \"ben.hathaway@mailprotector.com\",\n        \"to\": \"ben@mpdemo.net\",\n        \"from\": \"ben.hathaway@mailprotector.com\",\n        \"cc\": \"\",\n        \"subject\": \"test Tue, 14 Jan 2020 11:44:51 -0500\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 440\n        },\n        \"results\": [\n            {\n                \"id\": 1,\n                \"mode\": \"inbound\",\n                \"title\": \"No Reverse DNS\",\n                \"description\": \"The server that relayed the message did not have a reverse DNS record.\",\n                \"weight\": 40\n            },\n            {\n                \"id\": 25,\n                \"mode\": \"inbound\",\n                \"title\": \"Policy Block List\",\n                \"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.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 10,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 169,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (From)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the from header.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 9634,\n            \"name\": \"ben\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T16:44:51.000Z\"\n    },\n    {\n        \"id\": 1993367346,\n        \"uuid\": \"E610F239-8CC2-4BDB-BE8F-81309756746F.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce@tech.channelfutures.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"Channel Futures\\\" <ChannelFutures@tech.channelfutures.com>\",\n        \"cc\": \"\",\n        \"subject\": \"🎣 Hook, Line & Sinker: Phishing Report\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T16:32:05.000Z\"\n    },\n    {\n        \"id\": 1993356114,\n        \"uuid\": \"61C9F31F-7176-4473-8E18-739E6D4E4B8D.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"return-a7-28292-28295-c8e22162=1054480=8@mailer.iphonelife.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"iPhone Life\\\" <iphonelife@iphonelife.com>\",\n        \"cc\": \"\",\n        \"subject\": \"STM Goods: Charge into the New Year with 20% Off Wireless Powerbank\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T16:23:17.000Z\"\n    },\n    {\n        \"id\": 1993278651,\n        \"uuid\": \"70839F9B-4E39-4A4D-811D-E0A40F6C831C.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa49d74dd-e2b16abd-eacf-428e-93ed-e04513a25b87-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: NSA found a dangerous Microsoft software flaw and alerted the firm — rather than weaponize it\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T15:13:00.000Z\"\n    },\n    {\n        \"id\": 1993264045,\n        \"uuid\": \"20D07D09-E673-4DD2-BC0D-70E65DDEF908.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+9360667-be88-carnegie=mpdemo.net@em8737.fastcompany.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"Fast Company Compass <compass@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"It’s official: Data visualization has gone mainstream\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T15:01:45.000Z\"\n    },\n    {\n        \"id\": 1993264097,\n        \"uuid\": \"027AF2A2-8B5C-4F79-885D-AF22A597E264.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+9360667-c4fa-charles=mpdemo.net@em8737.fastcompany.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"Fast Company Compass <compass@fastcompany.com>\",\n        \"cc\": \"\",\n        \"subject\": \"It’s official: Data visualization has gone mainstream\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 220\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T15:01:45.000Z\"\n    },\n    {\n        \"id\": 1993261772,\n        \"uuid\": \"82821312-C5A7-42D0-B76C-BFE3045C0F17.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+6692116-dc2e-carnegie=mpdemo.net@abmail.mailings.ncaa.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"\\\"NCAA.com\\\" <no-reply@mailings.ncaa.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The Journey to Detroit Continues!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 173,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Soft Fail (Reply-To)\",\n                \"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.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T15:00:16.000Z\"\n    },\n    {\n        \"id\": 1993244610,\n        \"uuid\": \"80E1CD32-CD39-42BC-AC56-6C16F5493506.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0100016fa48211d2-05eda1c9-13b7-437a-97ec-4edb131a87fa-000000@email.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: House to vote Wednesday to send impeachment articles against Trump to the Senate\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T14:43:05.000Z\"\n    },\n    {\n        \"id\": 1993194920,\n        \"uuid\": \"E4DB7CE2-1146-4EE1-9E20-1E6AC0F5DE57.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce@tech.channelfutures.com\",\n        \"to\": \"charles@mpdemo.net\",\n        \"from\": \"\\\"Channel Futures\\\" <news@tech.channelfutures.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Digging into Cloud, Microsoft Growth | Dell Technologies Leans in on Channel | JEDI Update\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 140\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 172,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Hard Fail (Reply-To)\",\n                \"description\": \"The SPF record has designated the host as NOT being allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T14:01:18.000Z\"\n    },\n    {\n        \"id\": 1993169204,\n        \"uuid\": \"BAE742B4-768E-419D-8CF1-A2DF1BE6BCBA.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-upyffghhcnfnswhpphhshnpcyymcgnscnfzznjg@srnemail.com\",\n        \"to\": \"\\\"192.88.135.9 SRNNews.com Newsletter Popup\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"Bill Bennett's American Patriot's Daily Almanac\\n <members@srnemail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"A Prayer at Valley Forge\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 540\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T13:36:04.000Z\"\n    },\n    {\n        \"id\": 1993141384,\n        \"uuid\": \"56BE65BA-D79C-4639-816A-ECF49B8E4040.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-mntddtccpndnlycbbcwlcnbpwwbtwslpndzznjt@srnnewsemail.com\",\n        \"to\": \"\\\"192.88.135.9 SRNNews.com Newsletter Popup\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"SRN News Editorial Cartoons <headlines@srnnewsemail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"New Editorial Cartoons from SRNNews.com\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T13:11:02.000Z\"\n    },\n    {\n        \"id\": 1993089135,\n        \"uuid\": \"337A1488-A4BF-4899-908C-CF53EA29155A.1\",\n        \"address\": \"charles@mpdemo.net\",\n        \"recipients\": [\n            \"charles@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-tmzzjlzpbmckvwwlzvklvmpwwhvwwkfltgbffm@townhallmail.com\",\n        \"to\": \"\\\"Friend\\\" <charles@mpdemo.net>\",\n        \"from\": \"Jonathan Garthwaite <THeditor@TownHallmail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Townhall Daily - Jan 14 - Derek Hunter,Dennis Prager,Sheriff David  Clarke, Ret.,Salena Zito,Ken Blackwell and More\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 340\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 55,\n                \"mode\": \"inbound\",\n                \"title\": \"Ungrouped\",\n                \"description\": \"Rules that have not yet been categorized or that don't fit in a category.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T12:11:44.000Z\"\n    },\n    {\n        \"id\": 1993064081,\n        \"uuid\": \"66FF41C4-13C6-4AD9-8581-73761F13DE0A.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa3d6f3c3-fd413edd-f813-407a-a082-a0b07dc6b967-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: France, Britain and Germany launch process to hold Iran accountable for violating nuclear deal, opening way for sanctions\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T11:36:10.000Z\"\n    },\n    {\n        \"id\": 1993043690,\n        \"uuid\": \"BAB3AC1A-B570-4F4F-B7FD-3291A83D1225.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-63_HTML-328761131-3162276-7219217-238@bounce.aaas.sciencepubs.org\",\n        \"to\": \"<carnegie@mpdemo.net>\",\n        \"from\": \"\\\"News from Science\\\" <alerts@aaas.sciencepubs.org>\",\n        \"cc\": \"\",\n        \"subject\": \"FDA and NIH let clinical trial sponsors keep results secret and break the law\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 380\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T11:01:31.000Z\"\n    },\n    {\n        \"id\": 1993017190,\n        \"uuid\": \"E796E4A2-7971-4816-BF96-FED878EF151B.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"bounce-jjjmmtbbnvmvwjbqqsfwbvqfnnmssswnvmzzvpt@srnemail.com\",\n        \"to\": \"\\\"192.88.135.9 SRNNews.com Newsletter Popup\\\" <carnegie@mpdemo.net>\",\n        \"from\": \"Daybreak Insider <members@srnemail.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Warren and Sanders Spar Over Female President\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 540\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T10:12:01.000Z\"\n    },\n    {\n        \"id\": 1992989257,\n        \"uuid\": \"0F2971A2-B6D7-4DEB-9A6E-C57C64E2B4A2.1\",\n        \"address\": \"ben@mpdemo.net\",\n        \"recipients\": [\n            \"ben@mpdemo.net\"\n        ],\n        \"sender\": \"bounces+20995-d3ee-ben=mpdemo.net@em954.selling-greenville.com\",\n        \"to\": \"ben@mpdemo.net\",\n        \"from\": \"Marcus Wondracek <marcus@selling-greenville.com>\",\n        \"cc\": \"\",\n        \"subject\": \"331 Kelsey Glen Lane, Simpsonville, SC + 4 Other New Properties this week\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 9634,\n            \"name\": \"ben\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T09:15:51.000Z\"\n    },\n    {\n        \"id\": 1992880468,\n        \"uuid\": \"9F77F5D0-36D1-45F0-BE8B-AA26C12CC11B.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa27c3d17-dc1ef609-659e-451c-8884-8d2015bbd9ef-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: LSU beats Clemson in college football's national championship game, completing dream season\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T05:17:28.000Z\"\n    },\n    {\n        \"id\": 1992812718,\n        \"uuid\": \"1F17EA85-5F7F-4B25-B934-46E2C538CDB6.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa1e91b3d-df0e200c-7022-4d3d-bc17-b0d05e645331-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Russian spies hacked Ukrainian gas company at heart of Trump impeachment trial, again entangling Moscow in domestic U.S. politics\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T02:36:46.000Z\"\n    },\n    {\n        \"id\": 1992756644,\n        \"uuid\": \"97C99FAF-0B7D-4649-808D-C2178DD6946B.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"v-bfkieim_fjcackpmfo_gcpncehe_gcpncehe_a@bounce.e.theatlantic.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Atlantic <newsletters@theatlantic.com>\",\n        \"cc\": \"\",\n        \"subject\": \"'Joker' laughs its way to the top of the Oscar pack\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 360\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 135,\n                \"mode\": \"inbound\",\n                \"title\": \"Multiple From/Reply\",\n                \"description\": \"This message had headers from multiple addresses.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T00:38:17.000Z\"\n    },\n    {\n        \"id\": 1992756515,\n        \"uuid\": \"E625104C-1DC3-44F5-B166-C1FFCE4BCAE9.1\",\n        \"address\": \"carnegie@mpdemo.net\",\n        \"recipients\": [\n            \"carnegie@mpdemo.net\"\n        ],\n        \"sender\": \"0101016fa17c6507-1cb0a470-583e-4dab-8a7f-75a3478933a0-000000@us-west-2.washingtonpost.com\",\n        \"to\": \"carnegie@mpdemo.net\",\n        \"from\": \"The Washington Post <email@washingtonpost.com>\",\n        \"cc\": \"\",\n        \"subject\": \"News Alert: Trump planning to divert additional $7.2 billion in Pentagon funds for border wall\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"policy\",\n        \"decision\": \"quarantine_policy\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            },\n            {\n                \"id\": 138,\n                \"mode\": \"inbound\",\n                \"title\": \"Block\",\n                \"description\": \"A block rule triggered on the sender or from address for this message causing it to be quarantined.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 871139,\n            \"name\": \"carnegie\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-14T00:38:01.000Z\"\n    }\n]"}],"_postman_id":"0413e931-dc02-4095-9a28-ed665e90fb06"},{"name":"Release Message","id":"5d47aa1e-d3c9-43db-bb01-3f593947c1f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}"},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver","description":"<p>Release a message from the quarantine. The <code>recipients</code> field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","messages","{{message_id}}","deliver"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"57bd76e7-ea34-49ea-ab47-3e9a47497cdb","name":"Release Message","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e630abe8-ad9d-4ede-9c68-e88a74e273c7"},{"key":"X-Runtime","value":"1.371039"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5d47aa1e-d3c9-43db-bb01-3f593947c1f6"},{"name":"Release Multiple Messages","id":"42ef5c5e-e764-4fb0-9910-1fba45a76962","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/messages/deliver_many","description":"<p>Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing <code>all_selected: true</code> will release all currently held messages from a user group's quarantine. </p>\n<p><strong>Note</strong>: 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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","messages","deliver_many"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"9ea2c135-40b7-4cf6-945c-b8d70bd484cd","name":"Release Multiple Messages Copy","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/messages/deliver_many"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f602713b4241cb2e3030443e7df8e91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"31f40aa7-d879-4fa4-b0b0-8b636971911c"},{"key":"X-Runtime","value":"3.386540"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"delivered_messages\": [\n        2015573173,\n        2015573567\n    ]\n}"}],"_postman_id":"42ef5c5e-e764-4fb0-9910-1fba45a76962"}],"id":"13304ec0-aa92-4878-ac16-723fcdead6ba","_postman_id":"13304ec0-aa92-4878-ac16-723fcdead6ba","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Logs","item":[{"name":"User Group Logs","id":"275a0ded-4a30-4bdb-8945-09db2c9abe1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/logs","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","logs"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"ea205c71-63a8-4066-9aaa-8a6efaa33dde","name":"User Group Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"284547d3cd5d3406c7217369c4d5052f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ec7a8bd4-9282-4b7c-b008-bd2833eb0dbf"},{"key":"X-Runtime","value":"1.395310"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"6391f62d-332e-491b-914a-a2a0501b50b1\",\n        \"uuid\": \"6391f62d-332e-491b-914a-a2a0501b50b1\",\n        \"sender\": \"bounce@tech.channelfutures.com\",\n        \"from\": \"Tierney Roland <ChannelFutures@tech.channelfutures.com>\",\n        \"recipient\": \"charles@mpdemo.net\",\n        \"score\": {\n            \"score\": 300\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"142.0.174.40\",\n        \"subject\": \"Security Guide Exclusive for You\",\n        \"user\": {\n            \"id\": 865693,\n            \"name\": \"charles\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"customer\": {\n            \"id\": 7114,\n            \"name\": \"Mailprotector Demo Customer\"\n        },\n        \"reseller\": {\n            \"id\": 343,\n            \"name\": \"Mailprotector Demos Reseller\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-15T17:40:38.632+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"reply_spf_fail\",\n            \"multiple_from_replyto\",\n            \"bulk\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"mail02.info.pentontech.com\",\n        \"ptr\": \"mail02.info.pentontech.com\",\n        \"ip\": \"142.0.174.40\",\n        \"postfix_queue_id\": \"72D23C0D7D\"\n    }\n]"}],"_postman_id":"275a0ded-4a30-4bdb-8945-09db2c9abe1e"}],"id":"e3a69436-a6fd-41a0-a896-3d533021658a","_postman_id":"e3a69436-a6fd-41a0-a896-3d533021658a","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Allow/Block Rules","item":[{"name":"User Group Allow/Block Rules","id":"383a255b-ce25-478a-b329-1373f554b485","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules","description":"<p>Get the allow and block rules for a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"bed51695-1235-4115-b971-6e46f6f1f83d","name":"User Group Allow/Block Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"50a99c566e65ddcecf29242f0f78e0d0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1f912035-bd95-4b5d-984e-39da7e667909"},{"key":"X-Runtime","value":"0.188105"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2968113,\n        \"entity\": {\n            \"id\": 109,\n            \"entity_type\": \"UserGroup\",\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"value\": \"domain.com\",\n        \"rule_type\": \"Allow\"\n    }\n]"}],"_postman_id":"383a255b-ce25-478a-b329-1373f554b485"},{"name":"Create User Group Allow/Block Rule","id":"457e4b2d-8110-434c-8245-a789521dc718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules","description":"<p>Create an allow or block rule for a user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"db69550e-7435-42be-92a2-e054c72b2653","name":"Create User Group Block Rule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/allow_block_rules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/allow_block_rules/2968114"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"0b5ad80742eda24f7c8b9966b7ab748d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f4d88981-0cb9-4a11-9774-936e43e240db"},{"key":"X-Runtime","value":"0.415998"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2968114,\n    \"entity\": {\n        \"id\": 109,\n        \"entity_type\": \"UserGroup\",\n        \"name\": \"CloudMail with Bracket\"\n    },\n    \"value\": \"block@domain.com\",\n    \"rule_type\": \"block\"\n}"}],"_postman_id":"457e4b2d-8110-434c-8245-a789521dc718"},{"name":"Delete Allow/Block Rule","id":"cbe668a5-01c2-4792-9c14-debf1070282a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}","description":"<p>Delete an allow or block rule.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","allow_block_rules","{{allow_block_rule_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"85bbe5d1-49fe-4ef2-9e62-1a3d85f36efa","name":"Delete Allow/Block Rule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f49f9830-b6c1-4dca-bfc3-7e6ea2a13305"},{"key":"X-Runtime","value":"0.243252"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cbe668a5-01c2-4792-9c14-debf1070282a"}],"id":"b86900e1-b874-49f2-8a4c-7f299d2694ef","_postman_id":"b86900e1-b874-49f2-8a4c-7f299d2694ef","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"User Groups","id":"9085e1a0-6387-485d-b309-27c71a95dbf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}}}/user_groups","description":"<p>Retrieve a list of user groups belonging to a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}}}","user_groups"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"6f70a005-09bd-4ce8-b784-0a7056c32d33","name":"Get User Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}}}/user_groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"5fd729c0503cfb8ba9021a5f63661fae\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"8b8b5526-de92-4f70-af8d-d58aaffdce84"},{"key":"X-Runtime","value":"1.699390"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 109,\n        \"name\": \"CloudMail with Bracket\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 56,\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-07-18T02:00:38.000Z\"\n    },\n    {\n        \"id\": 10786,\n        \"name\": \"Exchange+ 2013 with SecureStore\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 13,\n        \"created_at\": \"2013-07-09T20:37:45.000Z\",\n        \"updated_at\": \"2019-05-09T19:37:30.000Z\"\n    },\n    {\n        \"id\": 17158,\n        \"name\": \"Bracket (Attachment Filtering)\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 3,\n        \"created_at\": \"2016-07-28T15:40:44.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:48.000Z\"\n    },\n    {\n        \"id\": 17333,\n        \"name\": \"Bracket\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 1,\n        \"created_at\": \"2016-09-13T14:10:43.000Z\",\n        \"updated_at\": \"2019-07-16T02:00:57.000Z\"\n    },\n    {\n        \"id\": 18149,\n        \"name\": \"Continuity Bundle + SafeSend\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 1,\n        \"created_at\": \"2016-12-05T15:55:18.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:50.000Z\"\n    },\n    {\n        \"id\": 19264,\n        \"name\": \"Bracket + SecureStore\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2017-05-11T19:14:51.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:50.000Z\"\n    },\n    {\n        \"id\": 19543,\n        \"name\": \"Continuity Bundle (CloudFilter + XtraMail)\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 1,\n        \"created_at\": \"2017-07-11T15:52:50.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:50.000Z\"\n    },\n    {\n        \"id\": 19588,\n        \"name\": \"CloudFilter (SafeSend)\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 2,\n        \"created_at\": \"2017-07-19T18:36:59.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:50.000Z\"\n    },\n    {\n        \"id\": 19807,\n        \"name\": \"SecureStore\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2017-08-29T21:25:57.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:50.000Z\"\n    },\n    {\n        \"id\": 20350,\n        \"name\": \"CloudFilter\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 7,\n        \"created_at\": \"2017-11-20T16:51:47.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:50.000Z\"\n    },\n    {\n        \"id\": 26235,\n        \"name\": \"Discovered Users\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2019-05-07T21:46:55.000Z\",\n        \"updated_at\": \"2019-08-23T02:00:50.000Z\"\n    },\n    {\n        \"id\": 26259,\n        \"name\": \"Exchange+ 2016\",\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"user_count\": 0,\n        \"created_at\": \"2019-05-09T19:38:49.000Z\",\n        \"updated_at\": \"2019-07-16T02:00:59.000Z\"\n    }\n]"}],"_postman_id":"9085e1a0-6387-485d-b309-27c71a95dbf4"},{"name":"User Group","id":"8e283b6f-966e-4aad-892e-1b17e1be1764","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}","description":"<p>Get a single user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"048c549a-171f-4ba4-ab8b-750aa29542d6","name":"User Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_groups/109"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a5264a25efb32c13e1f354dec1d0f132\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e3291986-6a11-49d1-b312-50210b8bf660"},{"key":"X-Runtime","value":"0.825061"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 109,\n    \"name\": \"CloudMail with Bracket\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"user_count\": 56,\n    \"created_at\": \"2010-05-13T18:12:15.000Z\",\n    \"updated_at\": \"2019-07-18T02:00:38.000Z\"\n}"}],"_postman_id":"8e283b6f-966e-4aad-892e-1b17e1be1764"},{"name":"Create User Group","id":"c0711e10-efcb-4bc2-98e2-7dc19441591b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new user group\"\n}"},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_groups","description":"<p>Create a new user group under a domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","domains","{{domain_id}}","user_groups"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"5ee2179b-a30d-4dd2-81fa-75ba33b9c20d","name":"Create User Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"new user group\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/domains/{{domain_id}}/user_groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_groups/28493"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"18fc30e7ef435d08c869b4f676cc3e5e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"043f1724-fb95-4d48-9d3b-c190e69596ec"},{"key":"X-Runtime","value":"5.943313"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 28493,\n    \"name\": \"new user group\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"user_count\": 0,\n    \"created_at\": \"2020-01-02T18:41:30.000Z\",\n    \"updated_at\": \"2020-01-02T18:41:30.000Z\"\n}"}],"_postman_id":"c0711e10-efcb-4bc2-98e2-7dc19441591b"},{"name":"Edit User Group","id":"78cfcfd7-88d1-48a7-a5bd-57407a1588ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Different User Group Name\"\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}","description":"<p>Edit an existing user group.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"16ee379c-dcb3-4b7a-be7c-920a2e948b59","name":"Edit User Group","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Different User Group Name\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/user_groups/109"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"faa6da03bac7bac9a0c405e4f58cc7a4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4ba08cd8-5180-4934-a0c8-b82ff60647ee"},{"key":"X-Runtime","value":"10.249480"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 109,\n    \"name\": \"Different User Group Name\",\n    \"domain\": {\n        \"id\": 102,\n        \"name\": \"mpdemo.net\"\n    },\n    \"user_count\": 56,\n    \"created_at\": \"2010-05-13T18:12:15.000Z\",\n    \"updated_at\": \"2020-01-02T21:07:01.000Z\"\n}"}],"_postman_id":"78cfcfd7-88d1-48a7-a5bd-57407a1588ec"},{"name":"Delete User Group","id":"c40aeecf-3923-4db1-acd5-29cb1a217801","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"82a7844c-828c-489a-8cbe-006b15d0fafe","name":"Delete User Group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b6dfce1b-c104-4118-95fb-7ffe694bd60b"},{"key":"X-Runtime","value":"0.523060"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c40aeecf-3923-4db1-acd5-29cb1a217801"}],"id":"00b52d3a-39be-439d-9494-64006cf33ab6","description":"<p>Get, create, update, and delete user groups.</p>\n","_postman_id":"00b52d3a-39be-439d-9494-64006cf33ab6","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Users","item":[{"name":"Aliases","item":[{"name":"User Aliases","id":"f93401e4-d79c-4a87-869c-adfd223efce3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/aliases","description":"<p>Get all aliases belonging to a user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","aliases"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"3b52d321-ffaf-4064-a6d1-733a4b947a19","name":"User Aliases","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/aliases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a1e4bdb6706cbdb2a5ef5d66e9938f8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"62cc2a8a-48f8-4b98-bc51-16ed6418a6ba"},{"key":"X-Runtime","value":"0.273826"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1274646,\n        \"name\": \"alias-username\",\n        \"parent\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\",\n            \"primary_address\": \"abigail.thompson@mailprotector.com\"\n        },\n        \"user_type\": {\n            \"id\": 2,\n            \"name\": \"Alias\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"abigail.thompson@mailprotector.com\",\n        \"email_addresses\": [\n            \"alias-username@mailprotector.com\",\n            \"alias-username@mailprotector.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2020-01-15T17:28:56.000Z\",\n        \"updated_at\": \"2020-01-15T17:28:56.000Z\"\n    }\n]"}],"_postman_id":"f93401e4-d79c-4a87-869c-adfd223efce3"},{"name":"Create User Alias","id":"8abb3e3b-4b88-44a0-959f-5379e2f1c995","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"alias\": {\n\t\t\"name\": \"alias-username\"\n\t}\n}"},"url":"emailservice.io/api/v1/users/{{user_id}}/aliases","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","aliases"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"ef201c00-8e8b-4fdc-8dca-d46bd079457e","name":"Create User Alias","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"alias\": {\n\t\t\"name\": \"alias-username\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/users/{{user_id}}/aliases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/users/1274646"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"782c5dd7762f031d42174069dbbc07ae\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"696f445f-6135-4d8e-af1d-cd1448fafc4e"},{"key":"X-Runtime","value":"1.161436"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1274646,\n    \"name\": \"alias-username\",\n    \"parent\": {\n        \"id\": 883326,\n        \"name\": \"abigail.thompson\",\n        \"primary_address\": \"abigail.thompson@mailprotector.com\"\n    },\n    \"user_type\": {\n        \"id\": 2,\n        \"name\": \"Alias\"\n    },\n    \"user_group\": {\n        \"id\": 25212,\n        \"name\": \"Office 365\"\n    },\n    \"domain\": {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\"\n    },\n    \"primary_address\": \"abigail.thompson@mailprotector.com\",\n    \"email_addresses\": [\n        \"alias-username@mailprotector.com\",\n        \"alias-username@mailprotector.net\"\n    ],\n    \"first_name\": \"\",\n    \"last_name\": \"\",\n    \"created_at\": \"2020-01-15T17:28:56.000Z\",\n    \"updated_at\": \"2020-01-15T17:28:56.000Z\"\n}"}],"_postman_id":"8abb3e3b-4b88-44a0-959f-5379e2f1c995"}],"id":"64fd68cb-5883-448c-9b94-5bd7d35b9b1b","_postman_id":"64fd68cb-5883-448c-9b94-5bd7d35b9b1b","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Notification Destinations","item":[{"name":"User Notification Destination","id":"545a94df-e98a-483e-960b-f9aa11f3fb01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/notification_destinations","description":"<p>Get the notification destinations for a user. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","notification_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"0c278bef-e2fe-4080-aa99-71260b69df57","name":"User Notification Destination","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/notification_destinations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e6d6cd77c1bf143091ccf615c8d40b58\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"89ee9d85-7f09-4e90-ae00-0b1810dec957"},{"key":"X-Runtime","value":"8.580254"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1868,\n        \"value\": \"abigail.thompson@mailprotector.com\",\n        \"owner\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\",\n            \"entity_type\": \"User\"\n        },\n        \"level\": {\n            \"level_id\": 1,\n            \"level\": \"Normal\"\n        },\n        \"destination_type\": {\n            \"destination_type_id\": 1,\n            \"destination_type\": \"Email\"\n        }\n    },\n    {\n        \"id\": 1869,\n        \"value\": \"abigail.thompson@mailprotector.com\",\n        \"owner\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\",\n            \"entity_type\": \"User\"\n        },\n        \"level\": {\n            \"level_id\": 2,\n            \"level\": \"Urgent\"\n        },\n        \"destination_type\": {\n            \"destination_type_id\": 1,\n            \"destination_type\": \"Email\"\n        }\n    }\n]"}],"_postman_id":"545a94df-e98a-483e-960b-f9aa11f3fb01"},{"name":"Create User Notification Destination","id":"f3d84e6c-b4ca-40ac-a0fd-f552849e2e48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"new-destination@domain.com\",\n\t\"destination_type_id\": 1,\n\t\"level_id\": 1\n}"},"url":"emailservice.io/api/v1/users/{{user_id}}/notification_destinations","description":"<p>Create a new notification destination for a user. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","notification_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"14d48f04-b563-4847-a849-d2b740f0a76c","name":"Create User Notification Destination","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"new-destination@domain.com\",\n\t\"destination_type_id\": 1,\n\t\"level_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/users/{{user_id}}/notification_destinations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/notification_destinations/312879"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"01ed7f70e9aacabbea7d00dc61c6cb76\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5ffcbbba-1699-42e3-abc7-8f3ebb45ca7a"},{"key":"X-Runtime","value":"0.363529"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 312879,\n    \"value\": \"new-destination@domain.com\",\n    \"owner\": {\n        \"id\": 883326,\n        \"name\": \"abigail.thompson\",\n        \"entity_type\": \"User\"\n    },\n    \"level\": {\n        \"level_id\": 1,\n        \"level\": \"Normal\"\n    },\n    \"destination_type\": {\n        \"destination_type_id\": 1,\n        \"destination_type\": \"Email\"\n    }\n}"}],"_postman_id":"f3d84e6c-b4ca-40ac-a0fd-f552849e2e48"},{"name":"Delete Notification Destination","id":"2c2773c1-b2e1-48f1-b26c-ebc4e359207d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}","description":"<p>Remove a notification destination. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","notification_destinations","{{notification_destination_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"810beae8-e048-4c96-b93c-6616458e0bb2","name":"Delete Notification Destination","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6bf9d2fe-6206-4457-8b91-47c0f2d45c2b"},{"key":"X-Runtime","value":"0.259220"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2c2773c1-b2e1-48f1-b26c-ebc4e359207d"}],"id":"7dcae53a-95e3-4841-8ee3-dba7e4a674e3","description":"<p>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.</p>\n<h2 id=\"level-id\">Level ID</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Level</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Normal</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Urgent</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"destination-type-id\">Destination Type ID</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SMS</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"95b27853-ac05-4708-9a53-24693e381234","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4fb40283-35f1-4ee1-a14b-64e87300c3fc","type":"text/javascript","exec":[""]}}],"_postman_id":"7dcae53a-95e3-4841-8ee3-dba7e4a674e3","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Messages","item":[{"name":"User Messages","id":"d09e74b4-8da7-43d2-8509-d05b9dbac4bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/messages","description":"<p>Get a user's messages quarantined messages.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","messages"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"6f86419f-b3cb-47a8-bdb1-52614db33747","name":"User Messages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b63013427819d0c3d55c621f5b818993\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d76d8fdc-8305-4aad-a6e0-b93a61dfb474"},{"key":"X-Runtime","value":"4.452263"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1999362832,\n        \"uuid\": \"7BCCAD3C-373D-47FE-8B49-5127736736C0.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"448-OYL-033.0.3830.0.0.1552.9.2986531@em-sj-77.mktomail.com\",\n        \"to\": \"abigail.thompson@mailprotector.com\",\n        \"from\": \"Matt Langie <mattlangie@xant.ai>\",\n        \"cc\": \"\",\n        \"subject\": \"Fwd: Virtual Event for Sales Development\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-19T23:44:02.000Z\"\n    },\n    {\n        \"id\": 1998898382,\n        \"uuid\": \"D8D1A9D4-7903-4DA5-896E-075B04DB2134.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"suite32@bowl.amf.com\",\n        \"to\": \"abigail.thompson@mailprotector.com\",\n        \"from\": \"\\\"Bowlero\\\" <bowlero@bowl.bowlero.com>\",\n        \"cc\": \"\",\n        \"subject\": \"❗Tune in TODAY for the PBA Hall of Fame Classic!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 200\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-19T13:35:39.000Z\"\n    },\n    {\n        \"id\": 1996341988,\n        \"uuid\": \"B641EF62-8209-4CDF-97A9-96B430BCD42C.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"suite32@bowl.amf.com\",\n        \"to\": \"abigail.thompson@mailprotector.com\",\n        \"from\": \"\\\"Bowlero\\\" <bowlero@bowl.bowlero.com>\",\n        \"cc\": \"\",\n        \"subject\": \"The NEW MVB Rewards is Rolling Your Way Soon!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 280\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-17T02:04:27.000Z\"\n    },\n    {\n        \"id\": 1995863906,\n        \"uuid\": \"CF6A9872-F4C3-4968-AC69-2E9B1F01455D.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"suite32@bowl.amf.com\",\n        \"to\": \"abigail.thompson@mailprotector.com\",\n        \"from\": \"\\\"Bowlero\\\" <bowlero@bowl.bowlero.com>\",\n        \"cc\": \"\",\n        \"subject\": \"🏆 Kick Off the 2020 PBA Tour with the Hall of Fame Classic this Sunday!\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 240\n        },\n        \"results\": [\n            {\n                \"id\": 29,\n                \"mode\": \"inbound\",\n                \"title\": \"Barracuda Reputation Block List\",\n                \"description\": \"This message came from an IP on the Barracuda RBL. This list includes IP addresses that are known to send spam.\",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 6,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Length\",\n                \"description\": \"The length of the subject exceeded 50 characters.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 8,\n                \"mode\": \"inbound\",\n                \"title\": \"Subject Spaces\",\n                \"description\": \"The subject contained 10 or more spaces. This can be a tactic used by spammers to stuff content into a subject.\",\n                \"weight\": 20\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-16T18:06:01.000Z\"\n    },\n    {\n        \"id\": 1988868038,\n        \"uuid\": \"22620DE0-A0F3-48D1-89E4-8D056C1A3AD8.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"448-OYL-033.0.3590.0.0.1539.9.2986531@em-sj-77.mktomail.com\",\n        \"to\": \"abigail.thompson@mailprotector.com\",\n        \"from\": \"XANT <XANTMarketing@xant.ai>\",\n        \"cc\": \"\",\n        \"subject\": \"5 Mistakes Wreaking Havoc on Your Revenue\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 500\n        },\n        \"results\": [\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 62,\n                \"mode\": \"inbound\",\n                \"title\": \"Scam\",\n                \"description\": \"Scam patterns - Nigerian and variants + others such as fake eBay account verification requests.\",\n                \"weight\": 200\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-09T14:44:16.000Z\"\n    },\n    {\n        \"id\": 1987330888,\n        \"uuid\": \"02C2D0D1-AF92-4D5C-80A5-A72BF675C557.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"bounce-mc.us11_44738489.3568859-9c61c046bb@mail87.suw131.mcsv.net\",\n        \"to\": \"<abigail.thompson@mailprotector.com>\",\n        \"from\": \"=?utf-8?Q?Justine=20=E2=80=A2=20We=20Work=20Remotely?= <hello@weworkremotely.com>\",\n        \"cc\": \"\",\n        \"subject\": \"Save 15% on job postings all January long 🕺\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 280\n        },\n        \"results\": [\n            {\n                \"id\": 30,\n                \"mode\": \"inbound\",\n                \"title\": \"Spamcop\",\n                \"description\": \"This message came from an IP on the Spamcop DNS-based Blocking List. \",\n                \"weight\": 200\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 72,\n                \"mode\": \"inbound\",\n                \"title\": \"Promotions\",\n                \"description\": \"Advertisements, newsletters, and other types of marketing email that isn't necessarily spam.\",\n                \"weight\": 75\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T19:59:28.000Z\"\n    },\n    {\n        \"id\": 1986977668,\n        \"uuid\": \"9656D38B-F2EF-4825-990B-8B1B7A72623B.1\",\n        \"address\": \"abigail.thompson@mailprotector.com\",\n        \"recipients\": [\n            \"abigail.thompson@mailprotector.com\"\n        ],\n        \"sender\": \"448-OYL-033.0.3546.0.0.1537.9.2986531@em-sj-77.mktomail.com\",\n        \"to\": \"abigail.thompson@mailprotector.com\",\n        \"from\": \"XANT <XANTMarketing@xant.ai>\",\n        \"cc\": \"\",\n        \"subject\": \"Webinar: 5 Counterintuitive Sales Mistakes\",\n        \"direction\": \"inbound\",\n        \"quarantine_type\": \"spam\",\n        \"decision\": \"quarantine_spam\",\n        \"score\": {\n            \"score\": 600\n        },\n        \"results\": [\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            },\n            {\n                \"id\": 12,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass\",\n                \"description\": \"The SPF record designates the host to be allowed to send.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 171,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (From)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the from header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 174,\n                \"mode\": \"inbound\",\n                \"title\": \"SPF Pass (Reply-To)\",\n                \"description\": \"The SPF record designates the host to be allowed to send for an address in the reply-to header.\",\n                \"weight\": 0\n            },\n            {\n                \"id\": 70,\n                \"mode\": \"inbound\",\n                \"title\": \"Truncate\",\n                \"description\": \"The statistics indicate that it is virtually certain any messages coming from this IP are spam or malware.\",\n                \"weight\": 300\n            }\n        ],\n        \"released_at\": null,\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"message_date\": \"2020-01-07T13:45:18.000Z\"\n    }\n]"}],"_postman_id":"d09e74b4-8da7-43d2-8509-d05b9dbac4bc"},{"name":"Release Message","id":"6735fdb6-b55e-4b0c-bfdd-89eb8610567e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}"},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver","description":"<p>Release a message from the quarantine. The <code>recipients</code> field is optional and can be provided a comma separated string of email addresses to additionally deliver messages to.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","messages","{{message_id}}","deliver"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"0b1ab6b2-3df3-4928-823a-a6113fc194b5","name":"Release Message","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/messages/{{message_id}}/deliver"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e630abe8-ad9d-4ede-9c68-e88a74e273c7"},{"key":"X-Runtime","value":"1.371039"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6735fdb6-b55e-4b0c-bfdd-89eb8610567e"},{"name":"Release Multiple Messages","id":"0ceb8597-a7fc-48ad-ae0a-5a66fdc38d5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}"},"url":"emailservice.io/api/v1/users/{{user_id}}/messages/deliver_many","description":"<p>Release more than one message from the quarantine at a time. Will return the ID's of the messages that were released. Providing <code>all_selected: true</code> will release all currently held messages from a user's quarantine. </p>\n<p><strong>Note</strong>: 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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","messages","deliver_many"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"9fa395bb-f8e3-45ea-8645-62cd6e5b12c6","name":"Release Multiple Messages","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"include_original_recipients\": 1,\n\t\"recipients\": \"address1@domain.com, address2@domain.com\",\n\t\"all_selected\": \"false\",\n\t\"ids\": \"2015573567,2015573173\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/users/{{user_id}}/messages/deliver_many"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3f602713b4241cb2e3030443e7df8e91\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3dab7f58-54e3-432c-8c26-903a7cf7d875"},{"key":"X-Runtime","value":"11.883478"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"delivered_messages\": [\n        2015573173,\n        2015573567\n    ]\n}"}],"_postman_id":"0ceb8597-a7fc-48ad-ae0a-5a66fdc38d5d"}],"id":"243a691d-bd84-4a6c-b3cf-ff43ea1e5c41","_postman_id":"243a691d-bd84-4a6c-b3cf-ff43ea1e5c41","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Logs","item":[{"name":"User Logs","id":"97209ae8-7726-4e2f-b8ca-8adc78ea0943","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/logs","description":"<p>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.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","logs"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"425d7c47-4d82-4cda-9996-d031f4b45c1d","name":"User Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"85d36b9abb5065ccb24b94c334c45ecd\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e12e71ff-8bf3-458f-a945-9411b7069dfc"},{"key":"X-Runtime","value":"1.168470"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"98976b29-a69c-4684-ae11-d2c5577e54e4\",\n        \"uuid\": \"98976b29-a69c-4684-ae11-d2c5577e54e4\",\n        \"sender\": \"justin.hathaway@mailprotector.com\",\n        \"from\": \"Justin Hathaway <justin.hathaway@mailprotector.com>\",\n        \"recipient\": \"abigail.thompson@mailprotector.com\",\n        \"score\": {\n            \"score\": 0\n        },\n        \"direction\": \"inbound\",\n        \"origin\": \"34.194.188.63\",\n        \"subject\": \"Mailprotector API Test Message\",\n        \"user\": {\n            \"id\": 883326,\n            \"name\": \"abigail.thompson\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"customer\": {\n            \"id\": 329,\n            \"name\": \"Mailprotector group\"\n        },\n        \"reseller\": {\n            \"id\": 188,\n            \"name\": \"Mailprotector Direct (old)\"\n        },\n        \"provider\": {\n            \"id\": 65,\n            \"name\": \"United States\"\n        },\n        \"received_at\": \"2020-01-20T22:09:47.872+00:00\",\n        \"results_data\": [\n            \"spf_pass\",\n            \"from_spf_pass\",\n            \"clean\"\n        ],\n        \"rule_ids\": [],\n        \"helo\": \"otransport-22.outbound.emailsrv.net\",\n        \"ptr\": \"otransport-22.outbound.emailsrv.net\",\n        \"ip\": \"34.194.188.63\",\n        \"postfix_queue_id\": \"94ECB612C6\"\n    }\n]"}],"_postman_id":"97209ae8-7726-4e2f-b8ca-8adc78ea0943"}],"id":"c6eb912b-8483-4351-b80a-92355cdf7799","_postman_id":"c6eb912b-8483-4351-b80a-92355cdf7799","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Allow/Block Rules","item":[{"name":"User Allow/Block Rules","id":"b46a72dc-2781-4be8-b05a-5d1e2f8b4629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/allow_block_rules","description":"<p>Get the allow and block rules for a user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"459fdb21-2311-4c4f-bb61-edf54d799911","name":"User Allow/Block Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}/allow_block_rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e4b27e9206fc2a8ba16288a811571103\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"df42e46b-57e8-4d71-89e9-537b61a2859f"},{"key":"X-Runtime","value":"0.784350"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1311824,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"att-online.services.1593922978@emailff.att-mail.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1497522,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"automated@airbnb.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1422347,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"bounces+1611861-9fe1-abigail.thompson=mailprotector.com@mail6.shared.hubspot.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2200906,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"Bowlero@inmomentfeedback.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1846554,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"customer-support@simplisafe.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1497519,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"express@airbnb.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1703249,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"gccustservice@confirm.starwoodhotels.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1495539,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"info@c.hyatt.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2027879,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"no-reply@customercommunications.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2041358,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"no-reply@fiverr.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2032837,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"no-reply@notify.email.aa.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1301280,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"nobody@s13221.pbxtra.fonality.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1640111,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"noreply@applytojob.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2066415,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"reservations@res-marriott.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2198567,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"Services@sertifi.net\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1736073,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"southwestairlines@iluv.southwest.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2040438,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"support@tinyboards.co\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 2200908,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"TheWestinPoinsett@starwoodhotels.com\",\n        \"rule_type\": \"Allow\"\n    },\n    {\n        \"id\": 1756343,\n        \"entity\": {\n            \"id\": 883326,\n            \"entity_type\": \"User\",\n            \"name\": \"abigail.thompson\"\n        },\n        \"value\": \"ups@upsemail.com\",\n        \"rule_type\": \"Allow\"\n    }\n]"}],"_postman_id":"b46a72dc-2781-4be8-b05a-5d1e2f8b4629"},{"name":"Create User Allow/Block Rule","id":"822f27d4-a9ad-435f-8ac5-6e243b492ae0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}"},"url":"emailservice.io/api/v1/users/{{user_id}}/allow_block_rules","description":"<p>Create an allow or block rule for a user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","allow_block_rules"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"cd5120f6-d782-4681-aef0-cf634dd10de7","name":"Create User Allow/Block Rule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"block@domain.com\",\n\t\"rule_type\": \"block\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/users/{{user_id}}/allow_block_rules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/allow_block_rules/2968115"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"7acd69d7d732d00220f1bd6d7ca8d317\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"9e14b528-6c62-47e6-ae5f-7d3c96f11301"},{"key":"X-Runtime","value":"0.308933"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2968115,\n    \"entity\": {\n        \"id\": 883326,\n        \"entity_type\": \"User\",\n        \"name\": \"abigail.thompson\"\n    },\n    \"value\": \"block@domain.com\",\n    \"rule_type\": \"block\"\n}"}],"_postman_id":"822f27d4-a9ad-435f-8ac5-6e243b492ae0"},{"name":"Delete Allow/Block Rule","id":"83855e82-969b-4245-998d-3849a190410e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}","description":"<p>Delete an allow or block rule. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","allow_block_rules","{{allow_block_rule_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"b02c3e58-7211-40eb-a348-a00adb0f0a83","name":"Delete Allow/Block Rule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/allow_block_rules/{{allow_block_rule_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"141556ae-9be4-425e-b181-37149ef78c6a"},{"key":"X-Runtime","value":"0.140735"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"83855e82-969b-4245-998d-3849a190410e"}],"id":"929888d7-fbcb-42dd-8619-367d10823c7c","_postman_id":"929888d7-fbcb-42dd-8619-367d10823c7c","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Users","id":"44bbdba9-8364-4d7d-b836-512fdcebc1a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/{{entity}}/{{entity_id}}/users","description":"<p>Get all users belonging to an entity.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","{{entity}}","{{entity_id}}","users"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"7b07d75f-4d59-429e-8747-c7f8880a3b73","name":"Get Users Under Reseller","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"94f41996df7342de708623a44dd45abe\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2511b31b-6462-4144-9e9b-fe886cab6afc"},{"key":"X-Runtime","value":"6.051138"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 883326,\n        \"name\": \"abigail.thompson\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 11,\n            \"name\": \"Unlicensed User\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"abigail.thompson@mailprotector.com\",\n        \"email_addresses\": [\n            \"abigail.thompson@mailprotector.com\",\n            \"abigail.thompson@mailprotector.net\"\n        ],\n        \"first_name\": \"Abigail\",\n        \"last_name\": \"Thompson\",\n        \"created_at\": \"2017-10-06T18:31:17.000Z\",\n        \"updated_at\": \"2019-10-21T12:20:22.000Z\"\n    },\n    {\n        \"id\": 252227,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6241,\n            \"name\": \"ocxnet.com user group\"\n        },\n        \"domain\": {\n            \"id\": 8239,\n            \"name\": \"ocxnet.com\"\n        },\n        \"primary_address\": \"abuse@ocxnet.com\",\n        \"email_addresses\": [\n            \"abuse@ocxnet.com\"\n        ],\n        \"first_name\": \"Domain\",\n        \"last_name\": \"Abuse\",\n        \"created_at\": \"2010-11-20T09:40:24.000Z\",\n        \"updated_at\": \"2014-03-28T20:22:01.000Z\"\n    },\n    {\n        \"id\": 38543,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"abuse@mailprotector.biz\",\n        \"email_addresses\": [\n            \"abuse@mailprotector.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:31:33.000Z\",\n        \"updated_at\": \"2019-10-21T07:00:07.000Z\"\n    },\n    {\n        \"id\": 250261,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6169,\n            \"name\": \"vxray2.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8149,\n            \"name\": \"vxray2.out\"\n        },\n        \"primary_address\": \"abuse@vxray2.out\",\n        \"email_addresses\": [\n            \"abuse@vxray2.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:21:38.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250265,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6171,\n            \"name\": \"vxray3.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8151,\n            \"name\": \"vxray3.out\"\n        },\n        \"primary_address\": \"abuse@vxray3.out\",\n        \"email_addresses\": [\n            \"abuse@vxray3.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:21:56.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250269,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6173,\n            \"name\": \"vxray4.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8153,\n            \"name\": \"vxray4.out\"\n        },\n        \"primary_address\": \"abuse@vxray4.out\",\n        \"email_addresses\": [\n            \"abuse@vxray4.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:22:14.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250273,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6175,\n            \"name\": \"vxray5.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8155,\n            \"name\": \"vxray5.out\"\n        },\n        \"primary_address\": \"abuse@vxray5.out\",\n        \"email_addresses\": [\n            \"abuse@vxray5.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:22:32.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250277,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6177,\n            \"name\": \"mpsupport.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8157,\n            \"name\": \"mpsupport.out\"\n        },\n        \"primary_address\": \"abuse@mpsupport.out\",\n        \"email_addresses\": [\n            \"abuse@mpsupport.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:22:49.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250281,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6179,\n            \"name\": \"calelite.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8159,\n            \"name\": \"calelite.out\"\n        },\n        \"primary_address\": \"abuse@calelite.out\",\n        \"email_addresses\": [\n            \"abuse@calelite.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:23:07.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250285,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6181,\n            \"name\": \"interflexgroup.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8161,\n            \"name\": \"interflexgroup.out\"\n        },\n        \"primary_address\": \"abuse@interflexgroup.out\",\n        \"email_addresses\": [\n            \"abuse@interflexgroup.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:23:25.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250289,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6183,\n            \"name\": \"interflexgroupcouk.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8163,\n            \"name\": \"interflexgroupcouk.out\"\n        },\n        \"primary_address\": \"abuse@interflexgroupcouk.out\",\n        \"email_addresses\": [\n            \"abuse@interflexgroupcouk.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:23:43.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250293,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6185,\n            \"name\": \"matsysinc.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8165,\n            \"name\": \"matsysinc.out\"\n        },\n        \"primary_address\": \"abuse@matsysinc.out\",\n        \"email_addresses\": [\n            \"abuse@matsysinc.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:01.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250297,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6187,\n            \"name\": \"mncpap.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8167,\n            \"name\": \"mncpap.out\"\n        },\n        \"primary_address\": \"abuse@mncpap.out\",\n        \"email_addresses\": [\n            \"abuse@mncpap.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:19.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250301,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6189,\n            \"name\": \"e-inbusiness.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8169,\n            \"name\": \"e-inbusiness.out\"\n        },\n        \"primary_address\": \"abuse@e-inbusiness.out\",\n        \"email_addresses\": [\n            \"abuse@e-inbusiness.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:37.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 250305,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6191,\n            \"name\": \"nzymes.out user group\"\n        },\n        \"domain\": {\n            \"id\": 8171,\n            \"name\": \"nzymes.out\"\n        },\n        \"primary_address\": \"abuse@nzymes.out\",\n        \"email_addresses\": [\n            \"abuse@nzymes.out\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-11-20T09:24:56.000Z\",\n        \"updated_at\": \"2011-02-28T16:29:25.000Z\"\n    },\n    {\n        \"id\": 279309,\n        \"name\": \"aca\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"aca@mailprotector.biz\",\n        \"email_addresses\": [\n            \"aca@mailprotector.biz\"\n        ],\n        \"first_name\": \"ACA\",\n        \"last_name\": \"Email Addy\",\n        \"created_at\": \"2011-01-13T18:19:19.000Z\",\n        \"updated_at\": \"2019-10-21T07:00:12.000Z\"\n    },\n    {\n        \"id\": 615532,\n        \"name\": \"accounting\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6241,\n            \"name\": \"ocxnet.com user group\"\n        },\n        \"domain\": {\n            \"id\": 8239,\n            \"name\": \"ocxnet.com\"\n        },\n        \"primary_address\": \"accounting@ocxnet.com\",\n        \"email_addresses\": [\n            \"accounting@ocxnet.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-03-28T20:21:12.000Z\",\n        \"updated_at\": \"2019-10-21T09:02:18.000Z\"\n    },\n    {\n        \"id\": 683333,\n        \"name\": \"adam\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 6241,\n            \"name\": \"ocxnet.com user group\"\n        },\n        \"domain\": {\n            \"id\": 8239,\n            \"name\": \"ocxnet.com\"\n        },\n        \"primary_address\": \"adam@ocxnet.com\",\n        \"email_addresses\": [\n            \"adam@ocxnet.com\"\n        ],\n        \"first_name\": \"Adam\",\n        \"last_name\": \"Dilk\",\n        \"created_at\": \"2015-05-11T16:21:09.000Z\",\n        \"updated_at\": \"2019-10-21T09:02:19.000Z\"\n    },\n    {\n        \"id\": 759339,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 17596,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"addressdiscovery@emailservice.io\",\n        \"email_addresses\": [\n            \"addressdiscovery@emailservice.io\",\n            \"addressdiscovery@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-10-14T20:28:09.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 768865,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15866,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17044,\n            \"name\": \"exchange2016.mpdemo.net\"\n        },\n        \"primary_address\": \"addressdiscovery@exchange2016.mpdemo.net\",\n        \"email_addresses\": [\n            \"addressdiscovery@exchange2016.mpdemo.net\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-11-04T18:19:14.000Z\",\n        \"updated_at\": \"2019-10-21T05:00:25.000Z\"\n    },\n    {\n        \"id\": 674898,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15003,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"admin@emailservice.io\",\n        \"email_addresses\": [\n            \"admin@emailservice.io\",\n            \"admin@exchange.emailservice.io\",\n            \"ssl@emailservice.io\",\n            \"ssl@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2015-02-26T20:09:36.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 734037,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 16829,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17995,\n            \"name\": \"forcencrypt.email\"\n        },\n        \"primary_address\": \"admin@forcencrypt.email\",\n        \"email_addresses\": [\n            \"admin@forcencrypt.email\",\n            \"admin@forcencrypt.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2016-06-20T19:25:04.000Z\",\n        \"updated_at\": \"2019-03-12T07:37:39.000Z\"\n    },\n    {\n        \"id\": 38517,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1075,\n            \"name\": \"mailprotectorupdate.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1483,\n            \"name\": \"mailprotectorupdate.biz\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.biz\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:29:29.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:09.000Z\"\n    },\n    {\n        \"id\": 38523,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1077,\n            \"name\": \"mailprotectorupdate.net user group\"\n        },\n        \"domain\": {\n            \"id\": 1485,\n            \"name\": \"mailprotectorupdate.net\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.net\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:30:13.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:07.000Z\"\n    },\n    {\n        \"id\": 628092,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 13540,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15288,\n            \"name\": \"cloudmail.net\"\n        },\n        \"primary_address\": \"admin@cloudmail.net\",\n        \"email_addresses\": [\n            \"admin@cloudmail.net\",\n            \"postmaster@cloudmail.net\"\n        ],\n        \"first_name\": \"CloudMail\",\n        \"last_name\": \"Admin\",\n        \"created_at\": \"2014-05-23T21:54:42.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:00.000Z\"\n    }\n]"},{"id":"9bfcbd09-aa9a-48c7-a782-ea23065a710f","name":"Get Users Under Customer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"total\":218,\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"4d41679df0feb25f9a7fd0350408a1f8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"a259909c-2664-484d-bff3-0af260117f9d"},{"key":"X-Runtime","value":"1.716526"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 883326,\n        \"name\": \"abigail.thompson\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 11,\n            \"name\": \"Unlicensed User\"\n        },\n        \"user_group\": {\n            \"id\": 25212,\n            \"name\": \"Office 365\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"abigail.thompson@mailprotector.com\",\n        \"email_addresses\": [\n            \"abigail.thompson@mailprotector.com\",\n            \"abigail.thompson@mailprotector.net\"\n        ],\n        \"first_name\": \"Abigail\",\n        \"last_name\": \"Thompson\",\n        \"created_at\": \"2017-10-06T18:31:17.000Z\",\n        \"updated_at\": \"2019-10-21T12:20:22.000Z\"\n    },\n    {\n        \"id\": 38543,\n        \"name\": \"abuse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"abuse@mailprotector.biz\",\n        \"email_addresses\": [\n            \"abuse@mailprotector.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:31:33.000Z\",\n        \"updated_at\": \"2019-10-21T07:00:07.000Z\"\n    },\n    {\n        \"id\": 279309,\n        \"name\": \"aca\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"aca@mailprotector.biz\",\n        \"email_addresses\": [\n            \"aca@mailprotector.biz\"\n        ],\n        \"first_name\": \"ACA\",\n        \"last_name\": \"Email Addy\",\n        \"created_at\": \"2011-01-13T18:19:19.000Z\",\n        \"updated_at\": \"2019-10-21T07:00:12.000Z\"\n    },\n    {\n        \"id\": 759339,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 17596,\n            \"name\": \"CloudFilter\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"addressdiscovery@emailservice.io\",\n        \"email_addresses\": [\n            \"addressdiscovery@emailservice.io\",\n            \"addressdiscovery@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-10-14T20:28:09.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 768865,\n        \"name\": \"addressdiscovery\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15866,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17044,\n            \"name\": \"exchange2016.mpdemo.net\"\n        },\n        \"primary_address\": \"addressdiscovery@exchange2016.mpdemo.net\",\n        \"email_addresses\": [\n            \"addressdiscovery@exchange2016.mpdemo.net\"\n        ],\n        \"first_name\": \"Address\",\n        \"last_name\": \"Discovery\",\n        \"created_at\": \"2016-11-04T18:19:14.000Z\",\n        \"updated_at\": \"2019-10-21T05:00:25.000Z\"\n    },\n    {\n        \"id\": 674898,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 15003,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 16370,\n            \"name\": \"emailservice.io\"\n        },\n        \"primary_address\": \"admin@emailservice.io\",\n        \"email_addresses\": [\n            \"admin@emailservice.io\",\n            \"admin@exchange.emailservice.io\",\n            \"ssl@emailservice.io\",\n            \"ssl@exchange.emailservice.io\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2015-02-26T20:09:36.000Z\",\n        \"updated_at\": \"2019-03-12T07:32:31.000Z\"\n    },\n    {\n        \"id\": 734037,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 16829,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 17995,\n            \"name\": \"forcencrypt.email\"\n        },\n        \"primary_address\": \"admin@forcencrypt.email\",\n        \"email_addresses\": [\n            \"admin@forcencrypt.email\",\n            \"admin@forcencrypt.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2016-06-20T19:25:04.000Z\",\n        \"updated_at\": \"2019-03-12T07:37:39.000Z\"\n    },\n    {\n        \"id\": 38517,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1075,\n            \"name\": \"mailprotectorupdate.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1483,\n            \"name\": \"mailprotectorupdate.biz\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.biz\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:29:29.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:09.000Z\"\n    },\n    {\n        \"id\": 38523,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1077,\n            \"name\": \"mailprotectorupdate.net user group\"\n        },\n        \"domain\": {\n            \"id\": 1485,\n            \"name\": \"mailprotectorupdate.net\"\n        },\n        \"primary_address\": \"admin@mailprotectorupdate.net\",\n        \"email_addresses\": [\n            \"admin@mailprotectorupdate.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:30:13.000Z\",\n        \"updated_at\": \"2012-08-02T21:34:07.000Z\"\n    },\n    {\n        \"id\": 628092,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 13540,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15288,\n            \"name\": \"cloudmail.net\"\n        },\n        \"primary_address\": \"admin@cloudmail.net\",\n        \"email_addresses\": [\n            \"admin@cloudmail.net\",\n            \"postmaster@cloudmail.net\"\n        ],\n        \"first_name\": \"CloudMail\",\n        \"last_name\": \"Admin\",\n        \"created_at\": \"2014-05-23T21:54:42.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:00.000Z\"\n    },\n    {\n        \"id\": 895646,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 18925,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 20043,\n            \"name\": \"bracket.email\"\n        },\n        \"primary_address\": \"admin@bracket.email\",\n        \"email_addresses\": [\n            \"admin@bracket.email\",\n            \"admin@justbracket.email\",\n            \"admin@justbracket.it\",\n            \"complaints@bracket.email\",\n            \"complaints@justbracket.email\",\n            \"complaints@justbracket.it\",\n            \"dmarc@bracket.email\",\n            \"dmarc@justbracket.email\",\n            \"dmarc@justbracket.it\"\n        ],\n        \"first_name\": \"Bracket\",\n        \"last_name\": \"Admin\",\n        \"created_at\": \"2017-11-13T19:29:14.000Z\",\n        \"updated_at\": \"2019-03-12T07:56:22.000Z\"\n    },\n    {\n        \"id\": 643824,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 14004,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15648,\n            \"name\": \"xtramail.email\"\n        },\n        \"primary_address\": \"admin@xtramail.email\",\n        \"email_addresses\": [\n            \"admin@xtramail.email\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-07-17T21:04:24.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:41.000Z\"\n    },\n    {\n        \"id\": 643826,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 14006,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15650,\n            \"name\": \"cloudmail.email\"\n        },\n        \"primary_address\": \"admin@cloudmail.email\",\n        \"email_addresses\": [\n            \"admin@cloudmail.email\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-07-17T21:08:18.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:41.000Z\"\n    },\n    {\n        \"id\": 643828,\n        \"name\": \"admin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 14008,\n            \"name\": \"Main\"\n        },\n        \"domain\": {\n            \"id\": 15652,\n            \"name\": \"securestore.email\"\n        },\n        \"primary_address\": \"admin@securestore.email\",\n        \"email_addresses\": [\n            \"admin@securestore.email\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-07-17T21:09:51.000Z\",\n        \"updated_at\": \"2019-03-12T07:30:41.000Z\"\n    },\n    {\n        \"id\": 831283,\n        \"name\": \"administrator\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1071,\n            \"name\": \"mailprotector.com.au user group\"\n        },\n        \"domain\": {\n            \"id\": 1477,\n            \"name\": \"mailprotector.com.au\"\n        },\n        \"primary_address\": \"administrator@mailprotector.com.au\",\n        \"email_addresses\": [\n            \"administrator@mailprotector.com.au\",\n            \"administrator@mailprotector.net.au\",\n            \"admin@mailprotector.com.au\",\n            \"admin@mailprotector.net.au\",\n            \"hostmaster@mailprotector.com.au\",\n            \"hostmaster@mailprotector.net.au\",\n            \"postmaster@mailprotector.com.au\",\n            \"postmaster@mailprotector.net.au\",\n            \"webmaster@mailprotector.com.au\",\n            \"webmaster@mailprotector.net.au\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-04-03T15:48:13.000Z\",\n        \"updated_at\": \"2019-10-21T03:03:32.000Z\"\n    },\n    {\n        \"id\": 831293,\n        \"name\": \"administrator\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1073,\n            \"name\": \"mailprotector.co.uk user group\"\n        },\n        \"domain\": {\n            \"id\": 1481,\n            \"name\": \"mailprotector.co.uk\"\n        },\n        \"primary_address\": \"administrator@mailprotector.co.uk\",\n        \"email_addresses\": [\n            \"administrator@mailprotector.co.uk\",\n            \"admin@mailprotector.co.uk\"\n        ],\n        \"first_name\": \"Admin\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-04-03T15:59:15.000Z\",\n        \"updated_at\": \"2017-04-03T15:59:15.000Z\"\n    },\n    {\n        \"id\": 589780,\n        \"name\": \"administrator\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"administrator@mailprotector.com\",\n        \"email_addresses\": [\n            \"administrator@mailprotector.com\",\n            \"administrator@mailprotector.net\",\n            \"abuse@mailprotector.com\",\n            \"abuse@mailprotector.net\",\n            \"postmaster@mailprotector.com\",\n            \"postmaster@mailprotector.net\",\n            \"admin@mailprotector.com\",\n            \"admin@mailprotector.net\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2013-12-02T17:24:24.000Z\",\n        \"updated_at\": \"2019-06-08T00:19:20.000Z\"\n    },\n    {\n        \"id\": 1114288,\n        \"name\": \"admins\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 3,\n            \"name\": \"Mailing List\"\n        },\n        \"user_group\": {\n            \"id\": 25307,\n            \"name\": \"Office 365 - No Bracket\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"admins@mailprotector.com\",\n        \"email_addresses\": [\n            \"admins@mailprotector.com\",\n            \"admins@mailprotector.net\"\n        ],\n        \"first_name\": \"Admins\",\n        \"last_name\": \"\",\n        \"created_at\": \"2019-03-12T15:41:28.000Z\",\n        \"updated_at\": \"2019-06-08T01:51:30.000Z\"\n    },\n    {\n        \"id\": 38545,\n        \"name\": \"alerts\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 1081,\n            \"name\": \"mailprotector.biz user group\"\n        },\n        \"domain\": {\n            \"id\": 1489,\n            \"name\": \"mailprotector.biz\"\n        },\n        \"primary_address\": \"alerts@mailprotector.biz\",\n        \"email_addresses\": [\n            \"alerts@mailprotector.biz\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-08-23T19:31:33.000Z\",\n        \"updated_at\": \"2019-10-21T07:00:07.000Z\"\n    },\n    {\n        \"id\": 985502,\n        \"name\": \"alison.earley\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"alison.earley@mailprotector.com\",\n        \"email_addresses\": [\n            \"alison.earley@mailprotector.com\",\n            \"alison.earley@mailprotector.net\"\n        ],\n        \"first_name\": \"Alison\",\n        \"last_name\": \"Earley\",\n        \"created_at\": \"2018-05-11T15:31:29.000Z\",\n        \"updated_at\": \"2019-10-21T12:31:03.000Z\"\n    },\n    {\n        \"id\": 688238,\n        \"name\": \"alison.vyse\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 7,\n            \"name\": \"Equipment\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"alison.vyse@mailprotector.com\",\n        \"email_addresses\": [\n            \"alison.vyse@mailprotector.com\",\n            \"alison.vyse@mailprotector.net\"\n        ],\n        \"first_name\": \"Alison\",\n        \"last_name\": \"Vyse\",\n        \"created_at\": \"2015-06-25T18:54:30.000Z\",\n        \"updated_at\": \"2019-06-08T00:22:12.000Z\"\n    },\n    {\n        \"id\": 1055444,\n        \"name\": \"alma.figueroa\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"alma.figueroa@mailprotector.com\",\n        \"email_addresses\": [\n            \"alma.figueroa@mailprotector.com\",\n            \"alma.figueroa@mailprotector.net\",\n            \"alma@mailprotector.com\",\n            \"alma@mailprotector.net\"\n        ],\n        \"first_name\": \"Alma\",\n        \"last_name\": \"Figueroa\",\n        \"created_at\": \"2018-10-25T19:35:51.000Z\",\n        \"updated_at\": \"2019-10-21T12:38:18.000Z\"\n    },\n    {\n        \"id\": 1001916,\n        \"name\": \"amy.wright.archive\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"amy.wright.archive@mailprotector.com\",\n        \"email_addresses\": [\n            \"amy.wright.archive@mailprotector.com\",\n            \"amy.wright.archive@mailprotector.net\"\n        ],\n        \"first_name\": \"Amy\",\n        \"last_name\": \"Wright\",\n        \"created_at\": \"2018-06-29T18:20:26.000Z\",\n        \"updated_at\": \"2019-10-21T12:32:51.000Z\"\n    },\n    {\n        \"id\": 945189,\n        \"name\": \"andrew.gehrt\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"andrew.gehrt@mailprotector.com\",\n        \"email_addresses\": [\n            \"andrew.gehrt@mailprotector.com\",\n            \"andrew.gehrt@mailprotector.net\",\n            \"andrew@mailprotector.com\",\n            \"andrew@mailprotector.net\"\n        ],\n        \"first_name\": \"Andrew\",\n        \"last_name\": \"Gehrt\",\n        \"created_at\": \"2018-02-23T16:20:33.000Z\",\n        \"updated_at\": \"2019-10-21T12:28:45.000Z\"\n    },\n    {\n        \"id\": 728356,\n        \"name\": \"andy.barringer\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 16148,\n            \"name\": \"Exchange 2016\"\n        },\n        \"domain\": {\n            \"id\": 1473,\n            \"name\": \"mailprotector.com\"\n        },\n        \"primary_address\": \"andy.barringer@mailprotector.com\",\n        \"email_addresses\": [\n            \"andy.barringer@mailprotector.com\",\n            \"andy.barringer@mailprotector.net\",\n            \"andy@mailprotector.com\",\n            \"andy@mailprotector.net\",\n            \"wanker@mailprotector.com\",\n            \"wanker@mailprotector.net\",\n            \"andy.bollinger@mailprotector.com\",\n            \"andy.bollinger@mailprotector.net\",\n            \"andrew.barringer@mailprotector.com\",\n            \"andrew.barringer@mailprotector.net\"\n        ],\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Barringer\",\n        \"created_at\": \"2016-05-12T19:27:40.000Z\",\n        \"updated_at\": \"2019-10-21T12:05:28.000Z\"\n    }\n]"},{"id":"c6ee2750-ae7c-4a1c-99e8-7676f551fa86","name":"Get Users Under User Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"total\":23,\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"460c50b2e8113e18df198fbb72a2fab8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2cf8348d-71b6-4b63-8b9b-f76881d9cfd0"},{"key":"X-Runtime","value":"2.383050"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 826457,\n        \"name\": \"andy\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"andy@mpdemo.net\",\n        \"email_addresses\": [\n            \"andy@mpdemo.net\",\n            \"andy@exchange.mpdemo.net\",\n            \"andy@test.domain.com\",\n            \"andyb@mpdemo.net\",\n            \"andyb@exchange.mpdemo.net\",\n            \"andyb@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-03-10T16:14:42.000Z\",\n        \"updated_at\": \"2019-10-21T15:13:43.000Z\"\n    },\n    {\n        \"id\": 700549,\n        \"name\": \"athena\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"athena@mpdemo.net\",\n        \"email_addresses\": [\n            \"athena@mpdemo.net\",\n            \"athena@exchange.mpdemo.net\",\n            \"athena@test.domain.com\"\n        ],\n        \"first_name\": \"Athena \",\n        \"last_name\": \"\",\n        \"created_at\": \"2015-10-20T14:18:11.000Z\",\n        \"updated_at\": \"2019-10-21T15:08:54.000Z\"\n    },\n    {\n        \"id\": 9634,\n        \"name\": \"ben\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"ben@mpdemo.net\",\n        \"email_addresses\": [\n            \"ben@mpdemo.net\",\n            \"ben@exchange.mpdemo.net\",\n            \"ben@test.domain.com\",\n            \"webmaster@mpdemo.net\",\n            \"webmaster@exchange.mpdemo.net\",\n            \"webmaster@test.domain.com\",\n            \"bentest@mpdemo.net\",\n            \"bentest@exchange.mpdemo.net\",\n            \"bentest@test.domain.com\",\n            \"ben1.0@mpdemo.net\",\n            \"ben1.0@exchange.mpdemo.net\",\n            \"ben1.0@test.domain.com\"\n        ],\n        \"first_name\": \"Ben\",\n        \"last_name\": \"Hathaway\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-10-21T15:05:32.000Z\"\n    },\n    {\n        \"id\": 848411,\n        \"name\": \"bill\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"bill@mpdemo.net\",\n        \"email_addresses\": [\n            \"bill@mpdemo.net\",\n            \"bill@exchange.mpdemo.net\",\n            \"bill@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:16:20.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:23.000Z\"\n    },\n    {\n        \"id\": 871139,\n        \"name\": \"carnegie\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"carnegie@mpdemo.net\",\n        \"email_addresses\": [\n            \"carnegie@mpdemo.net\",\n            \"carnegie@exchange.mpdemo.net\",\n            \"carnegie@test.domain.com\"\n        ],\n        \"first_name\": \"Carnegie\",\n        \"last_name\": \"User\",\n        \"created_at\": \"2017-08-11T19:00:29.000Z\",\n        \"updated_at\": \"2019-10-21T14:06:28.000Z\"\n    },\n    {\n        \"id\": 865693,\n        \"name\": \"charles\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"charles@mpdemo.net\",\n        \"email_addresses\": [\n            \"charles@mpdemo.net\",\n            \"charles@exchange.mpdemo.net\",\n            \"charles@test.domain.com\",\n            \"thehulk@mpdemo.net\",\n            \"thehulk@exchange.mpdemo.net\",\n            \"thehulk@test.domain.com\",\n            \"violation.alert@mpdemo.net\",\n            \"violation.alert@exchange.mpdemo.net\",\n            \"violation.alert@test.domain.com\",\n            \"yolo@mpdemo.net\",\n            \"yolo@exchange.mpdemo.net\",\n            \"yolo@test.domain.com\",\n            \"spam@mpdemo.net\",\n            \"spam@exchange.mpdemo.net\",\n            \"spam@test.domain.com\",\n            \"abuse@mpdemo.net\",\n            \"abuse@exchange.mpdemo.net\",\n            \"abuse@test.domain.com\",\n            \"bracketsales@mpdemo.net\",\n            \"bracketsales@exchange.mpdemo.net\",\n            \"bracketsales@test.domain.com\",\n            \"theboss@mpdemo.net\",\n            \"theboss@exchange.mpdemo.net\",\n            \"theboss@test.domain.com\",\n            \"reports@mpdemo.net\",\n            \"reports@exchange.mpdemo.net\",\n            \"reports@test.domain.com\",\n            \"charles.ascii@mpdemo.net\",\n            \"charles.ascii@exchange.mpdemo.net\",\n            \"charles.ascii@test.domain.com\",\n            \"typo1@mpdemo.net\",\n            \"typo1@exchange.mpdemo.net\",\n            \"typo1@test.domain.com\",\n            \"susann@mpdemo.net\",\n            \"susann@exchange.mpdemo.net\",\n            \"susann@test.domain.com\",\n            \"susan.smith@mpdemo.net\",\n            \"susan.smith@exchange.mpdemo.net\",\n            \"susan.smith@test.domain.com\",\n            \"susantypo1@mpdemo.net\",\n            \"susantypo1@exchange.mpdemo.net\",\n            \"susantypo1@test.domain.com\",\n            \"ironman@mpdemo.net\",\n            \"ironman@exchange.mpdemo.net\",\n            \"ironman@test.domain.com\",\n            \"freestuff@mpdemo.net\",\n            \"freestuff@exchange.mpdemo.net\",\n            \"freestuff@test.domain.com\",\n            \"cccharles@mpdemo.net\",\n            \"cccharles@exchange.mpdemo.net\",\n            \"cccharles@test.domain.com\",\n            \"janet@mpdemo.net\",\n            \"janet@exchange.mpdemo.net\",\n            \"janet@test.domain.com\",\n            \"robot22@mpdemo.net\",\n            \"robot22@exchange.mpdemo.net\",\n            \"robot22@test.domain.com\"\n        ],\n        \"first_name\": \"Charles \",\n        \"last_name\": \"Love\",\n        \"created_at\": \"2017-07-25T14:11:09.000Z\",\n        \"updated_at\": \"2019-10-21T12:18:36.000Z\"\n    },\n    {\n        \"id\": 1187359,\n        \"name\": \"codye.test\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"codye.test@mpdemo.net\",\n        \"email_addresses\": [\n            \"codye.test@mpdemo.net\",\n            \"codye.test@exchange.mpdemo.net\",\n            \"codye.test@test.domain.com\"\n        ],\n        \"first_name\": \"Cody\",\n        \"last_name\": \"Ekle\",\n        \"created_at\": \"2019-07-25T20:00:03.000Z\",\n        \"updated_at\": \"2019-10-21T13:30:28.000Z\"\n    },\n    {\n        \"id\": 9635,\n        \"name\": \"david\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"david@mpdemo.net\",\n        \"email_addresses\": [\n            \"david@mpdemo.net\",\n            \"david@exchange.mpdemo.net\",\n            \"david@test.domain.com\",\n            \"admin@mpdemo.net\",\n            \"admin@exchange.mpdemo.net\",\n            \"admin@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-10-21T15:05:31.000Z\"\n    },\n    {\n        \"id\": 848410,\n        \"name\": \"dennis\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"dennis@mpdemo.net\",\n        \"email_addresses\": [\n            \"dennis@mpdemo.net\",\n            \"dennis@exchange.mpdemo.net\",\n            \"dennis@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:15:56.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:22.000Z\"\n    },\n    {\n        \"id\": 746912,\n        \"name\": \"forcencrypt\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"forcencrypt@mpdemo.net\",\n        \"email_addresses\": [\n            \"forcencrypt@mpdemo.net\",\n            \"forcencrypt@exchange.mpdemo.net\",\n            \"forcencrypt@test.domain.com\"\n        ],\n        \"first_name\": \"ForcEncrypt\",\n        \"last_name\": \"Demo\",\n        \"created_at\": \"2016-08-16T16:29:34.000Z\",\n        \"updated_at\": \"2019-10-21T15:10:07.000Z\"\n    },\n    {\n        \"id\": 1123452,\n        \"name\": \"hsolo\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"hsolo@mpdemo.net\",\n        \"email_addresses\": [\n            \"hsolo@mpdemo.net\",\n            \"hsolo@exchange.mpdemo.net\",\n            \"hsolo@test.domain.com\"\n        ],\n        \"first_name\": \"Han\",\n        \"last_name\": \"Solo\",\n        \"created_at\": \"2019-04-01T22:05:28.000Z\",\n        \"updated_at\": \"2019-10-21T14:14:52.000Z\"\n    },\n    {\n        \"id\": 811831,\n        \"name\": \"information\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"information@mpdemo.net\",\n        \"email_addresses\": [\n            \"information@mpdemo.net\",\n            \"information@exchange.mpdemo.net\",\n            \"information@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-01-25T21:04:33.000Z\",\n        \"updated_at\": \"2019-10-21T15:12:52.000Z\"\n    },\n    {\n        \"id\": 9637,\n        \"name\": \"jeremy\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"jeremy@mpdemo.net\",\n        \"email_addresses\": [\n            \"jeremy@mpdemo.net\",\n            \"jeremy@exchange.mpdemo.net\",\n            \"jeremy@test.domain.com\",\n            \"info@mpdemo.net\",\n            \"info@exchange.mpdemo.net\",\n            \"info@test.domain.com\"\n        ],\n        \"first_name\": \"Jeremy\",\n        \"last_name\": \"Nigh\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-10-21T15:05:31.000Z\"\n    },\n    {\n        \"id\": 849879,\n        \"name\": \"john\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"john@mpdemo.net\",\n        \"email_addresses\": [\n            \"john@mpdemo.net\",\n            \"john@exchange.mpdemo.net\",\n            \"john@test.domain.com\"\n        ],\n        \"first_name\": \"John\",\n        \"last_name\": \"Henderson\",\n        \"created_at\": \"2017-05-28T17:56:53.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:23.000Z\"\n    },\n    {\n        \"id\": 1198487,\n        \"name\": \"joshcmnametest\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"joshcmnametest@mpdemo.net\",\n        \"email_addresses\": [\n            \"joshcmnametest@mpdemo.net\",\n            \"joshcmnametest@exchange.mpdemo.net\",\n            \"joshcmnametest@test.domain.com\"\n        ],\n        \"first_name\": \"Josh\",\n        \"last_name\": \"NameTest\",\n        \"created_at\": \"2019-08-12T16:15:02.000Z\",\n        \"updated_at\": \"2019-10-21T14:15:05.000Z\"\n    },\n    {\n        \"id\": 1182450,\n        \"name\": \"joshtest\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"joshtest@mpdemo.net\",\n        \"email_addresses\": [\n            \"joshtest@mpdemo.net\",\n            \"joshtest@exchange.mpdemo.net\",\n            \"joshtest@test.domain.com\"\n        ],\n        \"first_name\": \"Josh\",\n        \"last_name\": \"Test\",\n        \"created_at\": \"2019-07-17T19:00:10.000Z\",\n        \"updated_at\": \"2019-10-21T14:15:03.000Z\"\n    },\n    {\n        \"id\": 894395,\n        \"name\": \"justin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"justin@mpdemo.net\",\n        \"email_addresses\": [\n            \"justin@mpdemo.net\",\n            \"justin@exchange.mpdemo.net\",\n            \"justin@test.domain.com\"\n        ],\n        \"first_name\": \"Justin\",\n        \"last_name\": \"Hathaway\",\n        \"created_at\": \"2017-11-09T15:15:31.000Z\",\n        \"updated_at\": \"2019-10-21T14:06:38.000Z\"\n    },\n    {\n        \"id\": 849530,\n        \"name\": \"kurin\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"kurin@mpdemo.net\",\n        \"email_addresses\": [\n            \"kurin@mpdemo.net\",\n            \"kurin@exchange.mpdemo.net\",\n            \"kurin@test.domain.com\"\n        ],\n        \"first_name\": \"Kurin\",\n        \"last_name\": \"Quintavalle\",\n        \"created_at\": \"2017-05-25T17:51:39.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:23.000Z\"\n    },\n    {\n        \"id\": 846968,\n        \"name\": \"laura\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"laura@mpdemo.net\",\n        \"email_addresses\": [\n            \"laura@mpdemo.net\",\n            \"laura@exchange.mpdemo.net\",\n            \"laura@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-15T19:19:45.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:21.000Z\"\n    },\n    {\n        \"id\": 862746,\n        \"name\": \"markgcm\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"markgcm@mpdemo.net\",\n        \"email_addresses\": [\n            \"markgcm@mpdemo.net\",\n            \"markgcm@exchange.mpdemo.net\",\n            \"markgcm@test.domain.com\",\n            \"markg@mpdemo.net\",\n            \"markg@exchange.mpdemo.net\",\n            \"markg@test.domain.com\"\n        ],\n        \"first_name\": \"Mark\",\n        \"last_name\": \"G Demo\",\n        \"created_at\": \"2017-07-11T20:56:50.000Z\",\n        \"updated_at\": \"2019-10-21T14:06:20.000Z\"\n    },\n    {\n        \"id\": 9646,\n        \"name\": \"michael\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"michael@mpdemo.net\",\n        \"email_addresses\": [\n            \"michael@mpdemo.net\",\n            \"michael@exchange.mpdemo.net\",\n            \"michael@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-10-21T15:05:32.000Z\"\n    },\n    {\n        \"id\": 848413,\n        \"name\": \"rachel\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"rachel@mpdemo.net\",\n        \"email_addresses\": [\n            \"rachel@mpdemo.net\",\n            \"rachel@exchange.mpdemo.net\",\n            \"rachel@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:16:45.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:23.000Z\"\n    },\n    {\n        \"id\": 883647,\n        \"name\": \"smtptest\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"smtptest@mpdemo.net\",\n        \"email_addresses\": [\n            \"smtptest@mpdemo.net\",\n            \"smtptest@exchange.mpdemo.net\",\n            \"smtptest@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-10-09T14:56:13.000Z\",\n        \"updated_at\": \"2019-10-21T14:06:35.000Z\"\n    }\n]"},{"id":"e1f9235e-d48b-4422-bc35-3a5d60354c44","name":"Get Users Under Domain","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/domains/{{domain_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"total\":50,\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"837d392f6334bef1f025a1de737cea33\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5723a0ac-fa23-40b9-bbbd-14fdb24f0940"},{"key":"X-Runtime","value":"4.441085"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 746797,\n        \"name\": \"7fb55e8816d44005b7d4b9c3df56d7c2\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 5,\n            \"name\": \"Contact\"\n        },\n        \"user_group\": {\n            \"id\": 10786,\n            \"name\": \"Exchange+ 2013 with SecureStore\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"7fb55e8816d44005b7d4b9c3df56d7c2@mpdemo.net\",\n        \"email_addresses\": [\n            \"7fb55e8816d44005b7d4b9c3df56d7c2@mpdemo.net\",\n            \"7fb55e8816d44005b7d4b9c3df56d7c2@exchange.mpdemo.net\",\n            \"7fb55e8816d44005b7d4b9c3df56d7c2@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2016-08-15T16:45:38.000Z\",\n        \"updated_at\": \"2019-03-19T18:28:54.000Z\"\n    },\n    {\n        \"id\": 746795,\n        \"name\": \"alerts\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 3,\n            \"name\": \"Mailing List\"\n        },\n        \"user_group\": {\n            \"id\": 10786,\n            \"name\": \"Exchange+ 2013 with SecureStore\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"alerts@mpdemo.net\",\n        \"email_addresses\": [\n            \"alerts@mpdemo.net\",\n            \"alerts@exchange.mpdemo.net\",\n            \"alerts@test.domain.com\",\n            \"critical@mpdemo.net\",\n            \"critical@exchange.mpdemo.net\",\n            \"critical@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2016-08-15T16:45:38.000Z\",\n        \"updated_at\": \"2019-10-21T15:10:06.000Z\"\n    },\n    {\n        \"id\": 603924,\n        \"name\": \"all\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 3,\n            \"name\": \"Mailing List\"\n        },\n        \"user_group\": {\n            \"id\": 2367,\n            \"name\": \"test\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"all@mpdemo.net\",\n        \"email_addresses\": [\n            \"all@mpdemo.net\",\n            \"all@exchange.mpdemo.net\",\n            \"all@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-02-16T07:50:32.000Z\",\n        \"updated_at\": \"2019-10-21T15:08:13.000Z\"\n    },\n    {\n        \"id\": 826457,\n        \"name\": \"andy\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"andy@mpdemo.net\",\n        \"email_addresses\": [\n            \"andy@mpdemo.net\",\n            \"andy@exchange.mpdemo.net\",\n            \"andy@test.domain.com\",\n            \"andyb@mpdemo.net\",\n            \"andyb@exchange.mpdemo.net\",\n            \"andyb@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-03-10T16:14:42.000Z\",\n        \"updated_at\": \"2019-10-21T15:13:43.000Z\"\n    },\n    {\n        \"id\": 700549,\n        \"name\": \"athena\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"athena@mpdemo.net\",\n        \"email_addresses\": [\n            \"athena@mpdemo.net\",\n            \"athena@exchange.mpdemo.net\",\n            \"athena@test.domain.com\"\n        ],\n        \"first_name\": \"Athena \",\n        \"last_name\": \"\",\n        \"created_at\": \"2015-10-20T14:18:11.000Z\",\n        \"updated_at\": \"2019-10-21T15:08:54.000Z\"\n    },\n    {\n        \"id\": 746792,\n        \"name\": \"b07c182ebfe34e82a75cd7899c4b5010\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 5,\n            \"name\": \"Contact\"\n        },\n        \"user_group\": {\n            \"id\": 10786,\n            \"name\": \"Exchange+ 2013 with SecureStore\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"b07c182ebfe34e82a75cd7899c4b5010@mpdemo.net\",\n        \"email_addresses\": [\n            \"b07c182ebfe34e82a75cd7899c4b5010@mpdemo.net\",\n            \"b07c182ebfe34e82a75cd7899c4b5010@exchange.mpdemo.net\",\n            \"b07c182ebfe34e82a75cd7899c4b5010@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2016-08-15T16:45:38.000Z\",\n        \"updated_at\": \"2019-03-19T18:28:49.000Z\"\n    },\n    {\n        \"id\": 9634,\n        \"name\": \"ben\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"ben@mpdemo.net\",\n        \"email_addresses\": [\n            \"ben@mpdemo.net\",\n            \"ben@exchange.mpdemo.net\",\n            \"ben@test.domain.com\",\n            \"webmaster@mpdemo.net\",\n            \"webmaster@exchange.mpdemo.net\",\n            \"webmaster@test.domain.com\",\n            \"bentest@mpdemo.net\",\n            \"bentest@exchange.mpdemo.net\",\n            \"bentest@test.domain.com\",\n            \"ben1.0@mpdemo.net\",\n            \"ben1.0@exchange.mpdemo.net\",\n            \"ben1.0@test.domain.com\"\n        ],\n        \"first_name\": \"Ben\",\n        \"last_name\": \"Hathaway\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-10-21T15:05:32.000Z\"\n    },\n    {\n        \"id\": 848411,\n        \"name\": \"bill\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"bill@mpdemo.net\",\n        \"email_addresses\": [\n            \"bill@mpdemo.net\",\n            \"bill@exchange.mpdemo.net\",\n            \"bill@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:16:20.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:23.000Z\"\n    },\n    {\n        \"id\": 875967,\n        \"name\": \"bob\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 19543,\n            \"name\": \"Continuity Bundle (CloudFilter + XtraMail)\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"bob@mpdemo.net\",\n        \"email_addresses\": [\n            \"bob@mpdemo.net\",\n            \"bob@exchange.mpdemo.net\",\n            \"bob@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-09-06T19:32:45.000Z\",\n        \"updated_at\": \"2019-10-21T12:19:54.000Z\"\n    },\n    {\n        \"id\": 603922,\n        \"name\": \"brett\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 2367,\n            \"name\": \"test\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"brett@mpdemo.net\",\n        \"email_addresses\": [\n            \"brett@mpdemo.net\",\n            \"brett@exchange.mpdemo.net\",\n            \"brett@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2014-02-16T07:50:22.000Z\",\n        \"updated_at\": \"2019-10-21T15:08:13.000Z\"\n    },\n    {\n        \"id\": 871139,\n        \"name\": \"carnegie\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"carnegie@mpdemo.net\",\n        \"email_addresses\": [\n            \"carnegie@mpdemo.net\",\n            \"carnegie@exchange.mpdemo.net\",\n            \"carnegie@test.domain.com\"\n        ],\n        \"first_name\": \"Carnegie\",\n        \"last_name\": \"User\",\n        \"created_at\": \"2017-08-11T19:00:29.000Z\",\n        \"updated_at\": \"2019-10-21T14:06:28.000Z\"\n    },\n    {\n        \"id\": 865693,\n        \"name\": \"charles\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"charles@mpdemo.net\",\n        \"email_addresses\": [\n            \"charles@mpdemo.net\",\n            \"charles@exchange.mpdemo.net\",\n            \"charles@test.domain.com\",\n            \"thehulk@mpdemo.net\",\n            \"thehulk@exchange.mpdemo.net\",\n            \"thehulk@test.domain.com\",\n            \"violation.alert@mpdemo.net\",\n            \"violation.alert@exchange.mpdemo.net\",\n            \"violation.alert@test.domain.com\",\n            \"yolo@mpdemo.net\",\n            \"yolo@exchange.mpdemo.net\",\n            \"yolo@test.domain.com\",\n            \"spam@mpdemo.net\",\n            \"spam@exchange.mpdemo.net\",\n            \"spam@test.domain.com\",\n            \"abuse@mpdemo.net\",\n            \"abuse@exchange.mpdemo.net\",\n            \"abuse@test.domain.com\",\n            \"bracketsales@mpdemo.net\",\n            \"bracketsales@exchange.mpdemo.net\",\n            \"bracketsales@test.domain.com\",\n            \"theboss@mpdemo.net\",\n            \"theboss@exchange.mpdemo.net\",\n            \"theboss@test.domain.com\",\n            \"reports@mpdemo.net\",\n            \"reports@exchange.mpdemo.net\",\n            \"reports@test.domain.com\",\n            \"charles.ascii@mpdemo.net\",\n            \"charles.ascii@exchange.mpdemo.net\",\n            \"charles.ascii@test.domain.com\",\n            \"typo1@mpdemo.net\",\n            \"typo1@exchange.mpdemo.net\",\n            \"typo1@test.domain.com\",\n            \"susann@mpdemo.net\",\n            \"susann@exchange.mpdemo.net\",\n            \"susann@test.domain.com\",\n            \"susan.smith@mpdemo.net\",\n            \"susan.smith@exchange.mpdemo.net\",\n            \"susan.smith@test.domain.com\",\n            \"susantypo1@mpdemo.net\",\n            \"susantypo1@exchange.mpdemo.net\",\n            \"susantypo1@test.domain.com\",\n            \"ironman@mpdemo.net\",\n            \"ironman@exchange.mpdemo.net\",\n            \"ironman@test.domain.com\",\n            \"freestuff@mpdemo.net\",\n            \"freestuff@exchange.mpdemo.net\",\n            \"freestuff@test.domain.com\",\n            \"cccharles@mpdemo.net\",\n            \"cccharles@exchange.mpdemo.net\",\n            \"cccharles@test.domain.com\",\n            \"janet@mpdemo.net\",\n            \"janet@exchange.mpdemo.net\",\n            \"janet@test.domain.com\",\n            \"robot22@mpdemo.net\",\n            \"robot22@exchange.mpdemo.net\",\n            \"robot22@test.domain.com\"\n        ],\n        \"first_name\": \"Charles \",\n        \"last_name\": \"Love\",\n        \"created_at\": \"2017-07-25T14:11:09.000Z\",\n        \"updated_at\": \"2019-10-21T12:18:36.000Z\"\n    },\n    {\n        \"id\": 1187359,\n        \"name\": \"codye.test\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 8,\n            \"name\": \"Shared\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"codye.test@mpdemo.net\",\n        \"email_addresses\": [\n            \"codye.test@mpdemo.net\",\n            \"codye.test@exchange.mpdemo.net\",\n            \"codye.test@test.domain.com\"\n        ],\n        \"first_name\": \"Cody\",\n        \"last_name\": \"Ekle\",\n        \"created_at\": \"2019-07-25T20:00:03.000Z\",\n        \"updated_at\": \"2019-10-21T13:30:28.000Z\"\n    },\n    {\n        \"id\": 950555,\n        \"name\": \"contactaddress\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 5,\n            \"name\": \"Contact\"\n        },\n        \"user_group\": {\n            \"id\": 19588,\n            \"name\": \"CloudFilter (SafeSend)\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"contactaddress@mpdemo.net\",\n        \"email_addresses\": [\n            \"contactaddress@mpdemo.net\",\n            \"contactaddress@exchange.mpdemo.net\",\n            \"contactaddress@test.domain.com\"\n        ],\n        \"first_name\": \"Contact\",\n        \"last_name\": \"Address\",\n        \"created_at\": \"2018-03-02T18:53:02.000Z\",\n        \"updated_at\": \"2019-03-19T18:28:56.000Z\"\n    },\n    {\n        \"id\": 9635,\n        \"name\": \"david\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"david@mpdemo.net\",\n        \"email_addresses\": [\n            \"david@mpdemo.net\",\n            \"david@exchange.mpdemo.net\",\n            \"david@test.domain.com\",\n            \"admin@mpdemo.net\",\n            \"admin@exchange.mpdemo.net\",\n            \"admin@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-10-21T15:05:31.000Z\"\n    },\n    {\n        \"id\": 848410,\n        \"name\": \"dennis\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"dennis@mpdemo.net\",\n        \"email_addresses\": [\n            \"dennis@mpdemo.net\",\n            \"dennis@exchange.mpdemo.net\",\n            \"dennis@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-05-22T20:15:56.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:22.000Z\"\n    },\n    {\n        \"id\": 746794,\n        \"name\": \"fafd475810844891b74e1fb498768ad6\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 5,\n            \"name\": \"Contact\"\n        },\n        \"user_group\": {\n            \"id\": 10786,\n            \"name\": \"Exchange+ 2013 with SecureStore\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"fafd475810844891b74e1fb498768ad6@mpdemo.net\",\n        \"email_addresses\": [\n            \"fafd475810844891b74e1fb498768ad6@mpdemo.net\",\n            \"fafd475810844891b74e1fb498768ad6@exchange.mpdemo.net\",\n            \"fafd475810844891b74e1fb498768ad6@test.domain.com\"\n        ],\n        \"first_name\": \"Scott\",\n        \"last_name\": \"Tyson\",\n        \"created_at\": \"2016-08-15T16:45:38.000Z\",\n        \"updated_at\": \"2019-05-17T19:26:56.000Z\"\n    },\n    {\n        \"id\": 912627,\n        \"name\": \"fakeaccount\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 19588,\n            \"name\": \"CloudFilter (SafeSend)\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"fakeaccount@mpdemo.net\",\n        \"email_addresses\": [\n            \"fakeaccount@mpdemo.net\",\n            \"fakeaccount@exchange.mpdemo.net\",\n            \"fakeaccount@test.domain.com\"\n        ],\n        \"first_name\": \"Fake\",\n        \"last_name\": \"Account\",\n        \"created_at\": \"2017-12-06T19:43:16.000Z\",\n        \"updated_at\": \"2019-10-21T12:22:46.000Z\"\n    },\n    {\n        \"id\": 744224,\n        \"name\": \"first.last\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 3,\n            \"name\": \"Mailing List\"\n        },\n        \"user_group\": {\n            \"id\": 17158,\n            \"name\": \"Bracket (Attachment Filtering)\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"first.last@mpdemo.net\",\n        \"email_addresses\": [\n            \"first.last@mpdemo.net\",\n            \"first.last@exchange.mpdemo.net\",\n            \"first.last@test.domain.com\",\n            \"first.last2@mpdemo.net\",\n            \"first.last2@exchange.mpdemo.net\",\n            \"first.last2@test.domain.com\"\n        ],\n        \"first_name\": \"First\",\n        \"last_name\": \"Last\",\n        \"created_at\": \"2016-07-28T15:41:31.000Z\",\n        \"updated_at\": \"2019-10-21T15:10:05.000Z\"\n    },\n    {\n        \"id\": 746912,\n        \"name\": \"forcencrypt\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"forcencrypt@mpdemo.net\",\n        \"email_addresses\": [\n            \"forcencrypt@mpdemo.net\",\n            \"forcencrypt@exchange.mpdemo.net\",\n            \"forcencrypt@test.domain.com\"\n        ],\n        \"first_name\": \"ForcEncrypt\",\n        \"last_name\": \"Demo\",\n        \"created_at\": \"2016-08-16T16:29:34.000Z\",\n        \"updated_at\": \"2019-10-21T15:10:07.000Z\"\n    },\n    {\n        \"id\": 1123452,\n        \"name\": \"hsolo\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"hsolo@mpdemo.net\",\n        \"email_addresses\": [\n            \"hsolo@mpdemo.net\",\n            \"hsolo@exchange.mpdemo.net\",\n            \"hsolo@test.domain.com\"\n        ],\n        \"first_name\": \"Han\",\n        \"last_name\": \"Solo\",\n        \"created_at\": \"2019-04-01T22:05:28.000Z\",\n        \"updated_at\": \"2019-10-21T14:14:52.000Z\"\n    },\n    {\n        \"id\": 811831,\n        \"name\": \"information\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"information@mpdemo.net\",\n        \"email_addresses\": [\n            \"information@mpdemo.net\",\n            \"information@exchange.mpdemo.net\",\n            \"information@test.domain.com\"\n        ],\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"created_at\": \"2017-01-25T21:04:33.000Z\",\n        \"updated_at\": \"2019-10-21T15:12:52.000Z\"\n    },\n    {\n        \"id\": 9637,\n        \"name\": \"jeremy\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"jeremy@mpdemo.net\",\n        \"email_addresses\": [\n            \"jeremy@mpdemo.net\",\n            \"jeremy@exchange.mpdemo.net\",\n            \"jeremy@test.domain.com\",\n            \"info@mpdemo.net\",\n            \"info@exchange.mpdemo.net\",\n            \"info@test.domain.com\"\n        ],\n        \"first_name\": \"Jeremy\",\n        \"last_name\": \"Nigh\",\n        \"created_at\": \"2010-05-13T18:12:15.000Z\",\n        \"updated_at\": \"2019-10-21T15:05:31.000Z\"\n    },\n    {\n        \"id\": 750260,\n        \"name\": \"jim.g\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 17158,\n            \"name\": \"Bracket (Attachment Filtering)\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"jim.g@mpdemo.net\",\n        \"email_addresses\": [\n            \"jim.g@mpdemo.net\",\n            \"jim.g@exchange.mpdemo.net\",\n            \"jim.g@test.domain.com\"\n        ],\n        \"first_name\": \"Jim\",\n        \"last_name\": \"Green\",\n        \"created_at\": \"2016-09-08T16:28:40.000Z\",\n        \"updated_at\": \"2019-10-21T15:10:10.000Z\"\n    },\n    {\n        \"id\": 849879,\n        \"name\": \"john\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"john@mpdemo.net\",\n        \"email_addresses\": [\n            \"john@mpdemo.net\",\n            \"john@exchange.mpdemo.net\",\n            \"john@test.domain.com\"\n        ],\n        \"first_name\": \"John\",\n        \"last_name\": \"Henderson\",\n        \"created_at\": \"2017-05-28T17:56:53.000Z\",\n        \"updated_at\": \"2019-10-21T15:14:23.000Z\"\n    }\n]"}],"_postman_id":"44bbdba9-8364-4d7d-b836-512fdcebc1a8"},{"name":"User","id":"84b16632-61a1-45a2-b488-a9a2697c4ccf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}","description":"<p>Get a single user using its ID.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"6dfc53a9-ef76-4df8-9726-436146ef3366","name":"Get User by Id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/users/883326"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"12f4a82f7ecc26fec2e97245e245eb53\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"7f3a8a85-5d7f-46a1-85dc-90be046ff4b0"},{"key":"X-Runtime","value":"0.451799"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 883326,\n    \"name\": \"abigail.thompson\",\n    \"parent\": null,\n    \"user_type\": {\n        \"id\": 11,\n        \"name\": \"Unlicensed User\"\n    },\n    \"user_group\": {\n        \"id\": 25212,\n        \"name\": \"Office 365\"\n    },\n    \"domain\": {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\"\n    },\n    \"primary_address\": \"abigail.thompson@mailprotector.com\",\n    \"email_addresses\": [\n        \"abigail.thompson@mailprotector.com\",\n        \"abigail.thompson@mailprotector.net\"\n    ],\n    \"first_name\": \"Abigail\",\n    \"last_name\": \"Thompson\",\n    \"created_at\": \"2017-10-06T18:31:17.000Z\",\n    \"updated_at\": \"2019-10-21T12:20:22.000Z\"\n}"}],"_postman_id":"84b16632-61a1-45a2-b488-a9a2697c4ccf"},{"name":"Create User","id":"86546788-8e50-4558-b5fa-5d434a4c22d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Username\",\n\t\"password\": \"password\",\n\t\"first_name\":\"First Name\",\n\t\"last_name\": \"Last Name\",\n\t\"user_type_id\": 1,\n\t\"aliases\": [\"alias_username\",\"alias_username2\"]\n}"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users","description":"<p>Create a User under a User Group.</p>\n<p><strong>Note:</strong> 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 \"<a href=\"mailto:test@domain.com\">test@domain.com</a>\" and \"<a href=\"mailto:test@domain-alias.com\">test@domain-alias.com</a>\".</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","users"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"1edd7be8-b972-42e5-af3a-96cdc7b1ff13","name":"Create User","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Username\",\n\t\"password\": \"password\",\n\t\"first_name\":\"First Name\",\n\t\"last_name\": \"Last Name\",\n\t\"user_type_id\": 1,\n\t\"aliases\": [\"alias_username\",\"alias_username2\"]\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/users/1237629"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"4f4fd13f2962b75ea8a075bf6d2da478\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"91508ee4-f243-4ff6-8b3a-a31f3f8b1e01"},{"key":"X-Runtime","value":"2.548647"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1237629,\n        \"name\": \"username\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"username@mpdemo.net\",\n        \"email_addresses\": [\n            \"username@mpdemo.net\",\n            \"username@exchange.mpdemo.net\",\n            \"username@test.domain.com\"\n        ],\n        \"first_name\": \"First Name\",\n        \"last_name\": \"Last Name\",\n        \"created_at\": \"2019-12-23T18:53:04.000Z\",\n        \"updated_at\": \"2019-12-23T18:53:04.000Z\"\n    }\n]"}],"_postman_id":"86546788-8e50-4558-b5fa-5d434a4c22d5"},{"name":"Create Multiple Users","id":"d4aaca17-2345-4a0e-8efc-fce479c61d41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\n\t\t\t\"name\":\"Username1\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username1-1\",\"alias_username1-2\"]\n\t\t},\n\t\t{\n\t\t\t\"name\":\"Username2\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username2-1\",\"alias_username2-2\"]\n\t\t}\n\t]\n}\n"},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many","description":"<p>Create multiple users at once.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","user_groups","{{user_group_id}}","users","create_many"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"5a242111-caf2-4fcf-b74b-034691b2f7ec","name":"Create Multiple Users","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\n\t\t\t\"name\":\"Username1\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username1-1\",\"alias_username1-2\"]\n\t\t},\n\t\t{\n\t\t\t\"name\":\"Username2\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\": \"Last Name\",\n\t\t\t\"user_type_id\": 1,\n\t\t\t\"aliases\": [\"alias_username2-1\",\"alias_username2-2\"]\n\t\t}\n\t]\n}\n","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/user_groups/{{user_group_id}}/users/create_many"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/users/1237621"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"247a4069de5a69ec9ebe8527746561e4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1c91f5fb-c944-4ff7-bb4f-703e70ae5f8b"},{"key":"X-Runtime","value":"12.588969"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1237621,\n        \"name\": \"username1\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"username1@mpdemo.net\",\n        \"email_addresses\": [\n            \"username1@mpdemo.net\",\n            \"username1@exchange.mpdemo.net\",\n            \"username1@test.domain.com\"\n        ],\n        \"first_name\": \"First Name\",\n        \"last_name\": \"Last Name\",\n        \"created_at\": \"2019-12-12T23:02:00.000Z\",\n        \"updated_at\": \"2019-12-12T23:02:00.000Z\"\n    },\n    {\n        \"id\": 1237622,\n        \"name\": \"username2\",\n        \"parent\": null,\n        \"user_type\": {\n            \"id\": 1,\n            \"name\": \"User\"\n        },\n        \"user_group\": {\n            \"id\": 109,\n            \"name\": \"CloudMail with Bracket\"\n        },\n        \"domain\": {\n            \"id\": 102,\n            \"name\": \"mpdemo.net\"\n        },\n        \"primary_address\": \"username2@mpdemo.net\",\n        \"email_addresses\": [\n            \"username2@mpdemo.net\",\n            \"username2@exchange.mpdemo.net\",\n            \"username2@test.domain.com\"\n        ],\n        \"first_name\": \"First Name\",\n        \"last_name\": \"Last Name\",\n        \"created_at\": \"2019-12-12T23:02:00.000Z\",\n        \"updated_at\": \"2019-12-12T23:02:00.000Z\"\n    }\n]"}],"_postman_id":"d4aaca17-2345-4a0e-8efc-fce479c61d41"},{"name":"Update User","id":"ab70dc03-4e89-4c05-900c-f019920f3a44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"First Name\",\n\t\"last_name\": \"Last Name\",\n\t\"phone\": \"8888888888\",\n\t\"user_type_id\": 1\n}"},"url":"emailservice.io/api/v1/users/{{user_id}}","description":"<p>Update a user's first and last name.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"4d93451e-30b6-434e-9ad0-ba31a8f3f8db","name":"Update User","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"First Name\",\n\t\"last_name\": \"Last Name\",\n\t\"phone\": \"8888888888\",\n\t\"user_type_id\": 3\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/users/883326"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"23014e01b3e1913eb9eebf23eefdd985\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ae98bf23-c8ed-4570-af12-3ff60cca5c23"},{"key":"X-Runtime","value":"5.275791"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 883326,\n    \"name\": \"abigail.thompson\",\n    \"parent\": null,\n    \"user_type\": {\n        \"id\": 3,\n        \"name\": \"Mailing List\"\n    },\n    \"user_group\": {\n        \"id\": 25212,\n        \"name\": \"Office 365\"\n    },\n    \"domain\": {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\"\n    },\n    \"primary_address\": \"abigail.thompson@mailprotector.com\",\n    \"email_addresses\": [\n        \"abigail.thompson@mailprotector.com\",\n        \"abigail.thompson@mailprotector.net\"\n    ],\n    \"first_name\": \"First Name\",\n    \"last_name\": \"Last Name\",\n    \"created_at\": \"2017-10-06T18:31:17.000Z\",\n    \"updated_at\": \"2019-12-23T21:47:06.000Z\"\n}"}],"_postman_id":"ab70dc03-4e89-4c05-900c-f019920f3a44"},{"name":"Find By Address","id":"e1f54c3b-873d-4b4a-b1c5-084f1ba3a3c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"abigail.thompson@mailprotector.com\"\n}"},"url":"emailservice.io/api/v1/users/find_by_address","description":"<p>Search for a user or user alias by its address. If the user being requested is an alias, the root user will be returned.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","find_by_address"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"3a7efef0-cc1f-4222-8a8e-de6574384eb3","name":"Find By Address","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"address\": \"abigail.thompson@mailprotector.com\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/users/find_by_address"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"79a6a8d16a24e6fd104f61a75974d1d9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b9e57c5e-81cc-499e-ac64-8c5406de2016"},{"key":"X-Runtime","value":"1.385712"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 883326,\n    \"name\": \"abigail.thompson\",\n    \"parent\": null,\n    \"user_type\": {\n        \"id\": 1,\n        \"name\": \"User\"\n    },\n    \"user_group\": {\n        \"id\": 25212,\n        \"name\": \"Office 365\"\n    },\n    \"domain\": {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\"\n    },\n    \"primary_address\": \"abigail.thompson@mailprotector.com\",\n    \"email_addresses\": [\n        \"abigail.thompson@mailprotector.com\",\n        \"abigail.thompson@mailprotector.net\",\n        \"alias-username@mailprotector.com\",\n        \"alias-username@mailprotector.net\"\n    ],\n    \"first_name\": \"Abigail\",\n    \"last_name\": \"Thompson\",\n    \"created_at\": \"2017-10-06T18:31:17.000Z\",\n    \"updated_at\": \"2020-01-15T17:27:46.000Z\"\n}"}],"_postman_id":"e1f54c3b-873d-4b4a-b1c5-084f1ba3a3c2"},{"name":"Reset User Password","id":"b31b7aa8-5fc2-456c-b90a-a869ad68bc3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"password\": \"A different password\"\n}"},"url":"emailservice.io/api/v1/users/{{user_id}}/reset_password","description":"<p>Resets the user's password to the designated value</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}","reset_password"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"c3f3d8e0-46a9-4fc6-bb4b-d2680391bd16","name":"Reset User Password","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"password\": \"A different password\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/users/{{user_id}}/reset_password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"22a7ffd05d95b71f5b820b905ff34e7d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c372672c-eebd-425e-a8a7-88d9cdd411a8"},{"key":"X-Runtime","value":"0.875945"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 883326,\n    \"name\": \"abigail.thompson\",\n    \"parent\": null,\n    \"user_type\": {\n        \"id\": 3,\n        \"name\": \"Mailing List\"\n    },\n    \"user_group\": {\n        \"id\": 25212,\n        \"name\": \"Office 365\"\n    },\n    \"domain\": {\n        \"id\": 1473,\n        \"name\": \"mailprotector.com\"\n    },\n    \"primary_address\": \"abigail.thompson@mailprotector.com\",\n    \"email_addresses\": [\n        \"abigail.thompson@mailprotector.com\",\n        \"abigail.thompson@mailprotector.net\"\n    ],\n    \"first_name\": \"First Name\",\n    \"last_name\": \"Last Name\",\n    \"created_at\": \"2017-10-06T18:31:17.000Z\",\n    \"updated_at\": \"2019-12-26T22:12:03.000Z\"\n}"}],"_postman_id":"b31b7aa8-5fc2-456c-b90a-a869ad68bc3c"},{"name":"Delete User","id":"737f1ef6-87d1-4186-af24-41e859e5c10e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}","description":"<p>Delete a user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","users","{{user_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"6795514b-68ed-4c50-9c63-b00ad7993682","name":"Delete User","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/users/{{user_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"0265822e-57ce-408d-8d46-400aa464424e"},{"key":"X-Runtime","value":"1.210119"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"737f1ef6-87d1-4186-af24-41e859e5c10e"}],"id":"a21cef77-98b4-4d16-8aa2-e663747b80ac","description":"<p>View and manage users belonging to a reseller, customer, domain, or user group.</p>\n","event":[{"listen":"prerequest","script":{"id":"bdb67dce-6938-49fc-afc7-fdc2046edf72","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"59842b16-5798-4d1f-819e-0510835ea5fe","type":"text/javascript","exec":[""]}}],"_postman_id":"a21cef77-98b4-4d16-8aa2-e663747b80ac","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Managers","item":[{"name":"Notification Destinations","item":[{"name":"Manager Notification Destinations","id":"d97626fe-c827-46fc-a10d-4a02f7c33bf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/managers/manager_id/notification_destinations","description":"<p>Get all notification destinations for a manager.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","managers","manager_id","notification_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"38f1d743-1d42-4445-bc14-b18d69210c65","name":"Manager Notification Destinations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/managers/manager_id/notification_destinations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"2c7f0c45a20cf24c6e4751138ea7850d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"493574d1-e9c8-4126-877e-4263a2f4c14d"},{"key":"X-Runtime","value":"0.615284"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 312884,\n        \"value\": \"new-destination@domain.com\",\n        \"owner\": {\n            \"id\": 13790,\n            \"name\": \"API Test\",\n            \"entity_type\": \"Account\"\n        },\n        \"level\": {\n            \"level_id\": 1,\n            \"level\": \"Normal\"\n        },\n        \"destination_type\": {\n            \"destination_type_id\": 1,\n            \"destination_type\": \"Email\"\n        }\n    }\n]"}],"_postman_id":"d97626fe-c827-46fc-a10d-4a02f7c33bf7"},{"name":"Create Manager Notification Destinations","id":"a008b7b0-646e-4f54-9826-3db94f9f47e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"new-destination@domain.com\",\n\t\"destination_type_id\": 1,\n\t\"level_id\": 1\n}"},"url":"emailservice.io/api/v1/managers/manager_id/notification_destinations","description":"<p>Create a notification destination for a manager account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","managers","manager_id","notification_destinations"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"50348e45-134e-4a67-9bb2-d58b0ff2a358","name":"Create Manager Notification Destinations","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"new-destination@domain.com\",\n\t\"destination_type_id\": 1,\n\t\"level_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/managers/manager_id/notification_destinations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/notification_destinations/312884"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"7cfbe0bb757b12a8c953f494ca81b86c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"103764d2-c56b-4149-b9f4-4f36ddde7135"},{"key":"X-Runtime","value":"0.452112"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 312884,\n    \"value\": \"new-destination@domain.com\",\n    \"owner\": {\n        \"id\": 13790,\n        \"name\": \"API Test\",\n        \"entity_type\": \"Account\"\n    },\n    \"level\": {\n        \"level_id\": 1,\n        \"level\": \"Normal\"\n    },\n    \"destination_type\": {\n        \"destination_type_id\": 1,\n        \"destination_type\": \"Email\"\n    }\n}"}],"_postman_id":"a008b7b0-646e-4f54-9826-3db94f9f47e8"},{"name":"Delete Manager Notification Destination","id":"85d26459-f836-4157-a894-fa13674edd99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}","description":"<p>Delete a notification destination for a manager.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","notification_destinations","{{notification_destination_id}}"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"d4629e66-9c20-4c0d-a5fe-007a9d086884","name":"Delete Manager Notification Destination","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/notification_destinations/{{notification_destination_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e4a7644b-2d0f-4caa-a1a1-eec50ad74fd4"},{"key":"X-Runtime","value":"1.634195"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"85d26459-f836-4157-a894-fa13674edd99"}],"id":"eb241b69-3349-4328-af0a-7a4e9307459f","description":"<p>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.</p>\n<h2 id=\"level-id\">Level ID</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Level</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Normal</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Urgent</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"destination-type-id\">Destination Type ID</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>2</td>\n<td>SMS</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"cd8bf862-92ec-4d2e-9a5a-83375553e569","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ab02ec33-95a5-48c2-9129-58f448e9007b","type":"text/javascript","exec":[""]}}],"_postman_id":"eb241b69-3349-4328-af0a-7a4e9307459f","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Managers","id":"06532e21-b7b5-4675-b838-fe27743c3917","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/managers","description":"<p>Get a list of managers belonging to a reseller or customer account.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","managers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"84315abd-2952-42f2-a491-09573dc5b78c","name":"Get Managers By Customer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/customers/{{customer_id}}/managers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"82b4808682e4b1b360d7341c621f99c8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"7199ce5c-ff11-449c-930d-92eef12f1b0e"},{"key":"X-Runtime","value":"0.480921"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 903,\n        \"name\": \"Mail Protector\",\n        \"username\": \"mpadmin\",\n        \"email\": \"supportagent7@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 329,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Mailprotector group\"\n            }\n        ]\n    },\n    {\n        \"id\": 905,\n        \"name\": \"Mail Protector\",\n        \"username\": \"joe\",\n        \"email\": \"supportagent7@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 1473,\n                \"entity_type\": \"Domain\",\n                \"entity_name\": \"mailprotector.com\"\n            }\n        ]\n    },\n    {\n        \"id\": 907,\n        \"name\": \"Mail Protector\",\n        \"username\": \"joe_0\",\n        \"email\": \"supportagent7@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 1489,\n                \"entity_type\": \"Domain\",\n                \"entity_name\": \"mailprotector.biz\"\n            }\n        ]\n    },\n    {\n        \"id\": 4687,\n        \"name\": \"Tim Laporte\",\n        \"username\": \"tjsupport\",\n        \"email\": \"tlaporte@virtualconnect.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 329,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Mailprotector group\"\n            }\n        ]\n    },\n    {\n        \"id\": 5039,\n        \"name\": \"Mailprotector newsignups\",\n        \"username\": \"noreply\",\n        \"email\": \"noreply@mailprotector.net\",\n        \"roles\": [\n            {\n                \"entity_id\": 329,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Mailprotector group\"\n            }\n        ]\n    }\n]"},{"id":"ddb5d3ca-e992-4978-ad81-23584fa24cd2","name":"Get Managers By Reseller","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/managers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Pagination","value":"{\"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}"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"1ba6631e07a4c3a8124dd5aa261d2545\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"56a31fd9-c978-4790-be90-1239bf9e841e"},{"key":"X-Runtime","value":"0.379358"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 13960,\n        \"name\": \"Cody Ekle\",\n        \"username\": \"CodyEkle\",\n        \"email\": \"cody.ekle@mailprotector.com\",\n        \"roles\": [\n            {\n                \"entity_id\": 188,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Mailprotector Direct (old)\"\n            }\n        ]\n    },\n    {\n        \"id\": 13964,\n        \"name\": \"Josh Test\",\n        \"username\": \"JoshTest\",\n        \"email\": \"joshua.marston@mailprotector.com\",\n        \"roles\": [\n            {\n                \"entity_id\": 188,\n                \"entity_type\": \"Account\",\n                \"entity_name\": \"Mailprotector Direct (old)\"\n            }\n        ]\n    }\n]"}],"_postman_id":"06532e21-b7b5-4675-b838-fe27743c3917"},{"name":"Manager","id":"5c9426ef-ff5f-4da9-9b66-47880eff3c9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/managers/manager_id","description":"<p>Get a single manager object with its ID.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","managers","manager_id"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"2dd4cde2-f8a7-4b52-8715-aa4f4ef19748","name":"Manager","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/managers/manager_id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b6a44d51050f13f4e0eecdb17ddf09cb\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"72579596-fa2a-4566-8268-a56cbdd17c2b"},{"key":"X-Runtime","value":"0.143833"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 13790,\n    \"name\": \"API Test\",\n    \"username\": \"api.test\",\n    \"email\": \"operations@mailprotector.com\",\n    \"roles\": [\n        {\n            \"entity_id\": 343,\n            \"entity_type\": \"Account\",\n            \"entity_name\": \"Mailprotector Demos Reseller\"\n        }\n    ]\n}"}],"_postman_id":"5c9426ef-ff5f-4da9-9b66-47880eff3c9c"},{"name":"Create Manager","id":"c7838bd2-fefb-423a-9de2-01b4c27176e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"FirstName\",\n\t\"last_name\": \"LastName\",\n\t\"email\": \"name@domain.com\",\n\t\"username\": \"username\",\n\t\"password\": \"password\"\n}"},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/managers","description":"<p>Create a new manager for a reseller or customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","resellers","{{reseller_id}}","managers"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"76f2a34e-afe8-4327-a15a-62c836183123","name":"Create Manager","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"FirstName\",\n\t\"last_name\": \"LastName\",\n\t\"email\": \"name@domain.com\",\n\t\"username\": \"username\",\n\t\"password\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/customers/{{customer_id}}/managers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/managers/14616"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"dacd541fe31e639394a7b59edec16e2d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"8d0b5ec0-f732-45b7-a2df-d80952456a04"},{"key":"X-Runtime","value":"0.301572"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14616,\n    \"name\": \"FirstName LastName\",\n    \"username\": \"username\",\n    \"email\": \"name@domain.com\",\n    \"roles\": []\n}"},{"id":"993f2f18-5863-460f-b41f-cb32ae75f24f","name":"Create Manager","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"first_name\": \"FirstName\",\n\t\"last_name\": \"LastName\",\n\t\"email\": \"name@domain.com\",\n\t\"username\": \"username\",\n\t\"password\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"emailservice.io/api/v1/resellers/{{reseller_id}}/managers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Location","value":"/api/v1/managers/14615"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"0dcb5f4a93c3653765027b98cdb3594f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef227b17-0e71-4fa8-ab01-a59d5accc3eb"},{"key":"X-Runtime","value":"0.165192"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14615,\n    \"name\": \"FirstName LastName\",\n    \"username\": \"username\",\n    \"email\": \"name@domain.com\",\n    \"roles\": []\n}"}],"_postman_id":"c7838bd2-fefb-423a-9de2-01b4c27176e4"},{"name":"Delete Manager","id":"a6d1f12f-a29b-4c53-a71b-d89949e04100","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/managers/manager_id","description":"<p>Delete a manager using its ID.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","managers","manager_id"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[{"id":"c4acc08b-bb99-4940-9abf-3bd868babc71","name":"Delete Manager","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{your_api_key_here}}","type":"text"}],"url":"emailservice.io/api/v1/managers/manager_id"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f22e1b16-8902-4d72-9e40-9207a4fe9915"},{"key":"X-Runtime","value":"6.242422"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a6d1f12f-a29b-4c53-a71b-d89949e04100"}],"id":"8da9f805-34c0-4861-9302-969a378c0587","_postman_id":"8da9f805-34c0-4861-9302-969a378c0587","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}},{"name":"Results","item":[{"name":"Find By Code","id":"708257ed-fca3-441d-9c4e-c702311d88e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{your_api_key_here}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"code\": \"no_rdns\",\n    \"mode\": \"inbound\"\n}"},"url":"emailservice.io/api/v1/results","description":"<p>Search for a result by its code and mode.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}},"urlObject":{"path":["api","v1","results"],"host":["emailservice.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"708257ed-fca3-441d-9c4e-c702311d88e6"}],"id":"399238cd-a17c-45db-8138-575b45d4f0b1","_postman_id":"399238cd-a17c-45db-8138-575b45d4f0b1","description":"","auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"},"isInherited":true,"source":{"_postman_id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","id":"17dc85ab-2dfc-4cdf-ad30-bdaa6aa50f71","name":"Mailprotector API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"token":"{{your_api_key_here}}"}},"event":[{"listen":"prerequest","script":{"id":"44ecbf6e-2154-4e9d-ba6e-f12ef3ed393a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c68f57af-f85d-4e8b-83a3-adb569ee5951","type":"text/javascript","exec":[""]}}],"variable":[{"key":"token","value":"{{your_api_key_here}}"},{"key":"entity","value":"{{entity}}"},{"key":"entity_id","value":"{{entity_id}}"},{"key":"provider_id","value":"{{provider_id}}"},{"key":"reseller_id","value":"{{reseller_id}}"},{"key":"customer_id","value":"{{customer_id}}"},{"key":"domain_id","value":"{{domain_id}}"},{"key":"user_group_id","value":"{{user_group_id}}"},{"key":"user_id","value":"{{user_id}}"},{"key":"manager_id","value":"manager_id"},{"key":"hostname","value":"emailservice.io"},{"key":"notification_destination_id","value":"{{notification_destination_id}}"},{"key":"allow_block_rule_id","value":"{{allow_block_rule_id}}"},{"key":"user_sync_id","value":"{{user_sync_id}}"},{"key":"user_sync_filter_id","value":"{{user_sync_filter_id}}"},{"key":"message_id","value":"{{message_id}}"}]}