{"info":{"_postman_id":"11f08c1a-ed78-4e34-b5af-ee98916d5fa4","name":"SocketLabs API Documentation","description":"<html><head></head><body><p>The SocketLabs API allows you to access SocketLabs features programmatically via HTTP calls without having to log into our Control Panel, allowing you to automate common tasks. Please check back frequently, as we are working hard to add more features.</p>\n<p>Endpoints may be modified or removed while development is ongoing.</p>\n<h1 id=\"getting-started-create-an-api-key\">Getting Started: Create an API Key</h1>\n<p>For Complex Sender and Simple Sender, regardless of version, an API key must be created on the <a href=\"https://portal.socketlabs.com/x/smtp-api/key-manager\">API Key Management</a> page in your SocketLabs account. Be sure to choose the `SocketLabs Api` API Access option so your API key will have the correct access.</p>\n<p>It is important to keep your API key secure because it can be used to modify features for your SocketLabs account.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>All calls to the SocketLabs API are authenticated using the API key that you generated. Authenticate your calls to the SocketLabs API using the <code>Authorization</code> header with the <code>Bearer</code> authentication scheme.</p>\n<h3 id=\"example-bearer-authorization-header\">Example Bearer authorization header:</h3>\n<p><code>Authorization: Bearer YOUR-API-KEY</code></p>\n<p>If your application or system does not support the <code>Bearer</code> authentication scheme, you may also use the <code>Basic</code> scheme. If using the <code>Basic</code> scheme, you may use any string as the username and then your API key as the password. More information about <code>Basic</code> authentication can be found <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization#Directives\">here</a>.</p>\n<h3 id=\"example-basic-authorization-header\">Example Basic authorization header:</h3>\n<p><code>Authorization: Basic YOUR-API-KEY</code></p>\n<ul>\n<li><a href=\"https://docs.socketlabs.com/#00166e83-9e84-47f8-86cd-724be3f01acb\">Injection API</a></li>\n<li><a href=\"https://docs.socketlabs.com/#998247dc-aba7-4662-980c-0e84e9d706a4\">Event Webhooks</a></li>\n<li><a href=\"https://docs.socketlabs.com/#1ffb945c-1b3a-4cfb-a4b2-32e0275f3936\">Suppression API</a></li>\n<li><a href=\"https://docs.socketlabs.com/#86ef1dc8-a956-41d7-a8ca-4d7391377e26\">Reporting API</a></li>\n<li><a href=\"https://docs.socketlabs.com/#cf807626-5084-4ee1-b04d-f4bce9f3f81d\">Marketing API</a></li>\n<li><a href=\"https://docs.socketlabs.com/#b586312a-328e-4889-8485-e39df5fe352e\">Changelog</a></li>\n</ul>\n<h1 id=\"pagination\">Pagination</h1>\n<p>Every endpoint that returns an array of results includes offset pagination. Pagination is defined by an order (`sortDirection`), a limit (`pageSize`), and an offset (`pageNumber`) from the start.</p>\n<h2 id=\"query-parameters\"><strong>Query parameters</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pageSize</td>\n<td>number</td>\n<td>The number of items to return. Default max size (100) if not specified, min size (1).  <br>  <br><strong>NOTE</strong>: Csv file download endpoints have a default max size of (500000)</td>\n</tr>\n<tr>\n<td>pageNumber</td>\n<td>number</td>\n<td>The (zero-based) page number of items from the start of the query to skip. A zero-based page number 0 is the start value.</td>\n</tr>\n<tr>\n<td>sortDirection</td>\n<td><code>asc</code>, <code>dsc</code></td>\n<td>The direction the array is sorted</td>\n</tr>\n<tr>\n<td>sortField</td>\n<td>string</td>\n<td>the property name the array is sorted by.</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>dateTime</td>\n<td>The start date in yyyy-mm-dd HH:MM:SS format</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>dateTime</td>\n<td>The end date in yyyy-mm-dd HH:MM:SS format</td>\n</tr>\n<tr>\n<td>filters</td>\n<td>string</td>\n<td>Narrow down the results based on specific search criteria. See the Filters section below for details.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"filters\">Filters</h1>\n<p>Add filters to the query string to narrow down the results based on specific criteria. The format for adding filters is <code>filters=field=predicate:value</code>, where <code>field</code> is the name of the field in the dataset on which to apply the filter, <code>predicate</code> is the type of comparison to perform on the field, and <code>value</code> is the value against which the field should be compared.</p>\n<h2 id=\"supported-predicates\">Supported Predicates</h2>\n<h3 id=\"string\">String</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Predicate Key</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>eq</code></td>\n<td>Is Equal To</td>\n<td><code>name=eq:test</code></td>\n</tr>\n<tr>\n<td><code>neq</code></td>\n<td>Not Equal To</td>\n<td><code>name=neq:test</code></td>\n</tr>\n<tr>\n<td><code>like</code></td>\n<td>Contains</td>\n<td><code>name=like:some</code></td>\n</tr>\n<tr>\n<td><code>nlike</code></td>\n<td>Does Not Contain</td>\n<td><code>name=nlike:some</code></td>\n</tr>\n<tr>\n<td><code>start</code></td>\n<td>Starts With</td>\n<td><code>name=start:test</code></td>\n</tr>\n<tr>\n<td><code>end</code></td>\n<td>Ends With</td>\n<td><code>name=end:ing</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"number\">Number</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Predicate Key</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>eq</code></td>\n<td>Is Equal To</td>\n<td><code>id=eq:12</code></td>\n</tr>\n<tr>\n<td><code>neq</code></td>\n<td>Not Equal To</td>\n<td><code>id=neq:12</code></td>\n</tr>\n<tr>\n<td><code>gt</code></td>\n<td>Greater Than</td>\n<td><code>score=gt:60</code></td>\n</tr>\n<tr>\n<td><code>lt</code></td>\n<td>Less Than</td>\n<td><code>score=lt:80</code></td>\n</tr>\n<tr>\n<td><code>gte</code></td>\n<td>Before/Greater Than and Equal To</td>\n<td><code>score=gte:60</code></td>\n</tr>\n<tr>\n<td><code>lte</code></td>\n<td>After/Less Than and Equal To</td>\n<td><code>score=lte:80</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"date\">Date</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Predicate Key</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>eq</code></td>\n<td>Is Equal To</td>\n<td><code>created=eq:2022-02-28</code></td>\n</tr>\n<tr>\n<td><code>gt</code></td>\n<td>Before/Greater Than</td>\n<td><code>created=gt:2022-02-01</code></td>\n</tr>\n<tr>\n<td><code>lt</code></td>\n<td>After/Less Than</td>\n<td><code>created=lt:2022-03-01</code></td>\n</tr>\n<tr>\n<td><code>gte</code></td>\n<td>Greater Than and Equal To</td>\n<td><code>created=gte:2022-02-01</code></td>\n</tr>\n<tr>\n<td><code>lte</code></td>\n<td>Less Than and Equal To</td>\n<td><code>created=lte:2022-03-01</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"boolean\">Boolean</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Predicate Key</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>eq</code></td>\n<td>Is Equal To</td>\n<td><code>isActive=eq:true</code></td>\n</tr>\n<tr>\n<td><code>neq</code></td>\n<td>Not Equal To</td>\n<td><code>isActive=neq:true</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"enum\">Enum</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Predicate Key</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>eq</code></td>\n<td>Is Equal To</td>\n<td><code>status=eq:active</code></td>\n</tr>\n<tr>\n<td><code>neq</code></td>\n<td>Not Equal To</td>\n<td><code>status=neq:active</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"combining-filters\">Combining Filters</h3>\n<p>You can combile multiple filters by separating them with an <code>&amp;</code><br>Example: <code>filters=name=start:jo&amp;emailAddress=end:gmail.com</code></p>\n<h3 id=\"example\">Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api.socketlabs.com/v1/servers/12345/search/?filters=status=eq:active&amp;isActive=eq:true\n\n</code></pre><h1 id=\"date-formats\">Date Formats</h1>\n<p>When filtering by date, three date formats (Each a subset of <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601</a>) are supported. The following date formats may be used:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>yyyy-MM-ddTHH:mm:ssK\nyyyy-MM-ddK\nyyyy-MM-dd\n\n</code></pre><p>By default, all dates will be in UTC time. If you need to specify a local time offset, you can do by adding or subracting the local offset (<code>K</code> property) to your timestamp. For more information on how to use time offsets, please see <a href=\"https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC\">this Wikipedia article</a>.</p>\n<h3 id=\"date-limits\">Date Limits</h3>\n<p>Data returned by the SocketLabs API is limited to the dates allowed by the Detailed Reporting History date range for your SocketLabs plan. If you attempt to search a date range that is not allowed by your current plan, an error will be returned. To find out what your current limits are, or to upgrade to a plan with more limits, please navigate to <a href=\"https://cp.socketlabs.com/servers/x/plan/upgrade#/\">your plans page</a>.</p>\n<h1 id=\"response\"><strong>Response</strong></h1>\n<p>The response type will include the <code>data</code> property containing the array of results and the <code>total</code> property containing the total number of results available.</p>\n<p><strong>NOTE</strong>: All csv file download endpoints include a Content-Range header. This header specifies units, start, end &amp; total. (ex: rows 0-99/187). Additionally these endpoints will respond with a HTTP Status code of 206 (Partial Content) for all requested pages except the final page which will return a status code of 200 (Ok).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>The array of results</td>\n</tr>\n<tr>\n<td>total</td>\n<td>number</td>\n<td>The number of results in total</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-1\">Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"data\": [\n     …\n   ],\n   \"total\": 123\n}\n\n</code></pre>\n<h1 id=\"error-handling\">Error Handling</h1>\n<p>Sometimes there will be errors with your API call. This could be due to any number of issues such as incorrect syntax, validation errors, limits being exceeded, or something going wrong on our server. When this happens the HTTP response will contain an error code, with additional information provided in the response body. The body can contain either a single error or a list of errors.</p>\n<h2 id=\"example-error\">Example error:</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\" : [\n      {\n        \"errorType\": \"InvalidDomainFormat\",\n        \"message\": \"Domain name not formatted correctly.\"\n      }\n   ]\n}\n\n</code></pre>\n<h2 id=\"api-error-model\">API Error Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property Name</strong></th>\n<th><strong>Data Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>string</td>\n</tr>\n<tr>\n<td>errorType</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>All requests against the SocketLabs Api are limited to 100 requests within 60 seconds. Requests made in excess to this limit will result in an error. There are some endpoints whos rate limiting differs from the standard, which are shown below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Endpoint</strong></th>\n<th><strong>Rate Limit</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>*/reports/message*</td>\n<td>30 requests/60 seconds</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started: Create an API Key","slug":"getting-started-create-an-api-key"},{"content":"Pagination","slug":"pagination"},{"content":"Filters","slug":"filters"},{"content":"Date Formats","slug":"date-formats"},{"content":"Response","slug":"response"},{"content":"Error Handling","slug":"error-handling"},{"content":"Rate Limiting","slug":"rate-limiting"}],"owner":"26530112","collectionId":"11f08c1a-ed78-4e34-b5af-ee98916d5fa4","publishedId":"2s93XvWQJC","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-04-26T13:24:47.000Z"},"item":[{"name":"Complex Sender","item":[{"name":"Account","item":[{"name":"API Key Management","item":[{"name":"Get all API Keys for the Account","id":"7b84b1c5-b95e-435b-974c-6211c9bbd09b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/credentials/api-key?pageSize=5&pageNumber=0&sortField=name&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","credentials","api-key"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"name"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"4bf9fc59-3982-44e3-90f1-bddcbc8863b4","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/credentials/api-key?pageSize=5&pageNumber=1&sortField=name&sortDirection=dsc&filters=[object Object]","host":["/"],"path":["v2","credentials","api-key"],"query":[{"description":"Number of records per page","key":"pageSize","value":"5"},{"description":"Number of pages to off-set","key":"pageNumber","value":"1"},{"description":"Field used to sort the results","key":"sortField","value":"name"},{"description":"Direction used in sorting","key":"sortDirection","value":"dsc"},{"description":"Optional column filters","key":"filters","value":"[object Object]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"apiKeyId\": 123,\n      \"name\": \"My New Api Key\",\n      \"publicPart\": \"abcdefghijklmnopqrstuvwxyz\",\n      \"isEnabled\": true,\n      \"createdOn\": \"2023-03-23T21:46:46.4890735+00:00\"\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"7b84b1c5-b95e-435b-974c-6211c9bbd09b"},{"name":"Add new API Key to Account","id":"d9fc6e21-ec73-4192-b650-4acc461a56a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"My API key\",    \n  \"permissions\": [\n        \"ApiOnly\",\n        \"InjectionApi\"\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/credentials/api-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","credentials","api-key"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a6b29fec-97b4-44b8-9ce2-4bbcbe367798","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"cupidatat dolore\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/credentials/api-key"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"apiKeyId\": 123,\n    \"name\": \"My New Api Key\",\n    \"publicPart\": \"abcdefghijklmnopqrstuvwxyz\",\n    \"isEnabled\": true,\n    \"createdOn\": \"2023-03-23T21:46:46.4922114+00:00\"\n  }\n}"}],"_postman_id":"d9fc6e21-ec73-4192-b650-4acc461a56a1"},{"name":"Update API Key on Account","id":"3755c958-c314-4b2b-8cef-8f79c4295d47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"My API key\",    \n  \"isEnabled\": true,\n  \"permissions\": [\n        \"ApiOnly\",\n        \"InjectionApi\"\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/credentials/api-key/:apiKeyId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","credentials","api-key",":apiKeyId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"apiKeyId"}]}},"response":[{"id":"8cb790de-3bb5-4619-a174-4d3d07600fa1","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"commodo culpa qui officia\",\n  \"isEnabled\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/credentials/api-key/:apiKeyId","host":["/"],"path":["v2","credentials","api-key",":apiKeyId"],"variable":[{"key":"apiKeyId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"apiKeyId\": 123,\n    \"name\": \"My New Api Key\",\n    \"publicPart\": \"abcdefghijklmnopqrstuvwxyz\",\n    \"isEnabled\": true,\n    \"createdOn\": \"2023-03-23T21:46:46.4951545+00:00\"\n  }\n}"}],"_postman_id":"3755c958-c314-4b2b-8cef-8f79c4295d47"},{"name":"Delete API Key on Account","id":"8ef07ae3-922a-4dda-8389-37205991ee66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/credentials/api-key/:apiKeyId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","credentials","api-key",":apiKeyId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"apiKeyId"}]}},"response":[{"id":"a71cb940-c752-4c87-81ed-d3f80d018cac","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/credentials/api-key/:apiKeyId","host":["/"],"path":["v2","credentials","api-key",":apiKeyId"],"variable":[{"key":"apiKeyId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {}\n}"}],"_postman_id":"8ef07ae3-922a-4dda-8389-37205991ee66"}],"id":"435bb9c1-5fb6-420e-b7a1-38eaf5c5d699","_postman_id":"435bb9c1-5fb6-420e-b7a1-38eaf5c5d699","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Bounce Domains","item":[{"name":"Get All Bounce Domains for Account","id":"cb7c2adf-b80f-4d3e-ae7a-a0cc0f32df3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/bounce?pageSize=5&pageNumber=0&sortField=domain&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"398c6cf9-b6ce-4c8b-8a3d-bfce310acf81","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/bounce?pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc","host":["/"],"path":["v2","bounce"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"ipsum commodo Duis","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"domain\": \"bounce.example.com\",\n      \"isDefault\": true,\n      \"createdOn\": \"1958-02-16T18:47:03.452Z\",\n      \"updatedOn\": \"1995-11-30T04:07:55.812Z\"\n    },\n    {\n      \"domain\": \"bounce.example.org\",\n      \"isDefault\": false,\n      \"createdOn\": \"2022-07-03T20:23:52.161Z\",\n      \"updatedOn\": \"1979-07-07T07:16:14.979Z\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"cb7c2adf-b80f-4d3e-ae7a-a0cc0f32df3a"},{"name":"Get a Bounce Domain for Account","id":"7473d01e-cf5d-474b-9a99-5672ac4a3c0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"62f97b09-2bc8-4495-b86e-4c29b675a1b4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/bounce/:domain","host":["/"],"path":["v2","bounce",":domain"],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"bounce.example.com\",\n    \"isDefault\": false,\n    \"createdOn\": \"2014-10-22T10:52:10.868Z\",\n    \"updatedOn\": \"1961-08-02T17:41:38.631Z\"\n  }\n}"}],"_postman_id":"7473d01e-cf5d-474b-9a99-5672ac4a3c0e"},{"name":"Create a Bounce Domain for Account","id":"3fb65dbb-8a73-4365-b752-ef457aeef565","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"bounce.example.com\",\n  \"isDefault\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/bounce","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"6882d977-5c95-4495-a203-091f71827da6","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"bounce.example.com\",\n  \"isDefault\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/bounce"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"bounce.example.com\",\n    \"isDefault\": false,\n    \"createdOn\": \"1982-05-07T11:06:43.235Z\",\n    \"updatedOn\": \"1966-03-23T16:20:54.617Z\"\n  }\n}"}],"_postman_id":"3fb65dbb-8a73-4365-b752-ef457aeef565"},{"name":"Update Bounce Domain for Account","id":"8cf6d696-c9eb-4d46-b1f7-2cce2d05e188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"1fc84eae-1f2a-454a-8024-bf76f976b74d","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/bounce/:domain","host":["/"],"path":["v2","bounce",":domain"],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"bounce.example.com\",\n    \"isDefault\": true,\n    \"createdOn\": \"1982-05-07T11:06:43.235Z\",\n    \"updatedOn\": \"1966-03-23T16:20:54.617Z\"\n  }\n}"}],"_postman_id":"8cf6d696-c9eb-4d46-b1f7-2cce2d05e188"},{"name":"Remove Bounce Domain for Account","id":"3ee68f25-ce2d-46f5-adca-3fd9e899c209","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"c817e09c-a500-4961-abc9-f683b9ce9a4b","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/bounce/:domain","host":["/"],"path":["v2","bounce",":domain"],"variable":[{"key":"domain"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3ee68f25-ce2d-46f5-adca-3fd9e899c209"},{"name":"Get Assigned IP Pools for the domain","id":"1ab2cead-e873-45ce-9ac1-f51a0f305a2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/bounce/:domain/assignments","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce",":domain","assignments"],"host":["/"],"query":[],"variable":[{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"a813dc83-2ad3-458a-9749-ef1457bacd94","name":"Ok","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/bounce/:domain/assignments","host":["/"],"path":["v2","bounce",":domain","assignments"],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"bounceDomain\": {\n      \"domain\": \"bounce.example.com\",\n      \"isDefault\": false,\n      \"createdOn\": \"1954-09-13T00:08:39.954Z\",\n      \"updatedOn\": \"1985-08-16T07:52:37.082Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"1ab2cead-e873-45ce-9ac1-f51a0f305a2a"},{"name":"Assign a bounce domain to the default IP pool","id":"26279ef0-7399-400d-9d51-b308ed3a5781","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 12345,\n  \"overwrite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/bounce/:domain/assign","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce",":domain","assign"],"host":["/"],"query":[],"variable":[{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"7b20d50e-1f75-475a-b2b1-65c1e583c7b7","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 12345,\n  \"overwrite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/bounce/:domain/assign","host":["/"],"path":["v2","bounce",":domain","assign"],"variable":[{"key":"domain","value":"bounce.example.com"}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"bounceDomain\": {\n      \"domain\": \"bounce.example.com\",\n      \"isDefault\": false,\n      \"createdOn\": \"1954-09-13T00:08:39.954Z\",\n      \"updatedOn\": \"1985-08-16T07:52:37.082Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"26279ef0-7399-400d-9d51-b308ed3a5781"},{"name":"Update an assigned bounce domain","id":"1438961f-de50-481f-9e9e-eaafc7fb9902","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/bounce/:domain/assign/:ipPoolId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce",":domain","assign",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"bounce.example.com","key":"domain"},{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"dcb6dcc8-2545-447e-ad70-99427309e611","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/bounce/:domain/assign/:ipPoolId","host":["/"],"path":["v2","bounce",":domain","assign",":ipPoolId"],"variable":[{"key":"domain","value":null},{"key":"ipPoolId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"bounceDomain\": {\n      \"domain\": \"bounce.example.com\",\n      \"isDefault\": false,\n      \"createdOn\": \"1954-09-13T00:08:39.954Z\",\n      \"updatedOn\": \"1985-08-16T07:52:37.082Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"1438961f-de50-481f-9e9e-eaafc7fb9902"},{"name":"Delete an assigned bounce domain","id":"01b0f2f1-1737-4582-bd34-fa5d1e6a3c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/bounce/:domain/assign/:ipPoolId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","bounce",":domain","assign",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"bounce.example.com","key":"domain"},{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"df16c92b-a838-4118-9467-993af7fac3aa","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/bounce/:domain/assign/:ipPoolId","host":["/"],"path":["v2","bounce",":domain","assign",":ipPoolId"],"variable":[{"key":"domain"},{"key":"ipPoolId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"error\": [\n      {\n        \"errorType\": \"veli\",\n        \"message\": \"sit aute ex reprehenderit\"\n      },\n      {\n        \"errorType\": \"in\",\n        \"message\": \"ea\"\n      }\n    ]\n  }\n}"}],"_postman_id":"01b0f2f1-1737-4582-bd34-fa5d1e6a3c56"}],"id":"941da48c-cc1b-4a34-8681-566b16088151","_postman_id":"941da48c-cc1b-4a34-8681-566b16088151","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"DKIM","item":[{"name":"Get DKIM Entries for Account","id":"c356d146-65d0-48c7-9739-2f1c245994b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/dkim?pageSize=5&pageNumber=0&sortField=domain&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"5ea64134-364c-4bc6-943b-4e980ef07210","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/dkim?pageSize=5&pageNumber=1&sortField=domain&sortDirection=dsc","host":["/"],"path":["v2","dkim"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"domain","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\",\n      \"accountIdentity\": false,\n      \"excludeSLDkim\": false\n    },\n    {\n      \"domain\": \"example.org\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1953-11-25T05:48:10.063Z\",\n      \"updatedOn\": \"1991-03-22T05:06:19.377Z\",\n      \"accountIdentity\": true,\n      \"excludeSLDkim\": true\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"c356d146-65d0-48c7-9739-2f1c245994b8"},{"name":"Get a DKIM Entry for Account","id":"be9ac695-237d-4e2f-9ebc-c488c572438c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/dkim/:domain?selector=dkim","description":"<p>Each entry will include the validation status for the domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>(Optional) The selector for the DKIM entry you are querying..</p>\n","type":"text/plain"},"key":"selector","value":"dkim"}],"variable":[{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"5a5fc231-9f07-42ed-9e6a-d0e7911f8ea6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/dkim/:domain?selector=dkim","host":["/"],"path":["v2","dkim",":domain"],"query":[{"key":"selector","value":"dkim","description":"(Optional) The selector for the DKIM entry you are querying.."}],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\",\n      \"accountIdentity\": false,\n      \"excludeSLDkim\": false\n    }  \n}"}],"_postman_id":"be9ac695-237d-4e2f-9ebc-c488c572438c"},{"name":"Add a DKIM Entry for Account","id":"4a4a99c2-3844-4191-a089-0ca87b06ad98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"accountIdentity\": true,\n  \"excludeSLDkim\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/dkim","description":"<p>If the PrivateKey is not provided, we will generate a new public/private key pair for you.\n            Otherwise, we will attempt to validate your private key against the public key for your domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"ff8e79a6-ff42-4f6f-8a52-73c3c767d030","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"accountIdentity\": true,\n  \"excludeSLDkim\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/dkim"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\",\n      \"accountIdentity\": false,\n      \"excludeSLDkim\": false\n    }  \n}"}],"_postman_id":"4a4a99c2-3844-4191-a089-0ca87b06ad98"},{"name":"Update a DKIM Entry for Account","id":"7adcc58a-e8b9-41ba-8027-9cdb486fd2dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"accountIdentity\": true,\n  \"excludeSLDkim\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/dkim/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"f3eab501-997d-4764-8838-c0d78036cd1e","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"accountIdentity\": true,\n  \"excludeSLDkim\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/dkim/:domain","host":["/"],"path":["v2","dkim",":domain"],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\",\n      \"accountIdentity\": false,\n      \"excludeSLDkim\": false\n    }  \n}"}],"_postman_id":"7adcc58a-e8b9-41ba-8027-9cdb486fd2dd"},{"name":"Delete a DKIM Entry for Account","id":"9e90bc4e-aabb-4729-8ce3-75e0187c54b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/dkim/:domain?selector=dkim","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>(Optional) The selector for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"key":"selector","value":"dkim"}],"variable":[{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"9cd94d34-a0ef-4706-97a1-8bd24833b076","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/dkim/:domain?selector=dkim","host":["/"],"path":["v2","dkim",":domain"],"query":[{"key":"selector","value":"dkim","description":"(Optional) The selector for the DKIM entry you are deleting."}],"variable":[{"key":"domain","value":null}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9e90bc4e-aabb-4729-8ce3-75e0187c54b0"},{"name":"Get Assigned IP Pools for the domain","id":"c334a05f-7d69-4c71-8cc4-bdebf439c8c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/dkim/:domain/assignments","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim",":domain","assignments"],"host":["/"],"query":[],"variable":[{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"f85a4cb4-592a-4774-8ce0-9812e2892420","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/dkim/:domain/assignments","host":["/"],"path":["v2","dkim",":domain","assignments"],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"dkim\": {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\",\n      \"accountIdentity\": false,\n      \"excludeSLDkim\": false\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"c334a05f-7d69-4c71-8cc4-bdebf439c8c0"},{"name":"Assign a DKIM domain to the default IP pool","id":"d30a4af6-e9ac-4945-8d70-14aeca939e0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 12345,\n  \"overwrite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/dkim/:domain/assign","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim",":domain","assign"],"host":["/"],"query":[],"variable":[{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"e9ec2fec-89b6-4390-a1c9-52df37f95845","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 40515421,\n  \"overwrite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/dkim/:domain/assign","host":["/"],"path":["v2","dkim",":domain","assign"],"variable":[{"key":"domain"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": -52111481,\n    \"dkim\": {\n      \"domain\": \"velit magna aliquip in\",\n      \"selector\": \"labore dolore adipisicing sed\",\n      \"truncatedPrivateKey\": \"Excepteur labore Duis incididunt\",\n      \"recordType\": \"ullamco sunt cupidatat labore\",\n      \"createdOn\": \"1994-10-14T03:14:12.687Z\",\n      \"updatedOn\": \"1979-06-25T05:04:41.940Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"d30a4af6-e9ac-4945-8d70-14aeca939e0b"},{"name":"Update an assigned account DKIM domain","id":"399d3dd4-82eb-477b-bbc7-788306e85bfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/dkim/:domain/assign/:ipPoolId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim",":domain","assign",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"example.com","key":"domain"},{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"8d4bc59d-c2ea-497d-b05f-0f329379d71a","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/dkim/:domain/assign/:ipPoolId","host":["/"],"path":["v2","dkim",":domain","assign",":ipPoolId"],"variable":[{"key":"domain","value":"example.com"},{"key":"ipPoolId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"dkim\": {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\",\n      \"accountIdentity\": false,\n      \"excludeSLDkim\": false\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"399d3dd4-82eb-477b-bbc7-788306e85bfc"},{"name":"Delete an assigned DKIM domain","id":"70697adc-bcf3-46c3-9df9-6798bf91976a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/dkim/:domain/assign/:ipPoolId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim",":domain","assign",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"example.com","key":"domain"},{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"98ad465f-5556-4915-b760-a6a9fd50b2e5","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/dkim/:domain/assign/:ipPoolId","host":["/"],"path":["v2","dkim",":domain","assign",":ipPoolId"],"variable":[{"key":"domain","value":"example.com"},{"key":"ipPoolId","value":"12345"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"70697adc-bcf3-46c3-9df9-6798bf91976a"}],"id":"4e87d665-7993-4ccd-9cca-e0e17870e95b","_postman_id":"4e87d665-7993-4ccd-9cca-e0e17870e95b","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Tracking Domains","item":[{"name":"Get All Tracking Domains for Account","id":"611b36df-4d0d-4836-b01a-f56be7a51623","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/tracking?pageSize=5&pageNumber=0&pageNumber=0&sortField=domain&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"d881a889-ba05-42bb-ac36-f192097c2bcc","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/tracking?pageSize=5&pageNumber=1&sortField=domain&sortDirection=dsc","host":["/"],"path":["v2","tracking"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"domain","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"domain\": \"tracking.example.com\",\n      \"opensEnabled\": true,\n      \"clicksEnabled\": false,\n      \"unsubscribesEnabled\": true,\n      \"automaticTrackingEnabled\": false,\n      \"googleAnalyticsEnabled\": false,\n      \"isDefault\": false,\n      \"encryptedTrackingStatus\": \"Active\",\n      \"createdOn\": \"1991-11-25T22:47:17.075Z\",\n      \"updatedOn\": \"1946-06-06T06:40:06.071Z\"\n    },\n    {\n      \"domain\": \"tracking.example.org\",\n      \"opensEnabled\": false,\n      \"clicksEnabled\": false,\n      \"unsubscribesEnabled\": true,\n      \"automaticTrackingEnabled\": false,\n      \"googleAnalyticsEnabled\": true,\n      \"isDefault\": false,\n      \"encryptedTrackingStatus\": \"Pending\",\n      \"createdOn\": \"2019-04-12T20:08:34.767Z\",\n      \"updatedOn\": \"1993-07-14T06:05:42.920Z\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"611b36df-4d0d-4836-b01a-f56be7a51623"},{"name":"Get a Tracking Domain for Account","id":"e4726585-c385-4651-8654-82c08151fb5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"ba704ce5-90ab-47ab-9ab9-e76ad2e71ef5","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/tracking/:domain","host":["/"],"path":["v2","tracking",":domain"],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": false,\n    \"automaticTrackingEnabled\": true,\n    \"googleAnalyticsEnabled\": false,\n    \"isDefault\": false,\n    \"encryptedTrackingStatus\": \"Off\",\n    \"createdOn\": \"2007-09-26T22:49:25.539Z\",\n    \"updatedOn\": \"1943-10-01T00:45:49.488Z\"\n  }\n}"}],"_postman_id":"e4726585-c385-4651-8654-82c08151fb5d"},{"name":"Create a Tracking Domain for Account","id":"84f6a48e-7aa0-485a-aadd-c7cf174b92f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{ \n  \"domain\": \"tracking.example.com\",\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/tracking","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4fa90e2c-6ce3-494f-93ac-1effb7c38807","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"tracking.example.com\",\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/tracking"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": true,\n    \"automaticTrackingEnabled\": false,\n    \"googleAnalyticsEnabled\": true,\n    \"isDefault\": true,\n    \"encryptedTrackingStatus\": \"Pending\",\n    \"createdOn\": \"1948-08-01T06:26:00.183Z\",\n    \"updatedOn\": \"1993-03-18T11:43:19.565Z\"\n  }\n}"}],"_postman_id":"84f6a48e-7aa0-485a-aadd-c7cf174b92f6"},{"name":"Update Tracking Domain for Account","id":"27d2b84c-938b-477d-a272-4e5cddcbbcc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"008c0e4e-a849-4488-befd-9e98755afc92","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/tracking/:domain","host":["/"],"path":["v2","tracking",":domain"],"variable":[{"key":"domain","value":"tracking.example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": true,\n    \"automaticTrackingEnabled\": false,\n    \"googleAnalyticsEnabled\": true,\n    \"isDefault\": true,\n    \"encryptedTrackingStatus\": \"Pending\",\n    \"createdOn\": \"1948-08-01T06:26:00.183Z\",\n    \"updatedOn\": \"1993-03-18T11:43:19.565Z\"\n  }\n}"}],"_postman_id":"27d2b84c-938b-477d-a272-4e5cddcbbcc1"},{"name":"Remove Tracking Domain for Account","id":"836b312a-6186-4eaf-b72c-a8741b4d2787","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"6ff8d87d-16a2-4401-97c5-997996ce324b","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/tracking/:domain","host":["/"],"path":["v2","tracking",":domain"],"variable":[{"key":"domain"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"836b312a-6186-4eaf-b72c-a8741b4d2787"},{"name":"Get Assigned IP Pools for the domain","id":"c08c2df5-dde5-4138-ad9f-45076b043c13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/tracking/:domain/assignments","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking",":domain","assignments"],"host":["/"],"query":[],"variable":[{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"47acd126-d21e-47fc-b555-afa86e2a0eac","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/tracking/:domain/assignments","host":["/"],"path":["v2","tracking",":domain","assignments"],"variable":[{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"trackingDomain\": {\n      \"domain\": \"tracking.example.com\",\n      \"opensEnabled\": true,\n      \"clicksEnabled\": false,\n      \"unsubscribesEnabled\": true,\n      \"automaticTrackingEnabled\": true,\n      \"googleAnalyticsEnabled\": true,\n      \"isDefault\": true,\n      \"encryptedTrackingStatus\": \"Pending\",\n      \"createdOn\": \"1972-05-30T14:25:56.439Z\",\n      \"updatedOn\": \"1976-01-03T14:40:46.727Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"c08c2df5-dde5-4138-ad9f-45076b043c13"},{"name":"Assign a tracking domain to the default IP pool","id":"8ee4d556-8d84-4d88-9736-8c1c8facad19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 12345,\n  \"overwrite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/tracking/:domain/assign","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking",":domain","assign"],"host":["/"],"query":[],"variable":[{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"85fba9e0-373b-4781-9c0d-02fa80ac7d1f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 12345,\n  \"overwrite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/tracking/:domain/assign","host":["/"],"path":["v2","tracking",":domain","assign"],"variable":[{"key":"domain","value":"tracking.example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"trackingDomain\": {\n      \"domain\": \"tracking.example.com\",\n      \"opensEnabled\": true,\n      \"clicksEnabled\": false,\n      \"unsubscribesEnabled\": true,\n      \"automaticTrackingEnabled\": true,\n      \"googleAnalyticsEnabled\": true,\n      \"isDefault\": true,\n      \"encryptedTrackingStatus\": \"Pending\",\n      \"createdOn\": \"1972-05-30T14:25:56.439Z\",\n      \"updatedOn\": \"1976-01-03T14:40:46.727Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"8ee4d556-8d84-4d88-9736-8c1c8facad19"},{"name":"Update an assigned tracking domain","id":"0d706d96-2432-4a4f-8ff1-a606d11f0026","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/tracking/:domain/assign/:ipPoolId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking",":domain","assign",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"tracking.example.com","key":"domain"},{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"c934ec18-6927-4e31-ab49-ce1b3d5991bf","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/tracking/:domain/assign/:ipPoolId","host":["/"],"path":["v2","tracking",":domain","assign",":ipPoolId"],"variable":[{"key":"domain","value":null},{"key":"ipPoolId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"trackingDomain\": {\n      \"domain\": \"tracking.example.com\",\n      \"opensEnabled\": true,\n      \"clicksEnabled\": false,\n      \"unsubscribesEnabled\": true,\n      \"automaticTrackingEnabled\": true,\n      \"googleAnalyticsEnabled\": true,\n      \"isDefault\": true,\n      \"encryptedTrackingStatus\": \"Pending\",\n      \"createdOn\": \"1972-05-30T14:25:56.439Z\",\n      \"updatedOn\": \"1976-01-03T14:40:46.727Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"0d706d96-2432-4a4f-8ff1-a606d11f0026"},{"name":"Delete an assigned tracking domain","id":"a3a75ff1-5b9e-42ce-af85-5bb2280250fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/tracking/:domain/assign/:ipPoolId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","tracking",":domain","assign",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"tracking.example.com","key":"domain"},{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"1ad92ca8-2ec6-4a10-9ab9-334c9c5a5f0a","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/tracking/:domain/assign/:ipPoolId","host":["/"],"path":["v2","tracking",":domain","assign",":ipPoolId"],"variable":[{"key":"domain","value":null},{"key":"ipPoolId","value":null}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a3a75ff1-5b9e-42ce-af85-5bb2280250fd"}],"id":"66e9abe5-8ef8-4a06-9c02-5372e0bc9b1a","_postman_id":"66e9abe5-8ef8-4a06-9c02-5372e0bc9b1a","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Event Webhooks","item":[{"name":"Generates a secret key","id":"5a2b4eae-712b-492f-bde6-6678092c6c9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/event-webhook/generate-secret-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","event-webhook","generate-secret-key"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"2befe3a5-b1f6-49f8-8a1f-3fe29ebdaba5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"//v2/event-webhook/generate-secret-key"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"secretKey\": \"abcdefghijklmnop1234567890\"\n  }\n}"}],"_postman_id":"5a2b4eae-712b-492f-bde6-6678092c6c9f"},{"name":"Gets list of event webhooks","id":"1464c4bd-7468-4338-9399-cc0695a28d19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/event-webhook?pageSize=5&pageNumber=0&sortField=eventUrl&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","event-webhook"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"eventUrl"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"72df7f98-b17d-4321-ac6b-294efe70a948","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/event-webhook?pageSize=5&pageNumber=1&sortField=eventUrl&sortDirection=dsc&filters=[object Object]","host":["/"],"path":["v2","event-webhook"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"eventUrl","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"},{"key":"filters","value":"[object Object]","description":"Optional column filters"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n      {\n        \"webhookId\": 1,\n        \"eventUrl\": \"https://example.com\",\n        \"secretKey\": \"abcdefghijklmnop1234567890\",\n        \"eventsComplaint\": false,\n        \"eventsFailed\": true,\n        \"eventsSent\": false,\n        \"eventsTracking\": false,\n        \"eventsDeferrals\": false,\n        \"eventsQueued\": false,\n        \"created\": \"1954-10-01T17:21:00.463Z\",\n        \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n        \"format\": \"Json\"\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"1464c4bd-7468-4338-9399-cc0695a28d19"},{"name":"Gets one event webhook","id":"8763e544-93d7-4837-bdbc-4c373a4615ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"ffd46d06-dcc9-421c-afd0-e2f8a34b1a3e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/event-webhook/:webhookId","host":["/"],"path":["v2","event-webhook",":webhookId"],"variable":[{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"webhookId\": 12,\n    \"eventUrl\": \"https://example.com\",\n    \"secretKey\": \"abcdefghijklmnop1234567890\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": false,\n    \"eventsTracking\": false,\n    \"eventsDeferrals\": false,\n    \"eventsQueued\": false,\n    \"created\": \"1954-10-01T17:21:00.463Z\",\n    \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n    \"format\": \"Json\"\n  }\n}"}],"_postman_id":"8763e544-93d7-4837-bdbc-4c373a4615ae"},{"name":"Creates an event webhook using the provided request data.","id":"c2383f9d-7644-4ed2-add6-abc4c17b45d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"eventUrl\": \"https://example.com\",\n  \"secretKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/event-webhook","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","event-webhook"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"7a0788b4-6c19-448f-9f72-61d315344d9b","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"eventUrl\": \"https://example.com\",\n  \"secretKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/event-webhook"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"notificationWebhookEvent\": {\n    \"webhookId\": 1,\n    \"eventUrl\": \"https://example.com\",\n    \"secretKey\": \"abcdefghijklmnop1234567890\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": false,\n    \"eventsTracking\": false,\n    \"eventsDeferrals\": false,\n    \"eventsQueued\": false,\n    \"created\": \"1954-10-01T17:21:00.463Z\",\n    \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n    \"format\": \"Json\"\n  }\n  }\n}"}],"_postman_id":"c2383f9d-7644-4ed2-add6-abc4c17b45d2"},{"name":"Updates the event webhook specified in the request","id":"14e59598-5ec9-4f5a-9c12-19165106d40f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"validationKey\": \"abcdefghijklmnop1234567890\",\n  \"enabled\": true,\n  \"enableViaSmtp\": true,\n  \"eventsComplaint\": false,\n  \"eventsFailed\": false,\n  \"eventsSent\": true,\n  \"eventsTracking\": false,\n  \"eventsDeferrals\": false,\n  \"eventsQueued\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"cf698b44-ddfc-422e-887e-ec11aff7dd6c","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"validationKey\": \"abcdefghijklmnop1234567890\",\n  \"enabled\": true,\n  \"enableViaSmtp\": true,\n  \"eventsComplaint\": false,\n  \"eventsFailed\": false,\n  \"eventsSent\": true,\n  \"eventsTracking\": false,\n  \"eventsDeferrals\": false,\n  \"eventsQueued\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/event-webhook/:webhookId","host":["/"],"path":["v2","event-webhook",":webhookId"],"variable":[{"key":"webhookId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"notificationWebhookEvent\": {\n    \"webhookId\": 12,\n    \"eventUrl\": \"https://example.com\",\n    \"secretKey\": \"abcdefghijklmnop1234567890\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": false,\n    \"eventsTracking\": false,\n    \"eventsDeferrals\": false,\n    \"eventsQueued\": false,\n    \"created\": \"1954-10-01T17:21:00.463Z\",\n    \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n    \"format\": \"Json\"\n  }\n}"}],"_postman_id":"14e59598-5ec9-4f5a-9c12-19165106d40f"},{"name":"Deletes an event webhook","id":"790afb6d-9d59-4946-ba61-491b2a6a2e9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"b2de9442-6c06-4bf5-80a9-c6fd4428d2df","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/event-webhook/:webhookId","host":["/"],"path":["v2","event-webhook",":webhookId"],"variable":[{"key":"webhookId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"790afb6d-9d59-4946-ba61-491b2a6a2e9f"},{"name":"Performs a test call based on the type provided to the event webhook","id":"b068d8fd-2c37-4df5-8150-8de72f004c7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/event-webhook/:webhookId/perform-test?type=sent","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"sent"}],"variable":[{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"158c8596-9ba3-4cc7-bdd4-998fdf541e41","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/event-webhook/:webhookId/perform-test?type=sent","host":["/"],"path":["v2","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"sent"}],"variable":[{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"Type\": \"Delivered\",\n        \"Response\": \"Sample Response\",\n        \"LocalIP\": \":01\",\n        \"RemoteMta\": \"Sample RemoteMta\",\n        \"DateTime\": \"2022-09-07T17:49:08.8139901Z\",\n        \"MailingId\": \"SLNL-0-9999999-9999999\",\n        \"MessageId\": \"SampleMessageId\",\n        \"Address\": \"email@example.com\",\n        \"ServerId\": 16332,\n        \"SecretKey\": \"n7BJk25EtAr39Sfa4K8R\",\n        \"Data\": {\n            \"Meta\": [\n                {\n                    \"x-mycustommetadata\":\"I am custom metadata\"\n                }\n            ],\n            \"Tags\":[\n                \"Same Tag\",\n                \"Same Message\"\n            ]\n        }\n    }\n}"}],"_postman_id":"b068d8fd-2c37-4df5-8150-8de72f004c7b"}],"id":"2d5c9a32-678a-4ba1-9c52-8bddd90b3195","description":"<h2 id=\"so-what-is-a-webhook\">So, <a href=\"https://www.socketlabs.com/blog/what-is-a-webhook/\">what is a webhook?</a></h2>\n<p>Rather than using an API to request and pull your message data, a webhook is a programmatic way to receive instant notifications pushed directly to your application.</p>\n<h2 id=\"getting-started-with-event-webhooks\">Getting Started with Event Webhooks</h2>\n<ul>\n<li><p><a href=\"https://help.socketlabs.com/docs/event-webhooks-authentication-and-access\">Authentication and Access</a></p>\n</li>\n<li><p><a href=\"https://help.socketlabs.com/docs/event-webhooks-events\">Events</a></p>\n</li>\n<li><p><a href=\"https://help.socketlabs.com/docs/event-webhooks-data-attributes\">Data Attributes</a></p>\n</li>\n</ul>\n<p>Note: The following examples are used for setting up and testing your webhook endpoint. Please use the links in the Getting Started section for more information on the webhook events that we will send.</p>\n","_postman_id":"2d5c9a32-678a-4ba1-9c52-8bddd90b3195","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"IP Address Allocation","item":[{"name":"Get all IPs Allocated","id":"0c9671af-6712-4d09-a398-4fa0505bc76c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-allocation?pageSize=5&pageNumber=0&sortField=ipAddress&sortDirection=dsc","description":"<p>Returns a list of IP addresses allocated to your account. If no IPs are available, the list is empty.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-allocation"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"ipAddress"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"59ece80f-9b6e-4561-a1f0-1f4d55abc8fe","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/ip-allocation?pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc&filters=[object Object]","host":["/"],"path":["v2","ip-allocation"],"query":[{"description":"Number of records per page","key":"pageSize","value":"5"},{"description":"Number of pages to off-set","key":"pageNumber","value":"1"},{"description":"Field used to sort the results","key":"sortField","value":"ipsum commodo Duis"},{"description":"Direction used in sorting","key":"sortDirection","value":"dsc"},{"description":"Optional column filters","key":"filters","value":"[object Object]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"ipAssignmentId\": 1,\n      \"accountId\": 98765,\n      \"created\": \"2022-01-01T12:00:00+00:00\",\n      \"lastUpdated\": \"2022-01-01T12:00:00+00:00\",\n      \"ipAddress\": \"127.0.0.1\",\n      \"region\": \"East\"\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"0c9671af-6712-4d09-a398-4fa0505bc76c"}],"id":"bfc7f126-d8c6-4b14-bdc7-5c7ad9950cb4","_postman_id":"bfc7f126-d8c6-4b14-bdc7-5c7ad9950cb4","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"IP Pool Management","item":[{"name":"Gets all the IP Pools for an account","id":"17e63af4-0c10-445d-b5de-c81663e2afca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool?pageSize=5&pageNumber=0&sortField=name&sortDirection=dsc","description":"<p>Returns a list of IP pools created in your account. The default IP pool will always exist.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"name"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"6581f95c-557d-4804-8987-14bd20dcad22","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/ip-pool?pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc&filters=[object Object]","host":["/"],"path":["v2","ip-pool"],"query":[{"description":"Number of records per page","key":"pageSize","value":"5"},{"description":"Number of pages to off-set","key":"pageNumber","value":"1"},{"description":"Field used to sort the results","key":"sortField","value":"ipsum commodo Duis"},{"description":"Direction used in sorting","key":"sortDirection","value":"dsc"},{"description":"Optional column filters","key":"filters","value":"[object Object]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"ipPoolId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My IP Pool\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"isDefault\": true,\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"bounceRate\": 0,\n      \"assignedIPs\": [\n        {\n          \"id\": 123,\n          \"ipAddress\": \"127.0.0.1\",\n          \"region\": \"East\"\n        }\n      ],\n      \"subaccountCount\": 0\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"17e63af4-0c10-445d-b5de-c81663e2afca"},{"name":"Get a specific IP Pool","id":"c9f6e7c5-1d0b-4eff-8123-e9c0dad58a92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool/:ipPoolId","description":"<p>Returns details regarding a specific IP pool.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"a6dbfcc3-cbdb-4204-b3e3-922f93870bf4","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/ip-pool/:ipPoolId","host":["/"],"path":["v2","ip-pool",":ipPoolId"],"variable":[{"key":"ipPoolId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My IP Pool\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"isDefault\": true,\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"bounceRate\": 0,\n    \"assignedIPs\": [\n      {\n        \"id\": 123,\n        \"ipAddress\": \"127.0.0.1\",\n        \"region\": \"East\"\n      }\n    ],\n    \"subaccountCount\": 0\n  }\n}"}],"_postman_id":"c9f6e7c5-1d0b-4eff-8123-e9c0dad58a92"},{"name":"Create a new IP Pool","id":"4ec3ecdb-786c-44e8-8aa1-a6e581166d40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ipAssignmentIds\": [\n    123,\n    456\n  ],\n  \"name\": \"Test IP Pool\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/ip-pool","description":"<p>Creates a new IP pool with the IPs assigned to it in the body.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"7c34d4c9-c24c-4dda-9a77-4d644943018f","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"ipAssignmentIds\": [\n    123,\n    456\n  ],\n  \"name\": \"Test IP Pool\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/ip-pool"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"Test IP Pool\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"isDefault\": true,\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"bounceRate\": 0,\n    \"assignedIPs\": [\n        {\n            \"id\": 123,\n            \"ipAddress\": \"127.0.0.1\",\n            \"region\": \"East\"\n        }\n    ],\n    \"subaccountCount\": 0\n  }\n}"}],"_postman_id":"4ec3ecdb-786c-44e8-8aa1-a6e581166d40"},{"name":"Update the name of an IP Pool","id":"ba4d2dc3-6ebd-4b17-b826-9dc71f7afe51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Name\",\n  \"ipPoolId\": 12345\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/ip-pool/:ipPoolId","description":"<p>Edits the name of an IP pool given the IP pool ID.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"ed044eff-681c-4685-ad64-e206213b6742","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Name\",\n  \"ipPoolId\": 12345\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/ip-pool/:ipPoolId","host":["/"],"path":["v2","ip-pool",":ipPoolId"],"variable":[{"key":"ipPoolId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"Test Name\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"isDefault\": true,\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"bounceRate\": 0,\n    \"assignedIPs\": [\n        {\n            \"id\": 123,\n            \"ipAddress\": \"127.0.0.1\",\n            \"region\": \"East\"\n        }\n    ],\n    \"subaccountCount\": 0\n  }\n}"}],"_postman_id":"ba4d2dc3-6ebd-4b17-b826-9dc71f7afe51"},{"name":"Delete an IP Pool","id":"3393b7ad-e2eb-45fb-a08d-e937d2b595f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool/:ipPoolId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"1802918e-1ee4-4a09-b1d5-fe64c9c5cb85","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/ip-pool/:ipPoolId","host":["/"],"path":["v2","ip-pool",":ipPoolId"],"variable":[{"key":"ipPoolId","value":"12345"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3393b7ad-e2eb-45fb-a08d-e937d2b595f5"},{"name":"Gets all the subaccounts for the specified IP Pool","id":"9d854e12-3979-4cf1-8958-7cb21f41743e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool/:ipPoolId/subaccounts?pageSize=5&pageNumber=0&sortField=name&sortDirection=dsc","description":"<p>Returns a list of subaccounts in your account. If no subaccounts exist, the list is empty.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId","subaccounts"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"name"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"d72a6e0a-0be3-4e3d-a8f6-923f098b8ff5","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/ip-pool/:ipPoolId/subaccounts?pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc&filters=[object Object]","host":["/"],"path":["v2","ip-pool",":ipPoolId","subaccounts"],"query":[{"description":"Number of records per page","key":"pageSize","value":"5"},{"description":"Number of pages to off-set","key":"pageNumber","value":"1"},{"description":"Field used to sort the results","key":"sortField","value":"ipsum commodo Duis"},{"description":"Direction used in sorting","key":"sortDirection","value":"dsc"},{"description":"Optional column filters","key":"filters","value":"[object Object]"}],"variable":[{"key":"ipPoolId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"subaccountId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My Subaccount\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"assignedIPPool\": {\n        \"ipPoolId\": 12345,\n        \"accountId\": 98765,\n        \"name\": \"My IP Pool\",\n        \"status\": \"Active\",\n        \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n        \"isDefault\": true,\n        \"streamScore\": 85,\n        \"avgDailyVolume\": 123456,\n        \"bounceRate\": 0,\n        \"subaccountCount\": 0\n      },\n      \"useRuleEngine\": false\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"9d854e12-3979-4cf1-8958-7cb21f41743e"},{"name":"Assign subaccount to an IP Pool","id":"fc9282b1-9124-4485-8038-9206f6c34a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"subAccountIds\": [\n    65965702,\n    -8358823\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/ip-pool/:ipPoolId/subaccounts","description":"<p>Directly assigns a subaccount to an IP pool. If a subaccount is not directly assigned to an IP pool, it will use Rule Engine by default.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId","subaccounts"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"fd42fef1-24f5-41a4-be2c-e347c3aadbd6","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"subAccountIds\": [\n    65965702,\n    -8358823\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/ip-pool/:ipPoolId/subaccounts","host":["/"],"path":["v2","ip-pool",":ipPoolId","subaccounts"],"variable":[{"key":"ipPoolId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My IP Pool\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"isDefault\": true,\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"bounceRate\": 0,\n    \"assignedIPs\": [\n      {\n        \"id\": 123,\n        \"ipAddress\": \"127.0.0.1\",\n        \"region\": \"East\"\n      }\n    ],\n    \"subaccountCount\": 0\n  }\n}"}],"_postman_id":"fc9282b1-9124-4485-8038-9206f6c34a8c"},{"name":"Remove subaccount from an IP Pool","id":"7bd245a4-df07-433a-ac4f-a075a512a056","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"subAccountIds\": [\n    12345,\n    98765\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/ip-pool/:ipPoolId/subaccounts","description":"<p>Removes a subaccount from an assigned IP pool. If a subaccount is not assigned to an IP pool, it will be managed by Rule Engine.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId","subaccounts"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"d1f0f460-5852-48f6-86e3-a2c47e6ad6d3","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"subAccountIds\": [\n    12345,\n    98765\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/ip-pool/:ipPoolId/subaccounts","host":["/"],"path":["v2","ip-pool",":ipPoolId","subaccounts"],"variable":[{"key":"ipPoolId","value":null}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My IP Pool\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"isDefault\": true,\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"bounceRate\": 0,\n    \"assignedIPs\": [\n      {\n        \"id\": 123,\n        \"ipAddress\": \"127.0.0.1\",\n        \"region\": \"East\"\n      }\n    ],\n    \"subaccountCount\": 0\n  }\n}"}],"_postman_id":"7bd245a4-df07-433a-ac4f-a075a512a056"},{"name":"Assign an IP to an IP Pool","id":"ebabacec-b1ab-4c67-a70c-a41bbf1cfd26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ipAssignmentIds\": [\n    123,\n    456\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/ip-pool/:ipPoolId/ip","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId","ip"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"21703cf3-ddda-4a22-978b-197e0fea7c05","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"ipAssignmentIds\": [\n    123,\n    456\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/ip-pool/:ipPoolId/ip","host":["/"],"path":["v2","ip-pool",":ipPoolId","ip"],"variable":[{"key":"ipPoolId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My IP Pool\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"isDefault\": true,\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"bounceRate\": 0,\n    \"assignedIPs\": [\n      {\n        \"id\": 123,\n        \"ipAddress\": \"127.0.0.1\",\n        \"region\": \"East\"\n      }\n    ],\n    \"subaccountCount\": 0\n  }\n}"}],"_postman_id":"ebabacec-b1ab-4c67-a70c-a41bbf1cfd26"},{"name":"Delete an IP from an IP Pool","id":"81479e69-0470-4ebe-a216-2a3d2d730fda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ipAssignmentIds\": [\n    -40253510,\n    -43248312\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/ip-pool/:ipPoolId/ip","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId","ip"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"ebd6bdfc-80d4-42c1-bd33-be4da62ff4a7","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ipAssignmentIds\": [\n    -40253510,\n    -43248312\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/ip-pool/:ipPoolId/ip","host":["/"],"path":["v2","ip-pool",":ipPoolId","ip"],"variable":[{"key":"ipPoolId","value":null}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My IP Pool\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"isDefault\": true,\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"bounceRate\": 0,\n    \"assignedIPs\": [\n      {\n        \"id\": 123,\n        \"ipAddress\": \"127.0.0.1\",\n        \"region\": \"East\"\n      }\n    ],\n    \"subaccountCount\": 0\n  }\n}"}],"_postman_id":"81479e69-0470-4ebe-a216-2a3d2d730fda"},{"name":"Get all domains assigned to the IP pool","id":"3cc00256-9e21-4994-8775-6eb5e95f64ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool/:ipPoolId/domain-assignments","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId","domain-assignments"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"30bc14e6-20f1-4b25-922c-1f99a2dac459","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/ip-pool/:ipPoolId/domain-assignments","host":["/"],"path":["v2","ip-pool",":ipPoolId","domain-assignments"],"variable":[{"key":"ipPoolId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"ipPoolId\": 66369711,\n    \"bounceDomain\": {\n      \"domain\": \"bounce.example.com\",\n      \"isDefault\": false,\n      \"createdOn\": \"1954-09-13T00:08:39.954Z\",\n      \"updatedOn\": \"1985-08-16T07:52:37.082Z\"\n    },\n    \"overwrite\": false\n  }\n}"}],"_postman_id":"3cc00256-9e21-4994-8775-6eb5e95f64ab"}],"id":"6008536d-eadf-457f-9023-b29d832b9311","_postman_id":"6008536d-eadf-457f-9023-b29d832b9311","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Suppression List","item":[{"name":"Gets a list of addresses based on provided search terms from the Account suppression list","id":"eb66ba34-5f9a-43f8-95db-6af90db46dbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/suppressions/search?pageSize=5&pageNumber=0&sortField=suppressionLastUpdate&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","suppressions","search"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"suppressionLastUpdate"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"4e04467c-988a-4f2f-bcf0-60d57bbe2895","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/suppressions/search?pageSize=5&pageNumber=1&sortField=suppressionLastUpdate&sortDirection=dsc","host":["/"],"path":["v2","suppressions","search"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"suppressionLastUpdate","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.com\",\n      \"created\": \"2013-03-24T13:34:31.709Z\",\n      \"lastUpdate\": \"1967-04-23T15:21:49.144Z\",\n      \"suppressReason\": \"Lorem ipsum\",\n      \"suppressionLastUpdate\": \"2003-11-05T15:57:05.030Z\",\n      \"suppressionStatus\": \"Suppressed\",\n      \"statusId\": \"Active\"\n    },\n    {\n      \"id\": 2,\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.org\",\n      \"created\": \"1970-10-28T10:24:23.053Z\",\n      \"lastUpdate\": \"1995-08-27T02:48:01.230Z\",\n      \"suppressReason\": \"Duis dolor id\",\n      \"suppressionLastUpdate\": \"1972-04-17T12:15:11.637Z\",\n      \"suppressionStatus\": \"Removed\",\n      \"statusId\": \"Unsubscribe\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"eb66ba34-5f9a-43f8-95db-6af90db46dbd"},{"name":"Download a list of addresses based on provided search terms from the Account suppression list","id":"78c4a199-718e-4a93-bf81-1f27e3678473","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/suppressions/download?sortField=suppressionLastUpdate&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","suppressions","download"],"host":["/"],"query":[{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"suppressionLastUpdate"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"dc76eb43-e46b-433a-9c5a-679b11f0e6fa","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/suppressions/download?sortField=suppressionLastUpdate&sortDirection=dsc","host":["/"],"path":["v2","suppressions","download"],"query":[{"key":"sortField","value":"suppressionLastUpdate","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"id,serverId,emailAddress,created,lastUpdate,suppressReason,suppressionLastUpdate,suppressionStatus,statusId\r\n1,12345,\"test@example.com\",\"2013-03-24T13:34:31.709Z\",\"1967-04-23T15:21:49.144Z\",\"Lorem ipsum\",\"2003-11-05T15:57:05.030Z\",\"Suppressed\",\"Active\""}],"_postman_id":"78c4a199-718e-4a93-bf81-1f27e3678473"},{"name":"Gets one addresses based on provided search terms from the Account suppression list","id":"b86c3810-6748-46a9-8c97-6dd5847b4cad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/suppressions?emailAddress=test@example.com","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","suppressions"],"host":["/"],"query":[{"description":{"content":"<p>Email Address to search by</p>\n","type":"text/plain"},"key":"emailAddress","value":"test@example.com"}],"variable":[]}},"response":[{"id":"d6fe6ab8-5bfc-4825-a487-a2095367b70a","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/suppressions?emailAddress=test@example.com","host":["/"],"path":["v2","suppressions"],"query":[{"key":"emailAddress","value":"test@example.com","description":"Email Address to search by"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"serverId\": 12345,\n    \"emailAddress\": \"test@example.com\",\n    \"created\": \"1952-01-08T12:14:32.609Z\",\n    \"lastUpdate\": \"2005-12-31T13:41:18.107Z\",\n    \"suppressReason\": \"Duis labo\",\n    \"suppressionLastUpdate\": \"1946-05-17T13:44:09.370Z\",\n    \"suppressionStatus\": \"Default\",\n    \"statusId\": \"Complaint\"\n  }\n}"}],"_postman_id":"b86c3810-6748-46a9-8c97-6dd5847b4cad"},{"name":"Adds an address to the Account suppression list","id":"bc21c66f-429c-41e7-859c-2d9bd6caeb76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"notes\": \"et dolore enim commodo voluptate\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/suppressions","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","suppressions"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"7f45bc4f-739c-44d3-981b-0423eb41e7bd","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"notes\": \"et dolore enim commodo voluptate\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/suppressions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"serverId\": 12345,\n    \"emailAddress\": \"test@example.com\",\n    \"created\": \"1952-01-08T12:14:32.609Z\",\n    \"lastUpdate\": \"2005-12-31T13:41:18.107Z\",\n    \"suppressReason\": \"Duis labo\",\n    \"suppressionLastUpdate\": \"1946-05-17T13:44:09.370Z\",\n    \"suppressionStatus\": \"Default\",\n    \"statusId\": \"Complaint\"\n  }\n}"}],"_postman_id":"bc21c66f-429c-41e7-859c-2d9bd6caeb76"},{"name":"Bulk add an address to the Account suppression list","id":"787dd7f4-3f9b-4161-9644-4307beedf346","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"suppressionRequests\": [\n    {\n      \"emailAddress\": \"test@example.com\",\n      \"notes\": \"nisi ipsum ut anim\"\n    },\n    {\n      \"emailAddress\": \"test@example.org\",\n      \"notes\": \"et eiusmod nostrud exercita\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/suppressions/bulk","description":"<p>Max of 100 email addresses per call.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","suppressions","bulk"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"13d3e41a-368b-483b-a263-eb096ce5f6ac","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"suppressionRequests\": [\n    {\n      \"emailAddress\": \"test@example.com\",\n      \"notes\": \"nisi ipsum ut anim\"\n    },\n    {\n      \"emailAddress\": \"test@example.org\",\n      \"notes\": \"et eiusmod nostrud exercita\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/suppressions/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"emailAddress\": \"test@example.com\",\n      \"result\": \"ValidationFailed\",\n      \"error\": [\n        \"fugiat pariatur reprehenderit\",\n        \"cupidatat aliquip anim\"\n      ]\n    },\n    {\n      \"emailAddress\": \"test@example.org\",\n      \"result\": \"AddressNotFound\",\n      \"error\": [\n        \"occaecat ex nisi\",\n        \"et qui dolor non aliqua\"\n      ]\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"787dd7f4-3f9b-4161-9644-4307beedf346"},{"name":"Bulk removal of email addresses from the Account suppression list","id":"7b85e328-5c3b-4fc0-a3e7-42b68b30e9a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"test@example.com\",\n  \"test@example.org\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/suppressions/bulk-remove","description":"<p>Max of 100 email addresses per call.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","suppressions","bulk-remove"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"e29ad03c-3642-4ac5-b4e9-f187f710fef1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"[\n  \"test@example.com\",\n  \"test@example.org\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/suppressions/bulk-remove"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.com\",\n      \"result\": \"InsufficientPrivileges\"\n    },\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.org\",\n      \"result\": \"AddressNotFound\"\n    }\n  ]\n}"}],"_postman_id":"7b85e328-5c3b-4fc0-a3e7-42b68b30e9a7"},{"name":"Removes an address from the Account suppression list","id":"c552a8a7-00a7-4134-8672-a0eb59ce32bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/suppressions/remove?emailAddress=test@example.com","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","suppressions","remove"],"host":["/"],"query":[{"description":{"content":"<p>Email Address to search by</p>\n","type":"text/plain"},"key":"emailAddress","value":"test@example.com"}],"variable":[]}},"response":[{"id":"14a296ae-b013-4b1b-973f-f2f2ec555a61","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/suppressions/remove?emailAddress=ipsum commodo Duis","host":["/"],"path":["v2","suppressions","remove"],"query":[{"description":"Email Address to search by","key":"emailAddress","value":"ipsum commodo Duis"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c552a8a7-00a7-4134-8672-a0eb59ce32bc"}],"id":"41f15575-9130-4b36-b13e-3d8446f4d270","_postman_id":"41f15575-9130-4b36-b13e-3d8446f4d270","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"IP Pools - StreamScore","item":[{"name":"Get the StreamScore for the requested subaccount","id":"9f0ee6f5-6025-491a-8f59-51540762b7b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool/:ipPoolId/streamscore?requestDate=2022-01-14","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ipPoolId","streamscore"],"host":["/"],"query":[{"description":{"content":"<p>the requested date</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-14"}],"variable":[{"type":"any","value":"12345","key":"ipPoolId"}]}},"response":[{"id":"cc1dc9f2-2341-416f-8831-365a16272de7","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/ip-pool/:ipPoolId/streamscore?requestDate=2022-01-14","host":["/"],"path":["v2","ip-pool",":ipPoolId","streamscore"],"query":[{"key":"requestDate","value":"2022-01-14","description":"the requested date"}],"variable":[{"key":"ipPoolId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"score\": 90,\n    \"woWChange\": -10,\n    \"doDChange\": 7,\n    \"data\": [\n      {\n        \"score\": 90,\n        \"dateComputed\": \"1975-01-26T04:54:04.242Z\",\n        \"detail\": {\n          \"audienceScore\": 90,\n          \"engagementScore\": 90,\n          \"reputationScore\": 90,\n          \"authenticationStatus\": \"Authenticated\",\n          \"hasDkimRecord\": true,\n          \"hasSpfRecord\": true\n        }\n      },\n      {\n        \"score\": 90,\n        \"dateComputed\": \"2001-08-29T15:52:52.126Z\",\n        \"detail\": {\n          \"audienceScore\": 90,\n          \"engagementScore\": 90,\n          \"reputationScore\": 90,\n          \"authenticationStatus\": \"PartialAuthenticated\",\n          \"hasDkimRecord\": false,\n          \"hasSpfRecord\": false\n        }\n      }\n    ],\n    \"todaysAnalytics\": {\n      \"dateComputed\": \"1973-03-27T18:58:46.279Z\",\n      \"averageScore\": 90,\n      \"highScore\": 90,\n      \"lowScore\": 09,\n      \"totalProcessed\": 123456789,\n      \"percentProcessed\": 100\n    },\n    \"previousAnalytics\": {\n      \"dateComputed\": \"1986-09-30T09:17:57.458Z\",\n      \"averageScore\": 90,\n      \"highScore\": 90,\n      \"lowScore\": 90,\n      \"totalProcessed\": 123456789,\n      \"percentProcessed\": 100\n    }\n  }\n}"}],"_postman_id":"9f0ee6f5-6025-491a-8f59-51540762b7b4"}],"id":"bc005f00-6fb4-4c31-bd7b-899f342ff009","_postman_id":"bc005f00-6fb4-4c31-bd7b-899f342ff009","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Rule Engine","item":[{"name":"Get a list of Message Rules","id":"593507ad-5074-40dd-9b2a-4c58c528d99a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/rule-engine/message-rules/?pageSize=5&pageNumber=0&sortField=priority&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules",""],"host":["/"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"priority"},{"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"43d5ebdd-dbcf-447c-8faa-c30a7d178d5f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/rule-engine/message-rules/?pageSize=5&pageNumber=1&sortField=priority&sortDirection=dsc","host":["/"],"path":["v2","rule-engine","message-rules",""],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"priority"},{"key":"sortDirection","value":"dsc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"messageRuleId\": 1,\n            \"name\": \"Subaccount StreamScore Over 90\",\n            \"accountId\": 98765,\n            \"createdOn\": \"2023-01-27T23:40:58\",\n            \"lastUpdated\": \"2023-03-20T17:43:50.059616\",\n            \"priority\": 1,\n            \"ruleGroups\": [\n                {\n                    \"rules\": [\n                        {\n                            \"field\": \"SubaccountStreamScore\",\n                            \"value\": \"90\",\n                            \"predicate\": \"gt\"\n                        }\n                    ],\n                    \"ruleOperator\": \"or\"\n                }\n            ],\n            \"action\": \"UpdateIpPool\",\n            \"actionTarget\": \"12345\",\n            \"isDefault\": false\n        },\n        {\n            \"messageRuleId\": 2,\n            \"name\": \"SubaccountId Equals\",\n            \"accountId\": 98765,\n            \"createdOn\": \"2023-01-27T21:22:25\",\n            \"lastUpdated\": \"2023-03-20T17:43:50.05955\",\n            \"priority\": 2,\n            \"ruleGroups\": [\n                {\n                    \"rules\": [\n                        {\n                            \"field\": \"SubaccountId\",\n                            \"value\": \"45678\",\n                            \"predicate\": \"eq\"\n                        }\n                    ],\n                    \"ruleOperator\": \"or\"\n                }\n            ],\n            \"action\": \"UpdateIpPool\",\n            \"isDefault\": false,\n            \"weightedIpPools\": [\n                {\n                    \"ipPool\": \"12345\",\n                    \"weight\": 50\n                },\n                {\n                    \"ipPool\": \"12346\",\n                    \"weight\": 50\n                }\n            ]\n        },\n        {\n            \"messageRuleId\": 3,\n            \"name\": \"MX Unknown\",\n            \"accountId\": 98765,\n            \"createdOn\": \"2023-01-26T18:15:36\",\n            \"lastUpdated\": \"2023-03-20T17:43:50.059469\",\n            \"priority\": 3,\n            \"ruleGroups\": [\n                {\n                    \"rules\": [\n                        {\n                            \"field\": \"MxProvider\",\n                            \"value\": \"Unknown\",\n                            \"predicate\": \"eq\"\n                        }\n                    ],\n                    \"ruleOperator\": \"or\"\n                }\n            ],\n            \"action\": \"UpdateIpPool\",\n            \"isDefault\": false,\n            \"weightedIpPools\": [\n                {\n                    \"ipPool\": \"12345\",\n                    \"weight\": 50\n                },\n                {\n                    \"ipPool\": \"12346\",\n                    \"weight\": 50\n                }\n            ]\n        },\n        {\n            \"messageRuleId\": 4,\n            \"name\": \"Default\",\n            \"accountId\": 98765,\n            \"createdOn\": \"2022-12-08T15:14:12\",\n            \"lastUpdated\": \"2023-03-20T17:43:50.05932\",\n            \"priority\": 4,\n            \"ruleGroups\": [],\n            \"action\": \"UpdateIpPool\",\n            \"actionTarget\": \"12345\",\n            \"isDefault\": true\n        }\n    ],\n    \"total\": 4\n}"}],"_postman_id":"593507ad-5074-40dd-9b2a-4c58c528d99a"},{"name":"Get Message Rule by Id (Single IP Pool)","id":"186667ac-6b6c-4612-bb12-5110f9678dea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/rule-engine/message-rules/:messageRuleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules",":messageRuleId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"3","key":"messageRuleId"}]}},"response":[{"id":"49c736ca-3739-488e-8f3e-45fcaeb184f5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/rule-engine/message-rules/:messageRuleId","host":["/"],"path":["v2","rule-engine","message-rules",":messageRuleId"],"variable":[{"key":"messageRuleId","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n        \"messageRuleId\": 3,\n        \"name\": \"MX Unknown\",\n        \"accountId\": 98765,\n        \"createdOn\": \"2023-01-26T18:15:36\",\n        \"lastUpdated\": \"2023-03-20T17:43:50.059469\",\n        \"priority\": 3,\n        \"ruleGroups\": [\n            {\n                \"rules\": [\n                    {\n                        \"field\": \"MxProvider\",\n                        \"value\": \"Unknown\",\n                        \"predicate\": \"eq\"\n                    }\n                ],\n                \"ruleOperator\": \"or\"\n            }\n        ],\n        \"action\": \"UpdateIpPool\",\n        \"actionTarget\": \"12345\",\n        \"isDefault\": false\n    }\n}"}],"_postman_id":"186667ac-6b6c-4612-bb12-5110f9678dea"},{"name":"Get Message Rule by Id (Multiple Weighted IP Pools)","id":"b7ab8315-fb0b-4f56-9713-63833cdbb618","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/rule-engine/message-rules/:messageRuleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules",":messageRuleId"],"host":["/"],"query":[],"variable":[{"id":"6f0f441f-f1ae-4593-a960-319f5608ff96","type":"any","value":"3","key":"messageRuleId"}]}},"response":[{"id":"56bced42-9aed-465e-90e5-d03011a998b0","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/rule-engine/message-rules/:messageRuleId","host":["/"],"path":["v2","rule-engine","message-rules",":messageRuleId"],"variable":[{"key":"messageRuleId","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n        \"messageRuleId\": 3,\n        \"name\": \"MX Unknown\",\n        \"accountId\": 98765,\n        \"createdOn\": \"2023-01-26T18:15:36\",\n        \"lastUpdated\": \"2023-03-20T17:43:50.059469\",\n        \"priority\": 3,\n        \"ruleGroups\": [\n            {\n                \"rules\": [\n                    {\n                        \"field\": \"MxProvider\",\n                        \"value\": \"Unknown\",\n                        \"predicate\": \"eq\"\n                    }\n                ],\n                \"ruleOperator\": \"or\"\n            }\n        ],\n        \"action\": \"UpdateIpPool\",\n        \"isDefault\": false,    \n        \"weightedIpPools\": [\n            {\n                \"ipPool\": \"12345\",\n                \"weight\": 50\n            },\n            {\n                \"ipPool\": \"12346\",\n                \"weight\": 50\n            }\n        ]\n    }\n}"}],"_postman_id":"b7ab8315-fb0b-4f56-9713-63833cdbb618"},{"name":"Add New Message Rule (Single IP Pool)","id":"d3be01f3-d09e-49d7-a2e1-899a76e24e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"MX Unknown\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"actionTarget\": \"12345\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"eq\",\n                    \"value\": \"Unknown\",\n                    \"field\": \"MxProvider\"\n                }\n            ]\n        }\n    ]\n\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/rule-engine/message-rules","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"0f1758c5-4f82-4f95-b6a0-d46b6ae5d4a2","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"MX Unknown\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"actionTarget\": \"12345\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"eq\",\n                    \"value\": \"Unknown\",\n                    \"field\": \"MxProvider\"\n                }\n            ]\n        }\n    ]\n\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/rule-engine/message-rules"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n        \"messageRuleId\": 3,\n        \"name\": \"MX Unknown\",\n        \"accountId\": 98765,\n        \"createdOn\": \"2023-01-26T18:15:36\",\n        \"lastUpdated\": \"2023-03-20T17:43:50.059469\",\n        \"priority\": 3,\n        \"ruleGroups\": [\n            {\n                \"rules\": [\n                    {\n                        \"field\": \"MxProvider\",\n                        \"value\": \"Unknown\",\n                        \"predicate\": \"eq\"\n                    }\n                ],\n                \"ruleOperator\": \"or\"\n            }\n        ],\n        \"action\": \"UpdateIpPool\",\n        \"actionTarget\": \"12345\",\n        \"isDefault\": false,\n    }\n}"}],"_postman_id":"d3be01f3-d09e-49d7-a2e1-899a76e24e86"},{"name":"Add New Message Rule (Multiple Weighted IP Pools)","id":"2095c86e-ad59-449a-a54c-991b53e8be8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"MX Unknown\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"actionTarget\": \"12345\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"eq\",\n                    \"value\": \"Unknown\",\n                    \"field\": \"MxProvider\"\n                }\n            ]\n        }\n    ]\n\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/rule-engine/message-rules","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"c257d069-f349-41c4-ac6c-63a227e4067e","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"MX Unknown\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"actionTarget\": \"12345\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"eq\",\n                    \"value\": \"Unknown\",\n                    \"field\": \"MxProvider\"\n                }\n            ]\n        }\n    ],\n    \"weightedIpPools\": [\n        {\n            \"ipPool\": \"12345\",\n            \"weight\": 50\n        },\n        {\n            \"ipPool\": \"12346\",\n            \"weight\": 50\n        }\n    ]\n\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/rule-engine/message-rules"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n        \"messageRuleId\": 3,\n        \"name\": \"MX Unknown\",\n        \"accountId\": 98765,\n        \"createdOn\": \"2023-01-26T18:15:36\",\n        \"lastUpdated\": \"2023-03-20T17:43:50.059469\",\n        \"priority\": 3,\n        \"ruleGroups\": [\n            {\n                \"rules\": [\n                    {\n                        \"field\": \"MxProvider\",\n                        \"value\": \"Unknown\",\n                        \"predicate\": \"eq\"\n                    }\n                ],\n                \"ruleOperator\": \"or\"\n            }\n        ],\n        \"action\": \"UpdateIpPool\",\n        \"isDefault\": false,\n        \"weightedIpPools\": [\n            {\n                \"ipPool\": \"12345\",\n                \"weight\": 50\n            },\n            {\n                \"ipPool\": \"12346\",\n                \"weight\": 50\n            }\n        ]\n    }\n}"}],"_postman_id":"2095c86e-ad59-449a-a54c-991b53e8be8a"},{"name":"Update Message Rule (Single IP Pool)","id":"d060c092-d8f8-49c5-be3d-10393c1febb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"StreamScore < 50 & gmail.com\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"actionTarget\": \"12345\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"lt\",\n                    \"value\": \"50\",\n                    \"field\": \"StreamScore\"\n                }\n            ]\n        },\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\":\"eq\",\n                    \"value\":\"gmail.com\",\n                    \"field\":\"ToDomain\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/rule-engine/message-rules/:messageRuleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules",":messageRuleId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"4","key":"messageRuleId"}]}},"response":[{"id":"dd87bdb5-e309-4af2-8ebf-ab1ad0070c2d","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"StreamScore < 50 & gmail.com\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"actionTarget\": \"12345\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"lt\",\n                    \"value\": \"50\",\n                    \"field\": \"StreamScore\"\n                }\n            ]\n        },\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\":\"eq\",\n                    \"value\":\"gmail.com\",\n                    \"field\":\"ToDomain\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/rule-engine/message-rules/:messageRuleId","host":["/"],"path":["v2","rule-engine","message-rules",":messageRuleId"],"variable":[{"key":"messageRuleId","value":"4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n        \"messageRuleId\": 4,\n        \"Name\": \"StreamScore < 50 & gmail.com\",\n        \"accountId\": 98765,\n        \"createdOn\": \"2023-01-26T18:15:36\",\n        \"lastUpdated\": \"2023-03-20T17:43:50.059469\",\n        \"priority\": 3,\n        \"ruleGroups\": [\n            {\n                \"ruleOperator\":\"or\",\n                \"rules\":\n                [\n                    {\n                        \"predicate\": \"lt\",\n                        \"value\": \"50\",\n                        \"field\": \"StreamScore\"\n                    }\n                ]\n            },\n            {\n                \"ruleOperator\":\"or\",\n                \"rules\":\n                [\n                    {\n                        \"predicate\":\"eq\",\n                        \"value\":\"gmail.com\",\n                        \"field\":\"ToDomain\"\n                    }\n                ]\n            }\n        ],\n        \"action\": \"UpdateIpPool\",\n        \"actionTarget\": \"12345\",\n        \"isDefault\": false\n    }\n}"}],"_postman_id":"d060c092-d8f8-49c5-be3d-10393c1febb1"},{"name":"Update Message Rule (Multiple Weighted IP Pools)","id":"7e9c927f-c5d0-49e6-af51-2f758a73fa4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"StreamScore < 50 & gmail.com\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"actionTarget\": \"12345\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"lt\",\n                    \"value\": \"50\",\n                    \"field\": \"StreamScore\"\n                }\n            ]\n        },\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\":\"eq\",\n                    \"value\":\"gmail.com\",\n                    \"field\":\"ToDomain\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/rule-engine/message-rules/:messageRuleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules",":messageRuleId"],"host":["/"],"query":[],"variable":[{"id":"ed6000fc-f1f8-44e4-bb7f-e3a4c92757d3","type":"any","value":"4","key":"messageRuleId"}]}},"response":[{"id":"3086353c-a2e7-4ebc-bdba-1aa55b4b9fdc","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"StreamScore < 50 & gmail.com\",\n    \"Priority\": 1000,\n    \"action\": \"0\",\n    \"ruleGroups\": [\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\": \"lt\",\n                    \"value\": \"50\",\n                    \"field\": \"StreamScore\"\n                }\n            ]\n        },\n        {\n            \"ruleOperator\":\"or\",\n            \"rules\":\n            [\n                {\n                    \"predicate\":\"eq\",\n                    \"value\":\"gmail.com\",\n                    \"field\":\"ToDomain\"\n                }\n            ]\n        }\n    ],\n    \"weightedIpPools\": [\n        {\n            \"ipPool\": \"12345\",\n            \"weight\": 50\n        },\n        {\n            \"ipPool\": \"12346\",\n            \"weight\": 50\n        }\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/rule-engine/message-rules/:messageRuleId","host":["/"],"path":["v2","rule-engine","message-rules",":messageRuleId"],"variable":[{"key":"messageRuleId","value":"4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n        \"messageRuleId\": 4,\n        \"Name\": \"StreamScore < 50 & gmail.com\",\n        \"accountId\": 98765,\n        \"createdOn\": \"2023-01-26T18:15:36\",\n        \"lastUpdated\": \"2023-03-20T17:43:50.059469\",\n        \"priority\": 3,\n        \"ruleGroups\": [\n            {\n                \"ruleOperator\":\"or\",\n                \"rules\":\n                [\n                    {\n                        \"predicate\": \"lt\",\n                        \"value\": \"50\",\n                        \"field\": \"StreamScore\"\n                    }\n                ]\n            },\n            {\n                \"ruleOperator\":\"or\",\n                \"rules\":\n                [\n                    {\n                        \"predicate\":\"eq\",\n                        \"value\":\"gmail.com\",\n                        \"field\":\"ToDomain\"\n                    }\n                ]\n            }\n        ],\n        \"action\": \"UpdateIpPool\",\n        \"isDefault\": false,\n        \"weightedIpPools\": [\n            {\n                \"ipPool\": \"12345\",\n                \"weight\": 50\n            },\n            {\n                \"ipPool\": \"12346\",\n                \"weight\": 50\n            }\n        ]\n    }\n}"}],"_postman_id":"7e9c927f-c5d0-49e6-af51-2f758a73fa4c"},{"name":"Delete Message Rule","id":"6f1286d3-8def-41be-bc0a-8711c4d9a068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/rule-engine/message-rules/:messageRuleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","rule-engine","message-rules",":messageRuleId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"123","key":"messageRuleId"}]}},"response":[{"id":"edcce774-708a-4653-8920-9005c934899c","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/rule-engine/message-rules/:messageRuleId","host":["/"],"path":["v2","rule-engine","message-rules",":messageRuleId"],"variable":[{"key":"messageRuleId","value":"123"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6f1286d3-8def-41be-bc0a-8711c4d9a068"}],"id":"952e327a-a68d-4219-ad98-6b9e2e0f468f","_postman_id":"952e327a-a68d-4219-ad98-6b9e2e0f468f","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Sending Overview","item":[{"name":"Get Sending Overview Top Graph","id":"7e3bf498-4915-425d-a326-972c2a397d9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/reports/message/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","reports","message","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[]}},"response":[{"id":"714776b5-efef-4545-bd0c-c2dd702ded83","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/reports/message/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","reports","message","overview"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2023-03-23T00:00:00+00:00\",\n      \"queued\": 33151,\n      \"sent\": 31924,\n      \"delivered\": 30697,\n      \"percentDelivered\": 0.9616,\n      \"uniqueOpens\": 31731,\n      \"percentUniqueOpens\": 1.0337,\n      \"uniqueClicks\": 31733,\n      \"percentUniqueClicks\": 1.0337,\n      \"unsubscribes\": 4701,\n      \"percentUnsubscribes\": 0.1473,\n      \"totalOpens\": 164266,\n      \"totalClicks\": 165044,\n      \"hardFailures\": 567,\n      \"percentHardFailures\": 0.0178,\n      \"softFailures\": 660,\n      \"percentSoftFailures\": 0.0207,\n      \"totalFailures\": 1227,\n      \"percentTotalFailures\": 0.0384,\n      \"complaints\": 11781,\n      \"percentComplaints\": 0.369,\n      \"bytesUsed\": 2325770235,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0,\n      \"data\": [\n        {\n          \"timestamp\": \"2023-03-23T01:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 1.0389,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 1.0409,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"bytesUsed\": 39291280,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        },\n        {\n          \"timestamp\": \"2023-03-23T02:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 1.0389,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 1.0409,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"bytesUsed\": 39291280,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2023-03-22 to 2023-03-23\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"7e3bf498-4915-425d-a326-972c2a397d9f"},{"name":"Get Sending Overview Aggregate Data","id":"26dce618-f638-43f6-8aec-92c7dc3f4f9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/reports/message/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=type&pageSize=5&pageNumber=1&sortField=type&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","reports","message","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"type"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"1"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"type"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"322b116b-49eb-419f-be6f-782e64ace16b","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/reports/message/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=type&pageSize=5&pageNumber=1&sortField=type&sortDirection=dsc","host":["/"],"path":["v2","reports","message","aggregate"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"type","value":"type","description":"Type of aggregate to retrieve"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"type","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 1.0389,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 1.0409,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"bytesUsed\": 39291280,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 1.0389,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 1.0409,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"bytesUsed\": 39291280,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"26dce618-f638-43f6-8aec-92c7dc3f4f9e"}],"id":"8329a818-3b42-4ef6-8717-1df4a6400bb7","description":"<h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>All requests against the Sending Overview Api are limited to 30 requests within 60 seconds. Requests made in excess to this limit will result in an error.</p>\n","_postman_id":"8329a818-3b42-4ef6-8717-1df4a6400bb7","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"StreamMonitor","item":[{"name":"Get the IP Pool StreamMonitor Overview","id":"1ed2af8c-7d7d-47dc-99fc-7b257060e666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool/streammonitor/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool","streammonitor","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[]}},"response":[{"id":"e53ab1e0-10f7-47db-a2c0-c4112ba229c4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/ip-pool/streammonitor/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","ip-pool","streammonitor","overview"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"dateComputed\": \"2003-06-14T04:50:50.010Z\",\n    \"ipPools\": 4,\n    \"highUrgency\": 1,\n    \"percentHighUrgency\": 0.25,\n    \"mediumUrgency\": 1,\n    \"percentMediumUrgency\": 0.25,\n    \"lowUrgency\": 2,\n    \"percentLowUrgency\": 0.5,\n    \"averageStreamScore\": 90,\n    \"totalMessages\": 123456,\n    \"data\": [\n      {\n        \"timestamp\": \"2007-06-15T20:23:16.106Z\",\n        \"ipPools\": 4,\n        \"highUrgency\": 1,\n        \"percentHighUrgency\": 0.25,\n        \"mediumUrgency\": 1,\n        \"percentMediumUrgency\": 0.25,\n        \"lowUrgency\": 2,\n        \"percentLowUrgency\": 0.5,\n        \"averageStreamScore\": 90,\n        \"totalMessages\": 123456\n      },\n      {\n        \"timestamp\": \"2010-11-21T20:01:00.828Z\",\n        \"ipPools\": 4,\n        \"highUrgency\": 1,\n        \"percentHighUrgency\": 0.25,\n        \"mediumUrgency\": 1,\n        \"percentMediumUrgency\": 0.25,\n        \"lowUrgency\": 2,\n        \"percentLowUrgency\": 0.5,\n        \"averageStreamScore\": 90,\n        \"totalMessages\": 123456\n      }\n    ],\n    \"filterCriteria\": \"startDate = 2022-01-01, endDate = 2022-01-05\"\n  }\n}"}],"_postman_id":"1ed2af8c-7d7d-47dc-99fc-7b257060e666"},{"name":"Get the StreamMonitor Report for all IP Pools","id":"51d2b7fd-1a92-4fde-8826-5ff5ccc5d7d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/ip-pool/streammonitor?requestDate=2022-01-01&pageSize=5&pageNumber=0&sortField=name&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool","streammonitor"],"host":["/"],"query":[{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-01"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"name"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"a263d5dd-f42f-4e96-8b92-03c22cf86587","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/ip-pool/streammonitor?requestDate=2023-01-01&pageSize=5&pageNumber=1&sortField=name&sortDirection=dsc","host":["/"],"path":["v2","ip-pool","streammonitor"],"query":[{"key":"requestDate","value":"2023-01-01","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"name","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2010-01-16T22:53:53.307Z\",\n      \"ipPoolId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My IP Pool\",\n      \"createdOn\": \"1952-10-02T03:37:07.545Z\",\n      \"status\": \"Active\",\n      \"streamScore\": 70,\n      \"audienceScore\": 70,\n      \"engagementScore\": 70,\n      \"reputationScore\": 70,\n      \"authenticationStatus\": \"Unauthenticated\",\n      \"hasDkim\": false,\n      \"hasSpf\": false,\n      \"totalProcessed\": 123456,\n      \"percentProcessed\": 100,\n      \"avgDailyVolume\": 4567,\n      \"urgency\": \"High\"\n    },\n    {\n      \"dateComputed\": \"2010-01-16T22:53:53.307Z\",\n      \"ipPoolId\": 45678,\n      \"accountId\": 98765,\n      \"name\": \"Testing IP Pool\",\n      \"createdOn\": \"1952-10-02T03:37:07.545Z\",\n      \"status\": \"Active\",\n      \"streamScore\": 90,\n      \"audienceScore\": 90,\n      \"engagementScore\": 90,\n      \"reputationScore\": 90,\n      \"authenticationStatus\": \"Authenticated\",\n      \"hasDkim\": true,\n      \"hasSpf\": true,\n      \"totalProcessed\": 123456,\n      \"percentProcessed\": 100,\n      \"avgDailyVolume\": 4567,\n      \"urgency\": \"Low\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"51d2b7fd-1a92-4fde-8826-5ff5ccc5d7d3"},{"name":"Get the StreamMonitor Overview for your account","id":"fc80a670-389c-4552-8027-3beb84bf016c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/streammonitor/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","streammonitor","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[]}},"response":[{"id":"6b0c58a0-28c8-413b-9488-b4ba873105df","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/streammonitor/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","streammonitor","overview"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"dateComputed\": \"1974-01-06T11:27:38.172Z\",\n    \"subaccounts\": 10,\n    \"highUrgency\": 2,\n    \"percentHighUrgency\": 0.2,\n    \"mediumUrgency\": 1,\n    \"percentMediumUrgency\": 0.1,\n    \"lowUrgency\": 7,\n    \"percentLowUrgency\": 0.7,\n    \"averageStreamScore\": 65,\n    \"totalMessages\": 123456,\n    \"data\": [\n      {\n        \"timestamp\": \"2021-09-04T08:33:51.374Z\",\n        \"subaccounts\": 10,\n        \"highUrgency\": 2,\n        \"percentHighUrgency\": 0.2,\n        \"mediumUrgency\": 1,\n        \"percentMediumUrgency\": 0.1,\n        \"lowUrgency\": 7,\n        \"percentLowUrgency\": 0.7,\n        \"averageStreamScore\": 65,\n        \"totalMessages\": 23456\n      },\n      {\n        \"timestamp\": \"1957-08-24T10:05:24.841Z\",\n        \"subaccounts\": 10,\n        \"highUrgency\": 2,\n        \"percentHighUrgency\": 0.2,\n        \"mediumUrgency\": 1,\n        \"percentMediumUrgency\": 0.1,\n        \"lowUrgency\": 7,\n        \"percentLowUrgency\": 0.7,\n        \"averageStreamScore\": 65,\n        \"totalMessages\": 12345\n      }\n    ],\n    \"filterCriteria\": \"startDate = 2022-01-01, endDate = 2022-01-05\"\n  }\n}"}],"_postman_id":"fc80a670-389c-4552-8027-3beb84bf016c"},{"name":"Get the StreamMonitor Report for all subaccounts","id":"d14ee5a5-e787-4dd1-ac62-3a1aa22bd112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/streammonitor?requestDate=2022-01-01&pageSize=5&pageNumber=1&sortField=name&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","streammonitor"],"host":["/"],"query":[{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-01"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"1"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"name"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"e814646e-fe40-4406-b642-491e72a636a0","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/streammonitor?requestDate=2022-01-01&pageSize=5&pageNumber=1&sortField=name&sortDirection=dsc","host":["/"],"path":["v2","streammonitor"],"query":[{"key":"requestDate","value":"2022-01-01","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"name","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"1986-08-05T01:44:24.717Z\",\n      \"subaccountId\": 23456,\n      \"accountId\": 98765,\n      \"name\": \"Marketing Mail\",\n      \"createdOn\": \"2015-03-31T01:05:18.508Z\",\n      \"status\": \"Active\",\n      \"streamScore\": 80,\n      \"audienceScore\": 80,\n      \"engagementScore\": 80,\n      \"reputationScore\": 80,\n      \"authenticationStatus\": \"PartialAuthenticated\",\n      \"hasDkim\": true,\n      \"hasSpf\": false,\n      \"totalProcessed\": 34567,\n      \"percentProcessed\": 23456,\n      \"avgDailyVolume\": 12346,\n      \"urgency\": \"High\"\n    },\n    {\n      \"dateComputed\": \"1971-10-20T20:04:11.628Z\",\n      \"subaccountId\": 23457,\n      \"accountId\": 98765,\n      \"name\": \"Transactional Mail\",\n      \"createdOn\": \"1960-01-16T01:21:29.751Z\",\n      \"status\": \"Active\",\n      \"streamScore\": 85,\n      \"audienceScore\": 85,\n      \"engagementScore\": 85,\n      \"reputationScore\": 85,\n      \"authenticationStatus\": \"Authenticated\",\n      \"hasDkim\": true,\n      \"hasSpf\": true,\n      \"totalProcessed\": 34567,\n      \"percentProcessed\": 23456,\n      \"avgDailyVolume\": 12346,\n      \"urgency\": \"Low\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"d14ee5a5-e787-4dd1-ac62-3a1aa22bd112"}],"id":"4c5c5c88-6e05-43b1-8bcb-25f177df3d6a","_postman_id":"4c5c5c88-6e05-43b1-8bcb-25f177df3d6a","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Subaccount","item":[{"name":"Get all subaccounts","id":"2ffd4223-0d1f-4122-93b4-893245a6d023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount?pageSize=5&pageNumber=0&sortField=name&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"name"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"2c755842-f3dd-40a9-9b76-9195cb7a6c23","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount?pageSize=5&pageNumber=1&sortField=name&sortDirection=dsc","host":["/"],"path":["v2","subaccount"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"name","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"subaccountId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My Subaccount\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"assignedIPPool\": {\n        \"ipPoolId\": 12345,\n        \"accountId\": 98765,\n        \"name\": \"My IP Pool\",\n        \"status\": \"Active\",\n        \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n        \"isDefault\": true,\n        \"streamScore\": 85,\n        \"avgDailyVolume\": 123456,\n        \"bounceRate\": 0,\n        \"subaccountCount\": 0\n      },\n      \"useRuleEngine\": false\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"2ffd4223-0d1f-4122-93b4-893245a6d023"},{"name":"Create a new subaccount","id":"3cab5236-d533-481d-ab19-def398aac567","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Name\",\n  \"ipPoolId\": 12345,\n  \"useRuleEngine\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"87aa537a-0e0d-4f40-9389-0644ee4cfb12","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Name\",\n  \"ipPoolId\": 12345,\n  \"useRuleEngine\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"subaccountId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My Subaccount\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"assignedIPPool\": {\n      \"ipPoolId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My IP Pool\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"isDefault\": true,\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"bounceRate\": 0,\n      \"subaccountCount\": 0\n    },\n    \"useRuleEngine\": false\n  }\n}"}],"_postman_id":"3cab5236-d533-481d-ab19-def398aac567"},{"name":"Gets a specific subaccount by subaccountId","id":"ccdaf13e-d677-46de-888e-bd92b4914964","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"36d68ac2-6329-4334-8b42-d8bfcb127237","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId","host":["/"],"path":["v2","subaccount",":subaccountId"],"variable":[{"key":"subaccountId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"subaccountId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My Subaccount\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"assignedIPPool\": {\n      \"ipPoolId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My IP Pool\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"isDefault\": true,\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"bounceRate\": 0,\n      \"subaccountCount\": 0\n    },\n    \"useRuleEngine\": false\n  }\n}"}],"_postman_id":"ccdaf13e-d677-46de-888e-bd92b4914964"},{"name":"Update the name of a subaccount","id":"7e093e32-baf0-4d0c-ab52-225cb4e900e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Name\",\n  \"ipPoolId\": 12345,\n  \"useRuleEngine\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"013dc69b-c704-4b8a-973a-775b9fb0168f","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Name\",\n  \"ipPoolId\": 12345,\n  \"useRuleEngine\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId","host":["/"],"path":["v2","subaccount",":subaccountId"],"variable":[{"key":"subaccountId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"subaccountId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My Subaccount\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"assignedIPPool\": {\n      \"ipPoolId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My IP Pool\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"isDefault\": true,\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"bounceRate\": 0,\n      \"subaccountCount\": 0\n    },\n    \"useRuleEngine\": false\n  }\n}"}],"_postman_id":"7e093e32-baf0-4d0c-ab52-225cb4e900e7"},{"name":"Delete a subaccount","id":"a41aca13-9d57-45ca-b7c5-b2f3e0686305","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"422dba23-0329-464b-ab22-87372c1bab8c","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId","host":["/"],"path":["v2","subaccount",":subaccountId"],"variable":[{"key":"subaccountId"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a41aca13-9d57-45ca-b7c5-b2f3e0686305"},{"name":"Assign a subaccount to an IP Pool","id":"80ccf20f-1956-4b9d-bc8d-38cd80b9dbb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 12345\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/ip-pool","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","ip-pool"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"c2ff66fc-133f-4a4c-b651-a2af134f4bd0","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ipPoolId\": 12345\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/ip-pool","host":["/"],"path":["v2","subaccount",":subaccountId","ip-pool"],"variable":[{"key":"subaccountId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"subaccountId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My Subaccount\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"assignedIPPool\": {\n      \"ipPoolId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My IP Pool\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"isDefault\": true,\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"bounceRate\": 0,\n      \"subaccountCount\": 0\n    },\n    \"useRuleEngine\": false\n  }\n}"}],"_postman_id":"80ccf20f-1956-4b9d-bc8d-38cd80b9dbb8"},{"name":"Remove a subaccount from an IP Pool","id":"3f456b2b-c392-4f2b-8d07-0a3d8e203fdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/ip-pool?ipPoolId=3644490","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","ip-pool"],"host":["/"],"query":[{"key":"ipPoolId","value":"3644490"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"e8727b85-6db9-4911-9ace-800290f8bb35","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/ip-pool?ipPoolId=3644490","host":["/"],"path":["v2","subaccount",":subaccountId","ip-pool"],"query":[{"key":"ipPoolId","value":"3644490"}],"variable":[{"key":"subaccountId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"subaccountId\": 12345,\n    \"accountId\": 98765,\n    \"name\": \"My Subaccount\",\n    \"status\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n    \"streamScore\": 85,\n    \"avgDailyVolume\": 123456,\n    \"assignedIPPool\": {\n      \"ipPoolId\": 12345,\n      \"accountId\": 98765,\n      \"name\": \"My IP Pool\",\n      \"status\": \"Active\",\n      \"createdOn\": \"2022-01-01T12:00:00+00:00\",\n      \"isDefault\": true,\n      \"streamScore\": 85,\n      \"avgDailyVolume\": 123456,\n      \"bounceRate\": 0,\n      \"subaccountCount\": 0\n    },\n    \"useRuleEngine\": false\n  }\n}"}],"_postman_id":"3f456b2b-c392-4f2b-8d07-0a3d8e203fdd"}],"id":"f5824a4c-dd40-4fd8-97a7-9eed4299324c","_postman_id":"f5824a4c-dd40-4fd8-97a7-9eed4299324c","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Message Detail","item":[{"name":"Gets list of messages with details","id":"c73f54af-18db-4b17-a115-5eb16769ff54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/reports/message/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","reports","message","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"to"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[]}},"response":[{"id":"9d9d5c86-db87-4b07-86a2-209d041fa32b","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/reports/message/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=to&sortDirection=dsc","host":["/"],"path":["v2","reports","message","detail"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"to","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.7020165+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.7020185+00:00\",\n      \"subaccountId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2023-03-23T23:46:46.7020268+00:00\",\n      \"lastOpen\": \"2023-03-23T23:46:46.7020273+00:00\",\n      \"firstClick\": \"2023-03-23T23:46:46.7020275+00:00\",\n      \"lastClick\": \"2023-03-23T23:46:46.7020276+00:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2023-03-23T23:46:46.702028+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"trackingUnsubscribeEnabled\": 0,\n      \"trackingOpenEnabled\": 0,\n      \"trackingEnabledLinks\": 0,\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.7020311+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.7020312+00:00\",\n      \"subaccountId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2023-03-23T23:46:46.7020322+00:00\",\n      \"lastOpen\": \"2023-03-23T23:46:46.7020323+00:00\",\n      \"firstClick\": \"2023-03-23T23:46:46.7020325+00:00\",\n      \"lastClick\": \"2023-03-23T23:46:46.7020326+00:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2023-03-23T23:46:46.7020327+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"trackingUnsubscribeEnabled\": 0,\n      \"trackingOpenEnabled\": 0,\n      \"trackingEnabledLinks\": 0,\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"c73f54af-18db-4b17-a115-5eb16769ff54"}],"id":"73d4a003-e7b8-4451-a542-623d48282761","_postman_id":"73d4a003-e7b8-4451-a542-623d48282761","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Account Staged Dkim","item":[{"name":"Add a Staged Dkim","id":"e006b2ff-90f1-4040-8746-fb83d67a7aec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"Selector\":\"selector1\",\r\n    \"Split\":true,\r\n    \"Escaped\":false\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/dkim/staged/:domain","description":"<p>Add a staged DKIM domain to your Account. If the PrivateKey is not provided, we will generate a new public/private key pair for you. Otherwise, we will attempt to validate your private key against the public key for your domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim","staged",":domain"],"host":["/"],"query":[],"variable":[{"id":"9d0bc32f-0257-45f1-b4fc-950f519e5625","type":"any","value":"","key":"domain"}]}},"response":[{"id":"3198d7f0-3a0e-466b-a6ca-43f6a4f5e432","name":"200:Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"serverId\": 12345,\r\n        \"domain\": \"example.com\",\r\n        \"selector\": \"selector1\",\r\n        \"DnsRecord\": \"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8P2f6pNn1g3f5kY7z9e...SAMPLE_KEY_DATA.../O9wIDAQAB\",\r\n        \"split\": true,\r\n        \"escaped\": false,\r\n        \"createdOn\": \"2025-08-08T14:36:30.5818961Z\",\r\n        \"updatedOn\": \"0001-01-01T00:00:00\"\r\n    }\r\n}"},{"id":"989b4880-79ec-4038-8516-44a1c839b062","name":"409:KeyAlreadyExists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"Selector\":\"dkim\",\r\n    \"Split\":true,\r\n    \"Escaped\":false\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": [\r\n        {\r\n            \"errorType\": \"KeyAlreadyExists\",\r\n            \"message\": \"DKIM key already exists for the requested domain.\"\r\n        }\r\n    ]\r\n}"},{"id":"a2ce487c-86f1-4aa0-86c9-b38d25cf8953","name":"400:InvalidRequestBody","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"Selector\":\"dkim\",\r\n    \"Split\":true,\r\n    \"Escaped\":false\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": [\r\n        {\r\n            \"errorType\": \"InvalidRequestBody\",\r\n            \"message\": \"The request is invalid, request body may be missing.\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e006b2ff-90f1-4040-8746-fb83d67a7aec"},{"name":"Get Staged Dkim","id":"f6e32030-588b-4926-b1ac-3cb1216612aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/dkim/staged/:domain","description":"<p>Get the staged DKIM domain on your Account</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim","staged",":domain"],"host":["/"],"query":[],"variable":[{"id":"6798d93a-07a9-4da9-a999-8284d744970b","type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"eaaf646f-b992-4bcf-99aa-5473d6a731bc","name":"200:Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":"example.com"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"serverId\": 12345,\r\n        \"domain\": \"example.com\",\r\n        \"selector\": \"selector1\",\r\n        \"DnsRecord\": \"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8P2f6pNn1g3f5kY7z9e...SAMPLE_KEY_DATA.../O9wIDAQAB\",\r\n        \"split\": true,\r\n        \"escaped\": false,\r\n        \"createdOn\": \"2025-08-08T14:36:31\",\r\n        \"updatedOn\": \"0001-01-01T00:00:00\"\r\n    }\r\n}"},{"id":"1f574bf2-e101-496a-bd53-2ac306cadbb6","name":"404:EntryNotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":"example.com"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": [\r\n        {\r\n            \"errorType\": \"EntryNotFound\",\r\n            \"message\": \"DKIM key is not found for the requested domain.\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"f6e32030-588b-4926-b1ac-3cb1216612aa"},{"name":"Update Staged Dkim","id":"f73af8aa-83e6-4c77-8934-1e7698222c81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"Selector\":\"dkim\",\r\n    \"Split\":true,\r\n    \"Escaped\":true\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/dkim/staged/:domain","description":"<p>Update the staged DKIM domain on your Account</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim","staged",":domain"],"host":["/"],"query":[],"variable":[{"id":"33c5bda9-7c54-4a93-b5fb-afa15b2c2baa","type":"any","value":"","key":"domain"}]}},"response":[{"id":"53cd9429-1744-43bb-b449-d400f118ba74","name":"200:Success","originalRequest":{"method":"PUT","header":[],"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"serverId\": 12345,\r\n        \"domain\": \"example.com\",\r\n        \"selector\": \"selector1\",\r\n        \"DnsRecord\": \"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8P2f6pNn1g3f5kY7z9e...SAMPLE_KEY_DATA.../O9wIDAQAB\",\r\n        \"split\": true,\r\n        \"escaped\": true,\r\n        \"createdOn\": \"2025-08-08T14:36:31\",\r\n        \"updatedOn\": \"2025-08-08T19:58:13.1532513Z\"\r\n    }\r\n}"},{"id":"49937438-c0e0-41b8-8904-07fae32da6b5","name":"404:EntryNotFound","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"Selector\":\"dkim\",\r\n    \"Split\":true,\r\n    \"Escaped\":true\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": [\r\n        {\r\n            \"errorType\": \"EntryNotFound\",\r\n            \"message\": \"DKIM key is not found for the requested domain.\"\r\n        }\r\n    ]\r\n}"},{"id":"a09a433d-4877-4f51-9065-1f4704a3c0d3","name":"400:InvalidRequestBody","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"Selector\":\"dkim\",\r\n    \"Split\":true,\r\n    \"Escaped\":true\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/dkim/staged/:domain","host":["/"],"path":["v2","dkim","staged",":domain"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": [\r\n        {\r\n            \"errorType\": \"InvalidRequestBody\",\r\n            \"message\": \"The request is invalid, request body may be missing.\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"f73af8aa-83e6-4c77-8934-1e7698222c81"},{"name":"Promote Staged Dkim","id":"cbadb225-8089-48c9-809b-f6148a37ab7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"//v2/dkim/staged/:domain/live","description":"<p>Promote the staged DKIM domain on your Account to live</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","dkim","staged",":domain","live"],"host":["/"],"query":[],"variable":[{"id":"ba666261-eddf-4fda-bcb7-a658a9513234","type":"any","value":"","key":"domain"}]}},"response":[{"id":"137825d4-c957-4704-aebf-abbb43dfeb05","name":"200:Success","originalRequest":{"method":"POST","header":[],"url":{"raw":"//v2/dkim/staged/:domain/live","host":["/"],"path":["v2","dkim","staged",":domain","live"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"ServerId\": 12345,\r\n  \"Domain\": \"example.com\",\r\n  \"Selector\": \"selector1\",\r\n  \"DnsRecord\": \"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8P2f6pNn1g3f5kY7z9e...SAMPLE_KEY_DATA.../O9wIDAQAB\",\r\n  \"Split\": false,\r\n  \"Escaped\": false,\r\n  \"CreatedOn\": \"2025-08-08T20:08:58.987Z\",\r\n  \"UpdatedOn\": \"2025-08-08T20:08:58.987Z\",\r\n  \"Result\": \"Success\",\r\n  \"ValidationResult\": \"Success\",\r\n  \"GeneratedKey\": {\r\n    \"DnsHostName\": \"selector1._domainkey.example.com\",\r\n    \"Domain\": \"example.com\",\r\n    \"Selector\": \"selector1\",\r\n    \"DnsRecord\": \"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8P2f6pNn1g3f5kY7z9e...SAMPLE_KEY_DATA.../O9wIDAQAB\",\r\n    \"PublicKey\": \"-----BEGIN PUBLIC KEY-----\\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8P2f6pNn1g3f5kY7z9e...SAMPLE_KEY_DATA.../O9wIDAQAB\\n-----END PUBLIC KEY-----\",\r\n    \"PrivateKey\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXAIBAAKBgQC8P2f6pNn1g3f5kY7z9e...SAMPLE_KEY_DATA.../O9wIDAQAB\\nAoGBAI7...REST_OF_PRIVATE_KEY...\\n-----END RSA PRIVATE KEY-----\"\r\n  },\r\n  \"ShouldValidationDkim\": true,\r\n  \"AccountIdentity\": true,\r\n  \"ExcludeSLDkim\": false\r\n}"},{"id":"9d83ba1f-a6cf-4ee7-b13c-58b9d8f99309","name":"404:EntryNotFound","originalRequest":{"method":"POST","header":[],"url":{"raw":"//v2/dkim/staged/:domain/live","host":["/"],"path":["v2","dkim","staged",":domain","live"],"variable":[{"key":"domain","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": [\r\n        {\r\n            \"errorType\": \"EntryNotFound\",\r\n            \"message\": \"DKIM key is not found for the requested domain.\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"cbadb225-8089-48c9-809b-f6148a37ab7d"}],"id":"5c657215-dc59-4263-bd9e-3609e55388d7","_postman_id":"5c657215-dc59-4263-bd9e-3609e55388d7","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}}],"id":"f9e9600e-ccf4-4d75-b14a-0a823dc54585","_postman_id":"f9e9600e-ccf4-4d75-b14a-0a823dc54585","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Subaccount","item":[{"name":"API Key Management","item":[{"name":"Get all API Keys for a subaccount","id":"5d5fd7b1-2adc-4f0a-99ae-52950d287d7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/api-key?pageSize=5&pageNumber=0&sortField=ipsum commodo Duis&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","api-key"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"ipsum commodo Duis"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"8c5c4c46-ee54-463d-b630-4318067a3fcf","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/api-key?pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","api-key"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"ipsum commodo Duis","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"apiKeyId\": 123,\n      \"name\": \"My New Api Key\",\n      \"publicPart\": \"abcdefghijklmnopqrstuvwxyz\",\n      \"isEnabled\": true,\n      \"createdOn\": \"2023-03-23T21:46:46.7642941+00:00\"\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"5d5fd7b1-2adc-4f0a-99ae-52950d287d7f"},{"name":"Add new API Key for a subaccount","id":"bfdcfe89-7967-4f4f-9673-4ee575f27344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"My API key\",    \n  \"permissions\": [\n        \"ApiOnly\",\n        \"InjectionApi\"\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/credentials/api-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","api-key"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"f1d8e569-6efb-4c17-a182-191183b90874","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"cupidatat dolore\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/credentials/api-key","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","api-key"],"variable":[{"key":"subaccountId"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"apiKeyId\": 123,\n    \"name\": \"My New Api Key\",\n    \"publicPart\": \"abcdefghijklmnopqrstuvwxyz\",\n    \"isEnabled\": true,\n    \"createdOn\": \"2023-03-23T21:46:46.7667878+00:00\"\n  }\n}"}],"_postman_id":"bfdcfe89-7967-4f4f-9673-4ee575f27344"},{"name":"Update API Key on a subaccount","id":"e33f0a7b-cd44-4970-9d09-bf898adf7a7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"My API key\",    \n  \"isEnabled\": true,\n  \"permissions\": [\n        \"ApiOnly\",\n        \"InjectionApi\"\n    ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/credentials/api-key/:apiKeyId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","api-key",":apiKeyId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"12345","key":"apiKeyId"}]}},"response":[{"id":"fd1b5e02-2567-4c06-89d0-78c03eebeca2","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"commodo culpa qui officia\",\n  \"isEnabled\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/credentials/api-key/:apiKeyId","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","api-key",":apiKeyId"],"variable":[{"key":"subaccountId"},{"key":"apiKeyId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"apiKeyId\": 123,\n    \"name\": \"My New Api Key\",\n    \"publicPart\": \"abcdefghijklmnopqrstuvwxyz\",\n    \"isEnabled\": true,\n    \"createdOn\": \"2023-03-23T21:46:46.7696091+00:00\"\n  }\n}"}],"_postman_id":"e33f0a7b-cd44-4970-9d09-bf898adf7a7d"},{"name":"Delete API Key on a subaccount","id":"edfed58f-4e1a-4681-b4f7-4b1ff521eef5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/api-key/:apiKeyId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","api-key",":apiKeyId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"12345","key":"apiKeyId"}]}},"response":[{"id":"a1612b91-f84d-421c-b88d-ae74e0510a11","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/api-key/:apiKeyId","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","api-key",":apiKeyId"],"variable":[{"key":"subaccountId","value":null},{"key":"apiKeyId","value":null}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"edfed58f-4e1a-4681-b4f7-4b1ff521eef5"}],"id":"33c05370-7517-42ab-b528-00d8ed508fa5","_postman_id":"33c05370-7517-42ab-b528-00d8ed508fa5","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Bounce Domains","item":[{"name":"Get All Bounce Domains for a subaccount","id":"20fcc4b5-58ed-4ca1-86b9-01abe7507ca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/bounce?pageSize=5&pageNumber=0&sortField=domain&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","bounce"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"1effd925-6ab8-478b-a6c7-d9ea2c63e114","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/bounce?pageSize=5&pageNumber=1&sortField=domain&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","bounce"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"domain","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"domain\": \"bounce.example.com\",\n      \"isDefault\": true,\n      \"createdOn\": \"1958-02-16T18:47:03.452Z\",\n      \"updatedOn\": \"1995-11-30T04:07:55.812Z\"\n    },\n    {\n      \"domain\": \"bounce.example.org\",\n      \"isDefault\": false,\n      \"createdOn\": \"2022-07-03T20:23:52.161Z\",\n      \"updatedOn\": \"1979-07-07T07:16:14.979Z\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"20fcc4b5-58ed-4ca1-86b9-01abe7507ca9"},{"name":"Get a Bounce Domain for a subaccount","id":"b577c549-3877-40d6-a3f5-66bbf1ede893","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"c5886bae-415d-4d7c-84c7-3be846824b88","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/bounce/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","bounce",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"bounce.example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"bounce.example.com\",\n    \"isDefault\": false,\n    \"createdOn\": \"2014-10-22T10:52:10.868Z\",\n    \"updatedOn\": \"1961-08-02T17:41:38.631Z\"\n  }\n}"}],"_postman_id":"b577c549-3877-40d6-a3f5-66bbf1ede893"},{"name":"Add a Bounce Domain for a subaccount","id":"05a20bae-94ee-4cab-9241-9e5a02ac9254","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"bounce.example.com\",\n  \"isDefault\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/bounce","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","bounce"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"69945d4f-0cfd-42f8-ba6e-a4451b4c3543","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"ipsum\",\n  \"isDefault\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/bounce","host":["/"],"path":["v2","subaccount",":subaccountId","bounce"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"bounce.example.com\",\n    \"isDefault\": false,\n    \"createdOn\": \"2014-10-22T10:52:10.868Z\",\n    \"updatedOn\": \"1961-08-02T17:41:38.631Z\"\n  }\n}"}],"_postman_id":"05a20bae-94ee-4cab-9241-9e5a02ac9254"},{"name":"Update a Bounce Domain for a subaccount","id":"f91196cb-9933-4f2a-80d6-78849c165ea7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isDefault\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"3be8ea1b-a85f-48ce-bd88-61f031d601a3","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"ipsum\",\n  \"isDefault\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/bounce/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","bounce",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"bounce.example.com\",\n    \"isDefault\": false,\n    \"createdOn\": \"2014-10-22T10:52:10.868Z\",\n    \"updatedOn\": \"1961-08-02T17:41:38.631Z\"\n  }\n}"}],"_postman_id":"f91196cb-9933-4f2a-80d6-78849c165ea7"},{"name":"Delete a Bounce Domain for a subaccount","id":"9a23b55e-a0a8-4db9-9026-1a2b75a62d4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"9b234f11-da26-4233-ada4-0a3f17563214","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/bounce/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","bounce",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"bounce.example.com"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9a23b55e-a0a8-4db9-9026-1a2b75a62d4e"}],"id":"51b38d8c-e3ae-424e-9b20-9d03b8fc42cb","_postman_id":"51b38d8c-e3ae-424e-9b20-9d03b8fc42cb","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Complaints Report","item":[{"name":"Get Complaints Overview","id":"feabc41f-ddfa-4c12-8df7-b519c4fb053f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/complaints/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","complaints","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"486fcb53-ee6e-4ba0-95d1-46113827aa52","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/complaints/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","complaints","overview"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2023-03-23T00:00:00+00:00\",\n      \"queued\": 15572,\n      \"sent\": 14937,\n      \"complaints\": 6125,\n      \"percentComplaints\": 0.4101,\n      \"mxRecordProviderData\": [\n        {\n          \"dateComputed\": \"2023-03-23T00:00:00+00:00\",\n          \"mxRecordProvider\": \"Unknown\",\n          \"queued\": 15572,\n          \"sent\": 14937,\n          \"complaints\": 6125,\n          \"percentComplaints\": 0.4101,\n          \"data\": [\n            {\n              \"timestamp\": \"2023-03-23T01:00:00+00:00\",\n              \"mxRecordProvider\": \"Unknown\",\n              \"queued\": 717,\n              \"sent\": 691,\n              \"complaints\": 280,\n              \"percentComplaints\": 0.4052\n            },\n            {\n              \"timestamp\": \"2023-03-23T02:00:00+00:00\",\n              \"mxRecordProvider\": \"Unknown\",\n              \"queued\": 687,\n              \"sent\": 657,\n              \"complaints\": 293,\n              \"percentComplaints\": 0.446\n            }\n          ]\n        },\n        {\n          \"dateComputed\": \"2023-03-23T00:00:00+00:00\",\n          \"mxRecordProvider\": \"example.com\",\n          \"queued\": 15572,\n          \"sent\": 14937,\n          \"complaints\": 6125,\n          \"percentComplaints\": 0.4101,\n          \"data\": [\n            {\n              \"timestamp\": \"2023-03-23T01:00:00+00:00\",\n              \"mxRecordProvider\": \"example.com\",\n              \"queued\": 717,\n              \"sent\": 691,\n              \"complaints\": 280,\n              \"percentComplaints\": 0.4052\n            },\n            {\n              \"timestamp\": \"2023-03-23T02:00:00+00:00\",\n              \"mxRecordProvider\": \"example.com\",\n              \"queued\": 687,\n              \"sent\": 657,\n              \"complaints\": 293,\n              \"percentComplaints\": 0.446\n            }\n          ]\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2023-03-22 to 2023-03-23\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"feabc41f-ddfa-4c12-8df7-b519c4fb053f"},{"name":"Get Complaints Aggregate","id":"fcd8bf00-e05e-4e53-b1f5-40cc751e571e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/complaints/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=0&sortField=ipsum commodo Duis&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","complaints","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"FromDomain"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"ipsum commodo Duis"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"fa32a2e5-45ae-4e2d-8728-da31166f9f4a","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/complaints/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","complaints","aggregate"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"type","value":"FromDomain","description":"Type of aggregate to retrieve"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"ipsum commodo Duis","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 15572,\n      \"sent\": 14937,\n      \"delivered\": 14937,\n      \"percentDelivered\": 1,\n      \"complaints\": 6125,\n      \"percentComplaints\": 0.4101\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 15572,\n      \"sent\": 14937,\n      \"delivered\": 14937,\n      \"percentDelivered\": 1,\n      \"complaints\": 6125,\n      \"percentComplaints\": 0.4101\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"fcd8bf00-e05e-4e53-b1f5-40cc751e571e"},{"name":"Get list of messages with complaints","id":"8cec7aee-5c54-451e-912b-f3b87a3776f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/complaints/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=queuedTime&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","complaints","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"queuedTime"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"c93ac14f-ba38-4253-8192-7b62b975826b","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/complaints/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=queuedTime&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","complaints","detail"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"queuedTime","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.7987634+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.798764+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstComplaint\": \"2023-03-23T23:46:46.7987696+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.798771+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.798771+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstComplaint\": \"2023-03-23T23:46:46.7987719+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"8cec7aee-5c54-451e-912b-f3b87a3776f9"}],"id":"9272d7b5-6b21-473f-a9ac-c142a044b37d","_postman_id":"9272d7b5-6b21-473f-a9ac-c142a044b37d","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Delivered Message Report","item":[{"name":"Get Sending Overview Rollup","id":"6f4956ee-b7c8-4a51-96d9-c3a7be254c30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/delivered/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","delivered","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"41dc538d-d47c-418b-b467-06c4837ed58d","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/delivered/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","delivered","overview"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2023-03-23T00:00:00+00:00\",\n      \"queued\": 33151,\n      \"sent\": 31924,\n      \"delivered\": 30697,\n      \"percentDelivered\": 0.9616,\n      \"uniqueOpens\": 31731,\n      \"percentUniqueOpens\": 1.0337,\n      \"uniqueClicks\": 31733,\n      \"percentUniqueClicks\": 1.0337,\n      \"unsubscribes\": 4701,\n      \"percentUnsubscribes\": 0.1473,\n      \"totalOpens\": 164266,\n      \"totalClicks\": 165044,\n      \"hardFailures\": 567,\n      \"percentHardFailures\": 0.0178,\n      \"softFailures\": 660,\n      \"percentSoftFailures\": 0.0207,\n      \"totalFailures\": 1227,\n      \"percentTotalFailures\": 0.0384,\n      \"complaints\": 11781,\n      \"percentComplaints\": 0.369,\n      \"bytesUsed\": 2325770235,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0,\n      \"data\": [\n        {\n          \"timestamp\": \"2023-03-23T01:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 1.0389,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 1.0409,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"bytesUsed\": 39291280,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        },\n        {\n          \"timestamp\": \"2023-03-23T02:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 1.0389,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 1.0409,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"bytesUsed\": 39291280,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2023-03-22 to 2023-03-23\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"6f4956ee-b7c8-4a51-96d9-c3a7be254c30"},{"name":"Get Sending Overview Aggregate","id":"78a5e115-d90a-4c63-9bde-87151018708e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/delivered/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=ipsum commodo Duis&pageSize=5&pageNumber=0&sortField=ipsum commodo Duis&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","delivered","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"ipsum commodo Duis"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"ipsum commodo Duis"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"12da1c1a-9e10-4a5a-844f-053245a59159","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/delivered/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=ipsum commodo Duis&pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","delivered","aggregate"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"type","value":"ipsum commodo Duis","description":"Type of aggregate to retrieve"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"ipsum commodo Duis","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 1.0389,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 1.0409,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"bytesUsed\": 39291280,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 1.0389,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 1.0409,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"bytesUsed\": 39291280,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"78a5e115-d90a-4c63-9bde-87151018708e"},{"name":"Get list of messages with details","id":"6b6c30c4-2c1f-4ec3-9508-677c99dbba0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/delivered/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=ipsum commodo Duis&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","delivered","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"ipsum commodo Duis"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"447c8afc-fff7-46bd-9665-5cb37a541c0e","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/delivered/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","delivered","detail"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"ipsum commodo Duis","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.8100521+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.8100536+00:00\",\n      \"subaccountId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2023-03-23T23:46:46.8100585+00:00\",\n      \"lastOpen\": \"2023-03-23T23:46:46.8100587+00:00\",\n      \"firstClick\": \"2023-03-23T23:46:46.8100588+00:00\",\n      \"lastClick\": \"2023-03-23T23:46:46.810059+00:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2023-03-23T23:46:46.8100593+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"trackingUnsubscribeEnabled\": 0,\n      \"trackingOpenEnabled\": 0,\n      \"trackingEnabledLinks\": 0,\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.8100603+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.8100604+00:00\",\n      \"subaccountId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2023-03-23T23:46:46.8100613+00:00\",\n      \"lastOpen\": \"2023-03-23T23:46:46.8100614+00:00\",\n      \"firstClick\": \"2023-03-23T23:46:46.8100616+00:00\",\n      \"lastClick\": \"2023-03-23T23:46:46.8100617+00:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2023-03-23T23:46:46.8100618+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"trackingUnsubscribeEnabled\": 0,\n      \"trackingOpenEnabled\": 0,\n      \"trackingEnabledLinks\": 0,\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"6b6c30c4-2c1f-4ec3-9508-677c99dbba0d"}],"id":"d303acfd-3640-4884-b04b-92b5d36bf573","_postman_id":"d303acfd-3640-4884-b04b-92b5d36bf573","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"DKIM","item":[{"name":"Generate a DKIM Key for a subaccount","id":"a5f4c223-af4e-4ca5-96e5-d1d1c65b5f24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/dkim/generate?domain=example.com&selector=dkim1","description":"<p>You can use these keys to update your DNS before creating new DKIM entries.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim","generate"],"host":["/"],"query":[{"description":{"content":"<p>(Required) The domain for the DKIM entry you are generating a key for.</p>\n","type":"text/plain"},"key":"domain","value":"example.com"},{"description":{"content":"<p>(Required) The selector for the DKIM entry you are generating a key for.</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"e21944e1-470d-4b70-a3ec-fedc25848875","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/dkim/generate?domain=example.com&selector=dkim1","host":["/"],"path":["v2","subaccount",":subaccountId","dkim","generate"],"query":[{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are generating a key for."},{"key":"selector","value":"dkim1","description":"(Required) The selector for the DKIM entry you are generating a key for."}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"dnsHostName\": \"dkim1._domainkey.example.com\",\n        \"domain\": \"example.com\",\n        \"selector\": \"dkim1\",\n        \"dnsRecord\": \"\\\"v=DKIM1; k=rsa; p=abcdefghijklmnop1234567890\",\n        \"publicKey\": \"abcdefghijklmnop1234567890\",\n        \"privateKey\": \"abcdefghijklmnop1234567890\"\n    }\n}"}],"_postman_id":"a5f4c223-af4e-4ca5-96e5-d1d1c65b5f24"},{"name":"Get DKIM Entries for a subaccount","id":"47452321-5abf-437b-8c74-ffb33804916b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/dkim?pageSize=5&pageNumber=0&sortField=domain&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"0b726d54-cdad-484b-9f97-7d29d0817133","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/dkim?pageSize=5&pageNumber=1&sortField=domain&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","dkim"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"domain","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\"\n    },\n    {\n      \"domain\": \"example.org\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1953-11-25T05:48:10.063Z\",\n      \"updatedOn\": \"1991-03-22T05:06:19.377Z\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"47452321-5abf-437b-8c74-ffb33804916b"},{"name":"Get a DKIM Entry for a subaccount","id":"18256dda-66be-410f-aa6c-23859bc614a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/dkim/:domain?selector=dkim1","description":"<p>Each entry will include the validation status for the domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>(Optional) The selector for the DKIM entry you are querying..</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"8669be18-b171-4621-86db-9d75826c505f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/dkim/:domain?selector=dkim1","host":["/"],"path":["v2","subaccount",":subaccountId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1","description":"(Optional) The selector for the DKIM entry you are querying.."}],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\"\n    }  \n}"}],"_postman_id":"18256dda-66be-410f-aa6c-23859bc614a7"},{"name":"Add a DKIM Entry for a subaccount","id":"00620815-672c-4e5e-9a4f-974b5f9ddcd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/dkim","description":"<p>If the PrivateKey is not provided, we will generate a new public/private key pair for you.\n            Otherwise, we will attempt to validate your private key against the public key for your domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"8418faf8-2f06-4d5a-a4a3-ee80cca6e4c0","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/dkim","host":["/"],"path":["v2","subaccount",":subaccountId","dkim"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\"\n    }  \n}"}],"_postman_id":"00620815-672c-4e5e-9a4f-974b5f9ddcd8"},{"name":"Update a DKIM Entry for a subaccount","id":"6bc3fbbc-416b-4de6-96aa-5a13401aa69e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/dkim/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"ad7ebe31-3438-4bb8-9b67-ef33dd663289","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"selector\": \"dkim\",\n  \"privateKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/dkim/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","dkim",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"truncatedPrivateKey\": \"abcdefghijklmnop1234567890\",\n      \"recordType\": \"TXT\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\"\n    }  \n}"}],"_postman_id":"6bc3fbbc-416b-4de6-96aa-5a13401aa69e"},{"name":"Delete a DKIM Entry for a subaccount","id":"ce93f40d-65e0-46ab-a0fe-e102753c053f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/dkim/:domain?selector=dkim1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>The selector for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"4e33ff88-3703-41fb-b80e-c6fd9b1399f6","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/dkim/:domain?selector=dkim1","host":["/"],"path":["v2","subaccount",":subaccountId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1","description":"The selector for the DKIM entry you are deleting."}],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ce93f40d-65e0-46ab-a0fe-e102753c053f"},{"name":"Create a new CNAME DKIM entry for a subaccount","id":"c5fccf0f-a517-496e-895d-2ab0f8ec7ccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/dkim/cname","description":"<p>If the PrivateKey is not provided,\nwe will generate a new public/private key pair for you. Otherwise, we will\nattempt to validate your private key against the public key for your domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim","cname"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"194219ff-a72b-406e-8700-544e96f77bf6","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/dkim/cname","host":["/"],"path":["v2","subaccount",":subaccountId","dkim","cname"],"variable":[{"key":"subaccountId","value":null}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": \n    {\n      \"domain\": \"example.com\",\n      \"selector\": \"dkim\",\n      \"recordType\": \"CNAME\",\n      \"createdOn\": \"1964-07-03T01:28:32.192Z\",\n      \"updatedOn\": \"1958-04-15T17:44:52.185Z\"\n    }  \n}"}],"_postman_id":"c5fccf0f-a517-496e-895d-2ab0f8ec7ccc"},{"name":"Delete a CNAME DKIM entry from a subaccount","id":"dcd66589-a5c5-4829-b72a-4b2f0a54e326","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/dkim/cname/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","dkim","cname",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"f94f11a2-9f2b-41ee-96fd-bffb7ddd185b","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/dkim/cname/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","dkim","cname",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dcd66589-a5c5-4829-b72a-4b2f0a54e326"}],"id":"2da9f3de-6dab-4826-801a-349ac689a44c","_postman_id":"2da9f3de-6dab-4826-801a-349ac689a44c","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Tracking Domain","item":[{"name":"Get All Tracking Domains for a subaccount","id":"dd53abc1-2908-4c3c-97be-e6ca8c325644","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/tracking?pageSize=5&pageNumber=0&sortField=domain&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"29216ab9-eb78-43ba-a493-0db0f8052994","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/tracking?pageSize=5&pageNumber=1&sortField=domain&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","tracking"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"domain","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"domain\": \"tracking.example.com\",\n      \"opensEnabled\": true,\n      \"clicksEnabled\": false,\n      \"unsubscribesEnabled\": true,\n      \"automaticTrackingEnabled\": false,\n      \"googleAnalyticsEnabled\": false,\n      \"isDefault\": false,\n      \"encryptedTrackingStatus\": \"Active\",\n      \"createdOn\": \"1991-11-25T22:47:17.075Z\",\n      \"updatedOn\": \"1946-06-06T06:40:06.071Z\"\n    },\n    {\n      \"domain\": \"tracking.example.org\",\n      \"opensEnabled\": false,\n      \"clicksEnabled\": false,\n      \"unsubscribesEnabled\": true,\n      \"automaticTrackingEnabled\": false,\n      \"googleAnalyticsEnabled\": true,\n      \"isDefault\": false,\n      \"encryptedTrackingStatus\": \"Pending\",\n      \"createdOn\": \"2019-04-12T20:08:34.767Z\",\n      \"updatedOn\": \"1993-07-14T06:05:42.920Z\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"dd53abc1-2908-4c3c-97be-e6ca8c325644"},{"name":"Get a Tracking Domain for a subaccount","id":"c7e83677-a949-47e7-b005-cb25017d0143","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"e85ef26f-0656-476f-a427-75f5fda47d31","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/tracking/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","tracking",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"tracking.example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": false,\n    \"automaticTrackingEnabled\": true,\n    \"googleAnalyticsEnabled\": false,\n    \"isDefault\": false,\n    \"encryptedTrackingStatus\": \"Off\",\n    \"createdOn\": \"2007-09-26T22:49:25.539Z\",\n    \"updatedOn\": \"1943-10-01T00:45:49.488Z\"\n  }\n}"}],"_postman_id":"c7e83677-a949-47e7-b005-cb25017d0143"},{"name":"Add Tracking Domain for a subaccount","id":"555583ef-a97f-4b48-a6a4-48720b086c47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"tracking.example.com\",\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/tracking","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"7fea6607-fc14-4e4c-ac24-6e3beea6433c","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"tracking.example.com\",\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/tracking","host":["/"],"path":["v2","subaccount",":subaccountId","tracking"],"variable":[{"key":"subaccountId","value":null}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": true,\n    \"automaticTrackingEnabled\": false,\n    \"googleAnalyticsEnabled\": true,\n    \"isDefault\": true,\n    \"encryptedTrackingStatus\": \"Pending\",\n    \"createdOn\": \"1948-08-01T06:26:00.183Z\",\n    \"updatedOn\": \"1993-03-18T11:43:19.565Z\"\n  }\n}"}],"_postman_id":"555583ef-a97f-4b48-a6a4-48720b086c47"},{"name":"Update a Tracking Domain for a subaccount","id":"02f7d795-e099-433f-ab86-7ecef5d77871","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"tracking.example.com\",\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"b9c9a1f0-6646-41d8-9f38-21a4b8fc3e14","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"tracking.example.com\",\n  \"opensEnabled\": false,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": true,\n  \"googleAnalyticsEnabled\": false,\n  \"httpsEnabled\": true,\n  \"isDefault\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/tracking/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","tracking",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"tracking.example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": true,\n    \"automaticTrackingEnabled\": false,\n    \"googleAnalyticsEnabled\": true,\n    \"isDefault\": true,\n    \"encryptedTrackingStatus\": \"Pending\",\n    \"createdOn\": \"1948-08-01T06:26:00.183Z\",\n    \"updatedOn\": \"1993-03-18T11:43:19.565Z\"\n  }\n}"}],"_postman_id":"02f7d795-e099-433f-ab86-7ecef5d77871"},{"name":"Delete a Tracking Domain for a subaccount","id":"cccb0551-ba6a-45e4-968c-b3fbf34ef9fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"54343fd9-afa3-4f6e-9d0c-1ccb6f75492f","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/tracking/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","tracking",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"tracking.example.com"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cccb0551-ba6a-45e4-968c-b3fbf34ef9fd"},{"name":"Gets Encrypted Tracking Status for the domain on a subaccount","id":"ed29b1ae-4faa-4553-bf34-cff7f5836b8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/tracking/:domain/encrypted","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"ee059398-cc48-4e08-88e8-401d214586fe","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/tracking/:domain/encrypted","host":["/"],"path":["v2","subaccount",":subaccountId","tracking",":domain","encrypted"],"variable":[{"key":"subaccountId"},{"key":"domain"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"encryptedTrackingStatus\": \"Off\"\n  }\n}"}],"_postman_id":"ed29b1ae-4faa-4553-bf34-cff7f5836b8f"},{"name":"Enable Encrypted Tracking Status for the domain on a subaccount","id":"f093cfc6-c7f4-488f-aa69-5b4158f44afe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/tracking/:domain/encrypted","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"3c88d2f1-0622-449e-bac7-53953581245e","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/tracking/:domain/encrypted","host":["/"],"path":["v2","subaccount",":subaccountId","tracking",":domain","encrypted"],"variable":[{"key":"subaccountId","value":null},{"key":"domain","value":null}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"encryptedTrackingStatus\": \"Pending\"\n  }\n}"}],"_postman_id":"f093cfc6-c7f4-488f-aa69-5b4158f44afe"},{"name":"Disable Encrypted Tracking Status for the domain on a subaccount","id":"b9a0cee7-6235-4627-8f52-c108c0276cc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/tracking/:domain/encrypted","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"1ce102a4-2931-4559-bf68-4c0a39ea6ee9","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/tracking/:domain/encrypted","host":["/"],"path":["v2","subaccount",":subaccountId","tracking",":domain","encrypted"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"tracking.example.com"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b9a0cee7-6235-4627-8f52-c108c0276cc1"}],"id":"ec5614fa-6044-4f22-aef5-d13f8651567b","_postman_id":"ec5614fa-6044-4f22-aef5-d13f8651567b","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Engagement Tracking Report","item":[{"name":"Gets the Tracking Report overview data","id":"9c2b03a4-c33a-49c9-9d38-4263cfbb233a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/tracking/overview?startDate=ipsum commodo Duis&endDate=ipsum commodo Duis","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","tracking","overview"],"host":["/"],"query":[{"description":{"content":"<p>The start date in the format yyyy-MM-dd (required)</p>\n","type":"text/plain"},"key":"startDate","value":"ipsum commodo Duis"},{"description":{"content":"<p>The end date in the format yyyy-MM-dd (required). Must be greater than or equal to the startDate</p>\n","type":"text/plain"},"key":"endDate","value":"ipsum commodo Duis"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"d2766f60-e2ef-42b4-a6e4-cae57a46eb9b","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/tracking/overview?startDate=ipsum commodo Duis&endDate=ipsum commodo Duis","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","tracking","overview"],"query":[{"key":"startDate","value":"ipsum commodo Duis","description":"The start date in the format yyyy-MM-dd (required)"},{"key":"endDate","value":"ipsum commodo Duis","description":"The end date in the format yyyy-MM-dd (required). Must be greater than or equal to the startDate"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2023-03-23T00:00:00+00:00\",\n      \"sent\": 31924,\n      \"queued\": 33151,\n      \"delivered\": 30697,\n      \"percentDelivered\": 0.9616,\n      \"uniqueClicks\": 31733,\n      \"percentUniqueClicks\": 0.994,\n      \"uniqueOpens\": 31731,\n      \"percentUniqueOpens\": 0.994,\n      \"complaints\": 11781,\n      \"percentComplaints\": 0.369,\n      \"unsubscribes\": 4701,\n      \"percentUnsubscribes\": 0.1473,\n      \"totalOpens\": 164266,\n      \"totalClicks\": 165044,\n      \"data\": [\n        {\n          \"timestamp\": \"2023-03-23T01:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 0.9944,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 0.9963,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537\n        },\n        {\n          \"timestamp\": \"2023-03-23T02:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 0.9944,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 0.9963,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2023-03-22 to 2023-03-23\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"9c2b03a4-c33a-49c9-9d38-4263cfbb233a"},{"name":"Get Tracking Report Aggregates","id":"8300a1c9-96cb-4e2c-888d-f33c3d00f3ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/tracking/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=ipsum commodo Duis&pageSize=5&pageNumber=0&sortField=ipsum commodo Duis&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","tracking","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"ipsum commodo Duis"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"ipsum commodo Duis"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"7097477f-59c4-4018-a55c-02890be6ad7f","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/tracking/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=ipsum commodo Duis&pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","tracking","aggregate"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"type","value":"ipsum commodo Duis","description":"Type of aggregate to retrieve"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"ipsum commodo Duis","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 0,\n      \"percentDelivered\": 0,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 0.9944,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 0.9963,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 0,\n      \"percentDelivered\": 0,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 0.9944,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 0.9963,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"8300a1c9-96cb-4e2c-888d-f33c3d00f3ee"},{"name":"Gets list of tracking messages with details","id":"a7d6e83d-69a1-4fc9-b1f8-5dce79c9fb67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/tracking/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=ipsum commodo Duis&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","tracking","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"ipsum commodo Duis"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"741872e7-2685-4b4e-b5c3-f05b79c6d972","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/tracking/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=ipsum commodo Duis&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","tracking","detail"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"ipsum commodo Duis","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.8620956+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.8620964+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2023-03-23T23:46:46.8621071+00:00\",\n      \"lastOpen\": \"2023-03-23T23:46:46.8621076+00:00\",\n      \"firstClick\": \"2023-03-23T23:46:46.8621077+00:00\",\n      \"lastClick\": \"2023-03-23T23:46:46.8621079+00:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2023-03-23T23:46:46.8621084+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.8621098+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.8621099+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2023-03-23T23:46:46.8621109+00:00\",\n      \"lastOpen\": \"2023-03-23T23:46:46.862111+00:00\",\n      \"firstClick\": \"2023-03-23T23:46:46.8621111+00:00\",\n      \"lastClick\": \"2023-03-23T23:46:46.8621112+00:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2023-03-23T23:46:46.8621113+00:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"a7d6e83d-69a1-4fc9-b1f8-5dce79c9fb67"}],"id":"9876be94-5f76-47d0-bf04-32746ae89450","_postman_id":"9876be94-5f76-47d0-bf04-32746ae89450","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Event Webhooks","item":[{"name":"Example POST Events","item":[{"name":"Click Event Webhook Test","id":"12192db4-984f-4add-994e-0deec0ef2f1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=click","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"click"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"3c728768-aa91-4355-9a34-bea545481a88","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=click","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"click"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"TrackingType\": 0,\n            \"Type\": \"Tracking\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Url\": \"https://example.com\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:30:24.3836448Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"12192db4-984f-4add-994e-0deec0ef2f1b"},{"name":"Complaint Event Webhook Test","id":"e9c02ec6-7691-4542-82eb-4b2174263645","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=complaint","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"complaint"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"f6cfc06b-5c0e-4957-bff6-564e4e1685eb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=complaint","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"complaint"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"Type\": \"Complaint\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"From\": \"from@example.com\",\n            \"To\": \"to@example.com\",\n            \"Length\": 999,\n            \"DateTime\": \"2024-05-07T19:32:00.7293101Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"e9c02ec6-7691-4542-82eb-4b2174263645"},{"name":"Failed Event Webhook Test","id":"afa9dedd-96ef-4aac-a162-b1990d566233","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=failed","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"failed"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"4bed0dd1-f65a-4778-b5a2-90790a03a9ae","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=failed","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"failed"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"Type\": \"Failed\",\n            \"BounceStatus\": \"Sample BounceStatus\",\n            \"DiagnosticCode\": \"Sample DiagnosticCode\",\n            \"FromAddress\": \"email@example.com\",\n            \"FailureCode\": 2001,\n            \"FailureType\": \"Permanent\",\n            \"Reason\": \"Sample Reason\",\n            \"RemoteMta\": \"Sample RemoteMta\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:32:41.2281311Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"afa9dedd-96ef-4aac-a162-b1990d566233"},{"name":"Open Event Webhook Test","id":"bfa0b35a-9802-4d8b-bfa4-ab1c47265d1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=open","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"open"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"0442bd8b-cfd7-4360-8b35-ae98fc109fb1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=open","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"open"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"TrackingType\": 1,\n            \"Type\": \"Tracking\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Url\": \"https://example.com\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:33:09.0701612Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"bfa0b35a-9802-4d8b-bfa4-ab1c47265d1d"},{"name":"Sent Event Webhook Test","id":"69bd7216-8d31-4d01-a2c5-52ffbbae2513","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=sent","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"sent"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"d1fe8e40-a8f8-433b-89c2-3b4a1ce4fde6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=sent","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"sent"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"Type\": \"Delivered\",\n            \"Response\": \"Sample Response\",\n            \"LocalIp\": \":01\",\n            \"RemoteMta\": \"Sample RemoteMta\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:35:16.5158967Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"69bd7216-8d31-4d01-a2c5-52ffbbae2513"},{"name":"Unsubscribe Event Webhook Test","id":"16a134fb-dc3c-4cae-8afa-7b953acb9b62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=unsubscribe","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"unsubscribe"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"ca46a840-2314-419a-b565-182e63a1ef0f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=unsubscribe","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"unsubscribe"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"TrackingType\": 2,\n            \"Type\": \"Tracking\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Url\": \"https://example.com\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:35:32.8506293Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"16a134fb-dc3c-4cae-8afa-7b953acb9b62"},{"name":"Queued Event Webhook Test","id":"d24590a9-0167-41aa-8f09-f190b47c29e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=queued","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"queued"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"972bea24-839a-4f0a-8a84-80420631ca9b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=queued","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"queued"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"FromAddress\": \"email@example.com\",\n            \"Subject\": \"example subject line\",\n            \"MessageSize\": 999,\n            \"Type\": \"Queued\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Source\": \"SMTP\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:35:57.7324291Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"d24590a9-0167-41aa-8f09-f190b47c29e5"},{"name":"Deferred Event Webhook Test (Future)","id":"024cc669-84f6-4db1-8a66-cfc474c62d4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=deferred","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"deferred"}],"variable":[{"type":"any","value":"","key":"subaccountId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"fc790129-7d51-4dab-8459-28ecce87098c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=deferred","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"deferred"}],"variable":[{"key":"subaccountId","value":""},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"FromAddress\": \"email@example.com\",\n            \"DeferralCode\": 9999,\n            \"Reason\": \"Sample Reason\",\n            \"Type\": \"Deferred\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:36:12.0550348Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SubaccountId\": 98765,\n            \"IpPoolId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"024cc669-84f6-4db1-8a66-cfc474c62d4f"}],"id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":false},"_postman_id":"9810e720-3b1b-4801-b5ae-2c4f364c34d8","description":""},{"name":"Generates a secret key","id":"b95d43e2-068e-4eb3-8560-472fc3a46f73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/generate-secret-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook","generate-secret-key"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"18039b16-fe9d-4a1b-95f2-e067b5b3f977","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/generate-secret-key","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook","generate-secret-key"],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"secretKey\": \"abcdefghijklmnop1234567890\"\n  }\n}"}],"_postman_id":"b95d43e2-068e-4eb3-8560-472fc3a46f73"},{"name":"Gets list of webhook urls","id":"da0f43c2-b01e-4978-88a5-36522f4f2c52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook?pageSize=5&pageNumber=0&sortField=eventUrl&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"eventUrl"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"335c4998-6b31-4b05-a1c3-7c44471f366c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook?pageSize=5&pageNumber=1&sortField=eventUrl&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"eventUrl","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n      {\n        \"webhookId\": 1,\n        \"eventUrl\": \"https://example.com\",\n        \"secretKey\": \"abcdefghijklmnop1234567890\",\n        \"eventsComplaint\": false,\n        \"eventsFailed\": true,\n        \"eventsSent\": false,\n        \"eventsTracking\": false,\n        \"eventsDeferrals\": false,\n        \"eventsQueued\": false,\n        \"created\": \"1954-10-01T17:21:00.463Z\",\n        \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n        \"format\": \"Json\"\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"da0f43c2-b01e-4978-88a5-36522f4f2c52"},{"name":"Gets a webhook url","id":"1e4ae538-a93f-470c-b8cf-1b31bcce6025","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"03376dbd-6c19-4f22-9459-f33724fe3108","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"webhookId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"webhookId\": 12,\n    \"eventUrl\": \"https://example.com\",\n    \"secretKey\": \"abcdefghijklmnop1234567890\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": false,\n    \"eventsTracking\": false,\n    \"eventsDeferrals\": false,\n    \"eventsQueued\": false,\n    \"created\": \"1954-10-01T17:21:00.463Z\",\n    \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n    \"format\": \"Json\"\n}\n}"}],"_postman_id":"1e4ae538-a93f-470c-b8cf-1b31bcce6025"},{"name":"Create and validate a new webhook url","id":"14f6d143-f3be-4f54-ae74-b2daa8bb524f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"eventUrl\": \"https://example.com\",\n  \"secretKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/event-webhook","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"f09d968e-0c00-4b0f-9258-e69df7eac60d","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"eventUrl\": \"https://example.com\",\n  \"secretKey\": \"abcdefghijklmnop1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"webhookId\": 12,\n    \"eventUrl\": \"https://example.com\",\n    \"secretKey\": \"abcdefghijklmnop1234567890\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": false,\n    \"eventsTracking\": false,\n    \"eventsDeferrals\": false,\n    \"eventsQueued\": false,\n    \"created\": \"1954-10-01T17:21:00.463Z\",\n    \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n    \"format\": \"Json\"\n}\n}"}],"_postman_id":"14f6d143-f3be-4f54-ae74-b2daa8bb524f"},{"name":"Updates the webhook url","id":"e3459041-e870-4360-bbda-8b912230af79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"validationKey\": \"abcdefghijklmnop1234567890\",\n  \"enabled\": true,\n  \"enableViaSmtp\": true,\n  \"eventsComplaint\": false,\n  \"eventsFailed\": false,\n  \"eventsSent\": true,\n  \"eventsTracking\": false,\n  \"eventsDeferrals\": false,\n  \"eventsQueued\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"86b707ce-4b82-43e2-9007-4237d1d32338","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"validationKey\": \"abcdefghijklmnop1234567890\",\n  \"enabled\": true,\n  \"enableViaSmtp\": true,\n  \"eventsComplaint\": false,\n  \"eventsFailed\": false,\n  \"eventsSent\": true,\n  \"eventsTracking\": false,\n  \"eventsDeferrals\": false,\n  \"eventsQueued\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"webhookId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"webhookId\": 12,\n    \"eventUrl\": \"https://example.com\",\n    \"secretKey\": \"abcdefghijklmnop1234567890\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": false,\n    \"eventsTracking\": false,\n    \"eventsDeferrals\": false,\n    \"eventsQueued\": false,\n    \"created\": \"1954-10-01T17:21:00.463Z\",\n    \"lastUpdated\": \"1987-09-13T10:21:31.303Z\",\n    \"format\": \"Json\"\n}\n}"}],"_postman_id":"e3459041-e870-4360-bbda-8b912230af79"},{"name":"Delete a webhook url","id":"ee392c15-3ea8-45d3-8303-ea15b1bffd1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"23ab9a94-e707-4a28-82c9-89c8c0b3dcf5","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"webhookId","value":"12"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ee392c15-3ea8-45d3-8303-ea15b1bffd1d"},{"name":"Test a webhook  url","id":"c0036560-07b2-470e-a872-571d75e75c70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=[{\"key\":\"type\",\"value\":\"sent\",\"equals\":true,\"description\":\"\",\"enabled\":true}]","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"[{\"key\":\"type\",\"value\":\"sent\",\"equals\":true,\"description\":\"\",\"enabled\":true}]"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"12","key":"webhookId"}]}},"response":[{"id":"5e5f4647-3075-4e05-9c46-66d90cad3885","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/event-webhook/:webhookId/perform-test?type=sent","host":["/"],"path":["v2","subaccount",":subaccountId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"sent"}],"variable":[{"key":"subaccountId","value":"12345"},{"key":"webhookId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"Type\": \"Delivered\",\n        \"Response\": \"Sample Response\",\n        \"LocalIP\": \":01\",\n        \"RemoteMta\": \"Sample RemoteMta\",\n        \"DateTime\": \"2022-09-07T17:49:08.8139901Z\",\n        \"MailingId\": \"SLNL-0-9999999-9999999\",\n        \"MessageId\": \"SampleMessageId\",\n        \"Address\": \"email@example.com\",\n        \"ServerId\": 16332,\n        \"SecretKey\": \"n7BJk25EtAr39Sfa4K8R\",\n        \"Data\": {\n            \"Meta\": [\n                {\n                    \"x-mycustommetadata\": \"I am custom metadata\"\n                }\n            ],\n            \"Tags\": [\n                \"Same Tag\",\n                \"Same Message\"\n            ]\n        }\n    }\n}"}],"_postman_id":"c0036560-07b2-470e-a872-571d75e75c70"}],"id":"d1b6fc04-d669-4af7-9c20-6dbd722939a1","description":"<h2 id=\"so-what-is-a-webhook\">So, <a href=\"https://www.socketlabs.com/blog/what-is-a-webhook/\">what is a webhook?</a></h2>\n<p>Rather than using an API to request and pull your message data, a webhook is a programmatic way to receive instant notifications pushed directly to your application.</p>\n<h2 id=\"getting-started-with-event-webhooks\">Getting Started with Event Webhooks</h2>\n<ul>\n<li><a href=\"https://help.socketlabs.com/docs/event-webhooks-authentication-and-access\">Authentication and Access</a></li>\n<li><a href=\"https://help.socketlabs.com/docs/event-webhooks-events\">Events</a></li>\n<li><a href=\"https://help.socketlabs.com/docs/event-webhooks-data-attributes\">Data Attributes</a></li>\n</ul>\n<p>Note: The following examples are used for setting up and testing your webhook endpoint. Please use the links in the Getting Started section for more information on the webhook events that we will send.</p>\n","_postman_id":"d1b6fc04-d669-4af7-9c20-6dbd722939a1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Failures Report","item":[{"name":"Gets the failures overview data","id":"6ea8dbc2-3edd-44da-8f46-7e253e282330","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/failures/overview?startDate=2022-01-01&endDate=2022-01-31","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","failures","overview"],"host":["/"],"query":[{"description":{"content":"<p>The start date in the format yyyy-MM-dd (required)</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>The end date in the format yyyy-MM-dd (required). Must be greater than or equal to the startDate</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-31"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"dbe72597-21af-4a81-b554-c9bbcb79ded0","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/failures/overview?startDate=2022-01-01&endDate=2022-01-31","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","failures","overview"],"query":[{"key":"startDate","value":"2022-01-01","description":"The start date in the format yyyy-MM-dd (required)"},{"key":"endDate","value":"2022-01-31","description":"The end date in the format yyyy-MM-dd (required). Must be greater than or equal to the startDate"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2023-03-23T00:00:00+00:00\",\n      \"sent\": 31924,\n      \"queued\": 33151,\n      \"delivered\": 30697,\n      \"percentDelivered\": 0.9616,\n      \"hardFailures\": 567,\n      \"percentHardFailures\": 0.0178,\n      \"softFailures\": 660,\n      \"percentSoftFailures\": 0.0207,\n      \"totalFailures\": 1227,\n      \"percentTotalFailures\": 0.0384,\n      \"complaints\": 11781,\n      \"percentComplaints\": 0.369,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0,\n      \"data\": [\n        {\n          \"timestamp\": \"2023-03-23T01:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        },\n        {\n          \"timestamp\": \"2023-03-23T02:00:00+00:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2023-03-22 to 2023-03-23\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"6ea8dbc2-3edd-44da-8f46-7e253e282330"},{"name":"Get Failures Overview Aggregates","id":"d0fe26fc-f11f-4ff0-a072-5e14fc9237d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/failures/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=0&sortField=type&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","failures","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"FromDomain"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"type"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"edca5e94-c6cc-42eb-ad9a-52120fbfd6c6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/failures/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=1&sortField=type&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","failures","aggregate"],"query":[{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-05","description":"Ending date range to search"},{"key":"type","value":"FromDomain","description":"Type of aggregate to retrieve"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"type","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"d0fe26fc-f11f-4ff0-a072-5e14fc9237d8"},{"name":"Gets list of messages with details","id":"16b7e8eb-740e-4bc3-8e25-dde74ee589cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/messages/failures/detail?startDate=2022-01-14&endDate=2022-01-14&pageSize=5&pageNumber=0&sortField=queuedTime&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","messages","failures","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-14"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-14"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"queuedTime"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"9b7618f1-fd01-4dff-92fb-7757ec433d92","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/messages/failures/detail?startDate=2022-01-14&endDate=2022-01-14&pageSize=5&pageNumber=1&sortField=queuedTime&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","messages","failures","detail"],"query":[{"key":"startDate","value":"2022-01-14","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-14","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"queuedTime","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.8977133+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.8977137+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2023-03-23T21:46:46.8977197+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.8977198+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"16b7e8eb-740e-4bc3-8e25-dde74ee589cd"}],"id":"86886154-fe9f-469a-85ab-d890081e3393","_postman_id":"86886154-fe9f-469a-85ab-d890081e3393","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Injection Api Key Management (Legacy)","item":[{"name":"Get a legacy injection api key for the subaccount","id":"842ce097-a530-4c3e-903f-e3be0c264bf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"5791f0f0-a6cf-4063-9044-f5e287a67ae7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/injection-api","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"serverId\": 12345,\n        \"apiKey\": \"abcdefghijklmnop1234567890\",\n        \"gateway\": \"https://inject-cx.socketlabs.com/api/v1/email\"\n    }\n}"}],"_postman_id":"842ce097-a530-4c3e-903f-e3be0c264bf6"},{"name":"Create a legacy injection api key for the subaccount","id":"7bc8976e-9381-4761-b4c5-7c042b13cefa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"3bd16b5b-28d4-49b2-aa90-43ed3192340a","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/injection-api","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"serverId\": 12345,\n        \"apiKey\": \"abcdefghijklmnop1234567890\",\n        \"gateway\": \"https://inject-cx.socketlabs.com/api/v1/email\"\n    }\n}"}],"_postman_id":"7bc8976e-9381-4761-b4c5-7c042b13cefa"},{"name":"Regenerate a legacy injection api key for the subaccount","id":"4dce0096-f1ff-4e30-9f2d-4101a193dc42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"8a51e25b-dd36-41a3-b6a8-a0f6785fadb5","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/injection-api","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"serverId\": 12345,\n        \"apiKey\": \"abcdefghijklmnop1234567890\",\n        \"gateway\": \"https://inject-cx.socketlabs.com/api/v1/email\"\n    }\n}"}],"_postman_id":"4dce0096-f1ff-4e30-9f2d-4101a193dc42"},{"name":"Delete a legacy injection api key for the subaccount","id":"3f4f11ad-5e50-4a5b-95fa-a639430ca29e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"28b4c5d2-68b0-4111-893e-4ad8b6a7070c","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/injection-api","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","injection-api"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3f4f11ad-5e50-4a5b-95fa-a639430ca29e"}],"id":"527baec3-32ee-4595-bfc6-0e07d45d0d97","_postman_id":"527baec3-32ee-4595-bfc6-0e07d45d0d97","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Recipient Search Report","item":[{"name":"Gets All Message for Recipient","id":"96106bd4-2a94-4131-91a5-56c5b5f7df32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/recipient-search?toEmailAddress=recipient@example.com&startDate=2022-01-01&endDate=2022-01-14&pageSize=5&pageNumber=0&sortField=queuedTime&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","recipient-search"],"host":["/"],"query":[{"description":{"content":"<p>the email address to search</p>\n","type":"text/plain"},"key":"toEmailAddress","value":"recipient@example.com"},{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-14"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"queuedTime"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"18b6c9aa-1858-4c24-aa7f-21319eaeb947","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/recipient-search?toEmailAddress=recipient@example.com&startDate=2022-01-01&endDate=2022-01-14&pageSize=5&pageNumber=1&sortField=queuedTime&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","reports","recipient-search"],"query":[{"key":"toEmailAddress","value":"recipient@example.com","description":"the email address to search"},{"key":"startDate","value":"2022-01-01","description":"Starting date range to search"},{"key":"endDate","value":"2022-01-14","description":"Ending date range to search"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"queuedTime","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"status\": \"Delivered\",\n      \"statusDate\": \"2023-03-23T21:46:46.9130336+00:00\",\n      \"lastEventDate\": \"0001-01-01T00:00:00\",\n      \"lastEventType\": \"Opened\",\n      \"systemMessageId\": \"8DACE94E9D6EF24\",\n      \"queuedTime\": \"2023-03-23T21:46:46.9130341+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.9130344+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"messageSize\": 70163,\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"status\": \"Delivered\",\n      \"statusDate\": \"2023-03-23T21:46:46.9130401+00:00\",\n      \"lastEventDate\": \"0001-01-01T00:00:00\",\n      \"lastEventType\": \"Opened\",\n      \"systemMessageId\": \"8DAD19CCC5B9A70\",\n      \"queuedTime\": \"2023-03-23T21:46:46.9130401+00:00\",\n      \"sentTime\": \"2023-03-23T21:46:46.9130402+00:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2023-03-23T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"messageSize\": 70163,\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"96106bd4-2a94-4131-91a5-56c5b5f7df32"},{"name":"Get Message Timeline","id":"336f929e-abe9-4daf-bfda-188f4f6a756b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/reports/recipient-search/:systemMessageId?toEmailAddress=recipient@example.com","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","reports","recipient-search",":systemMessageId"],"host":["/"],"query":[{"key":"toEmailAddress","value":"recipient@example.com"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"123456789","key":"systemMessageId"}]}},"response":[{"id":"36c50924-b4d0-4075-b127-1b53d30cf03a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/reports/recipient-search/:systemMessageId?toEmailAddress=recipient@example.com","host":["/"],"path":["v2","subaccount",":subaccountId","reports","recipient-search",":systemMessageId"],"query":[{"key":"toEmailAddress","value":"recipient@example.com"}],"variable":[{"key":"subaccountId","value":"12345"},{"key":"systemMessageId","value":"ABCDEFG123456"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"timeline\": [\n            {\n                \"eventType\": \"Clicked\",\n                \"eventDateTime\": \"2023-03-20T22:22:04.7476581Z\"\n            },\n            {\n                \"eventType\": \"Clicked\",\n                \"eventDateTime\": \"2023-03-20T23:44:04.7691318Z\"\n            },\n            {\n                \"eventType\": \"Opened\",\n                \"eventDateTime\": \"2023-03-21T00:16:04.7598202Z\"\n            },\n            {\n                \"eventType\": \"Clicked\",\n                \"eventDateTime\": \"2023-03-21T01:07:04.7758014Z\"\n            },\n            {\n                \"eventType\": \"Opened\",\n                \"eventDateTime\": \"2023-03-21T06:02:04.7176767Z\"\n            },\n            {\n                \"eventType\": \"Complaint\",\n                \"eventDateTime\": \"2023-03-21T13:21:04.8189202Z\"\n            },\n            {\n                \"eventType\": \"Delivered\",\n                \"eventDateTime\": \"2023-03-23T09:12:00Z\"\n            },\n            {\n                \"eventType\": \"Queued\",\n                \"eventDateTime\": \"2023-03-23T09:12:00Z\"\n            }\n        ],\n        \"status\": \"Delivered\",\n        \"statusDate\": \"2023-03-23T09:12:00Z\",\n        \"lastEventDate\": \"2023-03-23T09:12:00Z\",\n        \"lastEventType\": \"Delivered\",\n        \"systemMessageId\": \"ABCDEFG123456\",\n        \"queuedTime\": \"2023-03-23T09:12:00Z\",\n        \"sentTime\": \"2023-03-23T09:12:00Z\",\n        \"serverId\": 12345,\n        \"accountId\": 98765,\n        \"to\": \"recipient@example.com\",\n        \"toDomain\": \"example.com\",\n        \"from\": \"from@example.com\",\n        \"fromDomain\": \"example.com\",\n        \"mailingId\": \"\",\n        \"customMessageId\": \"random-gen\",\n        \"subject\": \"My Email Subject\",\n        \"messageSize\": 70163,\n        \"clickCount\": 3,\n        \"openCount\": 2,\n        \"customDkimDomain\": \"dkim.example.com\",\n        \"tags\": [\n            \"random-gen\",\n            \"random-gen\"\n        ],\n        \"metadata\": [\n            {\n                \"key\": \"Source\",\n                \"value\": \"test\"\n            }\n        ]\n    }\n}"}],"_postman_id":"336f929e-abe9-4daf-bfda-188f4f6a756b"}],"id":"d7827b42-6aaa-4b27-80cb-7e1555d8c014","_postman_id":"d7827b42-6aaa-4b27-80cb-7e1555d8c014","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"SMTP Credentials","item":[{"name":"Get SMTP Credentials for the Server","id":"4e612caa-9bf9-4b4a-ba84-007fc1ab31bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/smtp","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","smtp"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"3551f49a-11a7-4256-b98f-59d56a424b94","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/smtp","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","smtp"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"username\": \"server12345\",\n    \"password\": \"abcdefghijklmnopqrstuvwxyz\",\n    \"gateway\": \"smtp-cx.socketlabs.com\"\n  }\n}"}],"_postman_id":"4e612caa-9bf9-4b4a-ba84-007fc1ab31bb"},{"name":"Update SMTP Password for the Server","id":"e5afa1b5-dfd3-4775-bca1-5111425de680","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"password\": \"ad minim ut\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/credentials/smtp","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","smtp"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"3af09716-6239-4589-8067-f07472e11e4a","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"password\": \"ad minim ut\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/credentials/smtp","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","smtp"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"Success","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"username\": \"server12345\",\n    \"password\": \"abcdefghijklmnopqrstuvwxyz\",\n    \"gateway\": \"smtp-cx.socketlabs.com\"\n  }\n}"}],"_postman_id":"e5afa1b5-dfd3-4775-bca1-5111425de680"},{"name":"Get IP Addresses allowed to send via SMTP for the Server","id":"9ade1a36-fbeb-4b78-bdc7-230d0ae224c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/credentials/smtp/allowed-ips","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","credentials","smtp","allowed-ips"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"0c7027b5-18d9-4956-a489-de8df956b094","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/credentials/smtp/allowed-ips","host":["/"],"path":["v2","subaccount",":subaccountId","credentials","smtp","allowed-ips"],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        \"100.100.100.1\",\n        \"100.100.100.2\"\n    ],\n    \"total\": 2\n}"}],"_postman_id":"9ade1a36-fbeb-4b78-bdc7-230d0ae224c2"}],"id":"e08ad1c9-a37d-4322-a3d2-fb980c5999f4","_postman_id":"e08ad1c9-a37d-4322-a3d2-fb980c5999f4","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"StreamScore","item":[{"name":"Get the StreamScore for the requested subaccount","id":"11a6247c-86cc-4c72-89d9-5470242b871a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/streamscore?requestDate=2022-01-14","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","streamscore"],"host":["/"],"query":[{"description":{"content":"<p>the requested date</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-14"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"bada9ea4-78bb-47c1-bcd3-3329b096e429","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/streamscore?requestDate=2022-01-14","host":["/"],"path":["v2","subaccount",":subaccountId","streamscore"],"query":[{"key":"requestDate","value":"2022-01-14","description":"the requested date"}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"score\": 90,\n    \"woWChange\": -10,\n    \"doDChange\": 7,\n    \"data\": [\n      {\n        \"score\": 90,\n        \"dateComputed\": \"1975-01-26T04:54:04.242Z\",\n        \"detail\": {\n          \"audienceScore\": 90,\n          \"engagementScore\": 90,\n          \"reputationScore\": 90,\n          \"authenticationStatus\": \"Authenticated\",\n          \"hasDkimRecord\": true,\n          \"hasSpfRecord\": true\n        }\n      },\n      {\n        \"score\": 90,\n        \"dateComputed\": \"2001-08-29T15:52:52.126Z\",\n        \"detail\": {\n          \"audienceScore\": 90,\n          \"engagementScore\": 90,\n          \"reputationScore\": 90,\n          \"authenticationStatus\": \"PartialAuthenticated\",\n          \"hasDkimRecord\": false,\n          \"hasSpfRecord\": false\n        }\n      }\n    ],\n    \"todaysAnalytics\": {\n      \"dateComputed\": \"1973-03-27T18:58:46.279Z\",\n      \"averageScore\": 90,\n      \"highScore\": 90,\n      \"lowScore\": 09,\n      \"totalProcessed\": 123456789,\n      \"percentProcessed\": 100\n    },\n    \"previousAnalytics\": {\n      \"dateComputed\": \"1986-09-30T09:17:57.458Z\",\n      \"averageScore\": 90,\n      \"highScore\": 90,\n      \"lowScore\": 90,\n      \"totalProcessed\": 123456789,\n      \"percentProcessed\": 100\n    }\n  }\n}"}],"_postman_id":"11a6247c-86cc-4c72-89d9-5470242b871a"},{"name":"Get StreamScores for all sending domains on a subaccount","id":"4b9b0bb1-2c6f-4fb3-b13d-effefeff8017","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/streamscore/domains?requestDate=2022-01-14&pageSize=5&pageNumber=0&sortField=sendingDomain&sortDirection=dsc","description":"<p>Requires access to StreamScore Pro</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","streamscore","domains"],"host":["/"],"query":[{"description":{"content":"<p>the requested date</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-14"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"sendingDomain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"8b186938-0682-406c-b6ed-c164a38a0486","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/streamscore/domains?requestDate=2022-01-14&pageSize=5&pageNumber=1&sortField=sendingDomain&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","streamscore","domains"],"query":[{"key":"requestDate","value":"2022-01-14","description":"the requested date"},{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"sendingDomain","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n        \"sendingDomain\": \"example.com\",\n        \"authenticationStatus\": \"Authenticated\",\n        \"hasDkimRecord\": true,\n        \"hasSpfRecord\": true,\n        \"score\": 98,\n        \"woWChange\": 0,\n        \"doDChange\": 0,\n        \"totalProcessed\": 13835.0000,\n        \"percentProcessed\": 0.0037\n    },\n    {\n        \"sendingDomain\": \"example.org\",\n        \"authenticationStatus\": \"Authenticated\",\n        \"hasDkimRecord\": true,\n        \"hasSpfRecord\": true,\n        \"score\": 98,\n        \"woWChange\": 0,\n        \"doDChange\": 0,\n        \"totalProcessed\": 13835.0000,\n        \"percentProcessed\": 0.0037\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"4b9b0bb1-2c6f-4fb3-b13d-effefeff8017"},{"name":"Get the StreamScore for a specific sending domain on a subaccount","id":"6cccebdd-ca91-480e-ac72-76c989b9c1df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/streamscore/:sendingdomain?requestDate=2022-01-14","description":"<p>Requires access to StreamScore Pro</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","streamscore",":sendingdomain"],"host":["/"],"query":[{"description":{"content":"<p>the requested date</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-14"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"},{"type":"any","value":"example.com","key":"sendingdomain"}]}},"response":[{"id":"141f0bb3-8bb1-4553-8123-66ee9e16adda","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/streamscore/:sendingdomain?requestDate=2022-01-14","host":["/"],"path":["v2","subaccount",":subaccountId","streamscore",":sendingdomain"],"query":[{"key":"requestDate","value":"2022-01-14","description":"the requested date"}],"variable":[{"key":"subaccountId","value":"12345"},{"key":"sendingdomain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"sendingDomain\": \"example.com\",\n        \"score\": 98,\n        \"woWChange\": 0,\n        \"doDChange\": 0,\n        \"data\": [\n            {\n                \"score\": 96,\n                \"dateComputed\": \"2023-03-15T00:00:00\",\n                \"detail\": {\n                    \"audienceScore\": 95.0000,\n                    \"engagementScore\": 100.0000,\n                    \"reputationScore\": 89.0000,\n                    \"authenticationStatus\": \"Authenticated\",\n                    \"hasDkimRecord\": true,\n                    \"hasSpfRecord\": true\n                }\n            },\n            {\n                \"score\": 96,\n                \"dateComputed\": \"2023-03-16T00:00:00\",\n                \"detail\": {\n                    \"audienceScore\": 95.0000,\n                    \"engagementScore\": 100.0000,\n                    \"reputationScore\": 89.0000,\n                    \"authenticationStatus\": \"Authenticated\",\n                    \"hasDkimRecord\": true,\n                    \"hasSpfRecord\": true\n                }\n            }\n        ],\n        \"todaysAnalytics\": {\n            \"dateComputed\": \"2023-04-13T00:00:00\",\n            \"averageScore\": 0.00,\n            \"highScore\": 0.00,\n            \"lowScore\": 0.00,\n            \"totalProcessed\": 28476.0000,\n            \"percentProcessed\": 0.00\n        },\n        \"previousAnalytics\": {\n            \"dateComputed\": \"2023-03-14T00:00:00\",\n            \"averageScore\": 0.00,\n            \"highScore\": 0.00,\n            \"lowScore\": 0.00,\n            \"totalProcessed\": 30032.0000,\n            \"percentProcessed\": 0.00\n        }\n    }\n}"}],"_postman_id":"6cccebdd-ca91-480e-ac72-76c989b9c1df"}],"id":"493e8bd5-97d9-4f68-bef1-d27c62de707f","_postman_id":"493e8bd5-97d9-4f68-bef1-d27c62de707f","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Suppression List","item":[{"name":"Gets a list of addresses based on provided search terms from the subaccount suppression list","id":"f776622b-8e6d-4459-8bcd-a405386f19cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/suppressions/search?pageSize=5&pageNumber=0&sortField=suppressionLastUpdate&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","suppressions","search"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"suppressionLastUpdate"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"18587365-1635-42ec-b0eb-1ce6039f786b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/suppressions/search?pageSize=5&pageNumber=1&sortField=suppressionLastUpdate&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","suppressions","search"],"query":[{"key":"pageSize","value":"5","description":"Number of records per page"},{"key":"pageNumber","value":"1","description":"Number of pages to off-set"},{"key":"sortField","value":"suppressionLastUpdate","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.com\",\n      \"created\": \"2013-03-24T13:34:31.709Z\",\n      \"lastUpdate\": \"1967-04-23T15:21:49.144Z\",\n      \"suppressReason\": \"Lorem ipsum\",\n      \"suppressionLastUpdate\": \"2003-11-05T15:57:05.030Z\",\n      \"suppressionStatus\": \"Suppressed\",\n      \"statusId\": \"Active\"\n    },\n    {\n      \"id\": 2,\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.org\",\n      \"created\": \"1970-10-28T10:24:23.053Z\",\n      \"lastUpdate\": \"1995-08-27T02:48:01.230Z\",\n      \"suppressReason\": \"Duis dolor id\",\n      \"suppressionLastUpdate\": \"1972-04-17T12:15:11.637Z\",\n      \"suppressionStatus\": \"Removed\",\n      \"statusId\": \"Unsubscribe\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"f776622b-8e6d-4459-8bcd-a405386f19cf"},{"name":"download a list of addresses based on provided search terms from the subaccount suppression list","id":"41f2d5c5-603a-43a4-8761-36921d7331a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/suppressions/download?sortField=suppressionLastUpdate&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","suppressions","download"],"host":["/"],"query":[{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"suppressionLastUpdate"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"c08a4303-f374-409c-bbe1-3650c3a757d7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/suppressions/download?sortField=suppressionLastUpdate&sortDirection=dsc","host":["/"],"path":["v2","subaccount",":subaccountId","suppressions","download"],"query":[{"key":"sortField","value":"suppressionLastUpdate","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"id,serverId,emailAddress,created,lastUpdate,suppressReason,suppressionLastUpdate,suppressionStatus,statusId\r\n1,12345,\"test@example.com\",\"2013-03-24T13:34:31.709Z\",\"1967-04-23T15:21:49.144Z\",\"Lorem ipsum\",\"2003-11-05T15:57:05.030Z\",\"Suppressed\",\"Active\""}],"_postman_id":"41f2d5c5-603a-43a4-8761-36921d7331a3"},{"name":"Gets addresses based on provided search terms from the subaccount suppression list","id":"9a93569c-e3b5-44fc-9950-cfc004f2d697","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/suppressions?emailAddress=test@example.com","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","suppressions"],"host":["/"],"query":[{"description":{"content":"<p>Email Address to search by</p>\n","type":"text/plain"},"key":"emailAddress","value":"test@example.com"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"c78cef49-2bb1-4a77-81b4-2e4ee419d59b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/suppressions?emailAddress=test@example.com","host":["/"],"path":["v2","subaccount",":subaccountId","suppressions"],"query":[{"key":"emailAddress","value":"test@example.com","description":"Email Address to search by"}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"serverId\": 12345,\n    \"emailAddress\": \"test@example.com\",\n    \"created\": \"1952-01-08T12:14:32.609Z\",\n    \"lastUpdate\": \"2005-12-31T13:41:18.107Z\",\n    \"suppressReason\": \"Duis labo\",\n    \"suppressionLastUpdate\": \"1946-05-17T13:44:09.370Z\",\n    \"suppressionStatus\": \"Default\",\n    \"statusId\": \"Complaint\"\n  }\n}"}],"_postman_id":"9a93569c-e3b5-44fc-9950-cfc004f2d697"},{"name":"Adds an address to the subaccount suppression list","id":"56c637b0-5649-4c6a-b39b-ce404b866dbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"notes\": \"et dolore enim commodo voluptate\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/suppressions","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","suppressions"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"3c0fc888-1f97-493c-80ab-0617f94c1bcd","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"\",\n  \"notes\": \"et dolore enim commodo voluptate\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/suppressions","host":["/"],"path":["v2","subaccount",":subaccountId","suppressions"],"variable":[{"key":"subaccountId","value":null}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"serverId\": 12345,\n        \"emailAddress\": \"test@example.com\",\n        \"created\": \"1952-01-08T12:14:32.609Z\",\n        \"lastUpdate\": \"2005-12-31T13:41:18.107Z\",\n        \"suppressReason\": \"Duis labo\",\n        \"suppressionLastUpdate\": \"1946-05-17T13:44:09.370Z\",\n        \"suppressionStatus\": \"Default\",\n        \"statusId\": \"Complaint\"\n    }\n}"}],"_postman_id":"56c637b0-5649-4c6a-b39b-ce404b866dbe"},{"name":"Bulk add multiple addresses to the subaccount suppression list","id":"0d249591-1af9-4726-9b43-bc0c7afbc16f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"suppressionRequests\": [\n    {\n      \"emailAddress\": \"test@example.com\",\n      \"notes\": \"nisi ipsum ut anim\"\n    },\n    {\n      \"emailAddress\": \"test@example.org\",\n      \"notes\": \"et eiusmod nostrud exercita\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/suppressions/bulk","description":"<p>Max of 100 email addresses per call.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","suppressions","bulk"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"7381062c-a762-49c6-a328-53f95b8e109a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"suppressionRequests\": [\n    {\n      \"emailAddress\": \"test@example.com\",\n      \"notes\": \"nisi ipsum ut anim\"\n    },\n    {\n      \"emailAddress\": \"test@example.org\",\n      \"notes\": \"et eiusmod nostrud exercita\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/suppressions/bulk","host":["/"],"path":["v2","subaccount",":subaccountId","suppressions","bulk"],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.com\",\n      \"result\": \"InsufficientPrivileges\"\n    },\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.org\",\n      \"result\": \"AddressNotFound\"\n    }\n  ]\n}"}],"_postman_id":"0d249591-1af9-4726-9b43-bc0c7afbc16f"},{"name":"Bulk removal of email addresses from the subaccount suppression list","id":"ba62f8a6-f5c2-4147-b0ec-a466ab0749ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"test@example.com\",\n  \"test@example.org\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/suppressions/bulk-remove","description":"<p>Max of 100 email addresses per call.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","suppressions","bulk-remove"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"b1dd69e7-7388-44c6-bed8-bc98835a4da2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"[\n  \"test@example.com\",\n  \"test@example.org\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/suppressions/bulk-remove","host":["/"],"path":["v2","subaccount",":subaccountId","suppressions","bulk-remove"],"variable":[{"key":"subaccountId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.com\",\n      \"result\": \"InsufficientPrivileges\"\n    },\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"test@example.org\",\n      \"result\": \"AddressNotFound\"\n    }\n  ]\n}"}],"_postman_id":"ba62f8a6-f5c2-4147-b0ec-a466ab0749ab"},{"name":"Removes an address from the subaccount suppression list","id":"725bad78-ca8d-47c1-9dd8-49c13c52fac6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/suppressions/remove?emailAddress=test@example.com","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","suppressions","remove"],"host":["/"],"query":[{"description":{"content":"<p>Email Address to search by</p>\n","type":"text/plain"},"key":"emailAddress","value":"test@example.com"}],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"4cb5f931-46e2-48ce-9b89-8bfae5669455","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/suppressions/remove?emailAddress=test@example.com","host":["/"],"path":["v2","subaccount",":subaccountId","suppressions","remove"],"query":[{"key":"emailAddress","value":"test@example.com","description":"Email Address to search by"}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"725bad78-ca8d-47c1-9dd8-49c13c52fac6"}],"id":"cef85306-0834-4b76-8d5c-67462aad7b96","_postman_id":"cef85306-0834-4b76-8d5c-67462aad7b96","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Inbound Webhook","item":[{"name":"Inbound Webhook Server","id":"f4585fad-7bc0-49f2-8073-89a8a4b7f77e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/subaccount/:subaccountId/inbound-webhook","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","inbound-webhook"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"subaccountId"}]}},"response":[{"id":"a4a33925-1a66-48db-b5c5-fc68b9e9993e","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/subaccount/:subaccountId/inbound-webhook","host":["/"],"path":["v2","subaccount",":subaccountId","inbound-webhook"],"variable":[{"key":"subaccountId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"destination\": \"https://inbound-12345.example.com\",\n        \"secretKey\": \"abcdefghij1234567890\",\n        \"addresses\": [\n            {\n                \"source\": \"test@inbound.example.com\"\n            },\n            {\n                \"source\": \"inbound.example.org\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f4585fad-7bc0-49f2-8073-89a8a4b7f77e"},{"name":"Generate Server Validation Key","id":"9cb6943f-1b32-4d84-9d91-ceff8df16a72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/subaccount/:subaccountId/inbound-webhook/generate-secret-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","inbound-webhook","generate-secret-key"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"subaccountId"}]}},"response":[{"id":"6a2c6003-ee79-4108-a0fd-ba7705bafe62","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/subaccount/:subaccountId/inbound-webhook/generate-secret-key","host":["/"],"path":["v2","subaccount",":subaccountId","inbound-webhook","generate-secret-key"],"variable":[{"key":"subaccountId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"serverId\": 12345,\n        \"secretKey\": \"abcdefghij1234567890\"\n    }\n}"}],"_postman_id":"9cb6943f-1b32-4d84-9d91-ceff8df16a72"},{"name":"Add Inbound Webhook Server","id":"359d0df1-766f-4b56-b0fd-23afcf626f72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"destination\": \"https://inbound-12345.example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/subaccount/:subaccountId/inbound-webhook","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","inbound-webhook"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"subaccountId"}]}},"response":[{"id":"ffc7fd94-a57e-4ccf-a141-82de9f06f8cb","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"destination\": \"https://inbound-12345.example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/inbound-webhook","host":["/"],"path":["v2","subaccount",":subaccountId","inbound-webhook"],"variable":[{"key":"subaccountId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"destination\": \"https://inbound-12345.example.com\",\n        \"secretKey\": \"abcdefghij1234567890\",\n        \"addresses\": []\n    }\n}"}],"_postman_id":"359d0df1-766f-4b56-b0fd-23afcf626f72"},{"name":"Add Inbound Webhook Address","id":"d7f38bfb-d1f4-4133-b065-f5b71d7b43a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/subaccount/:subaccountId/inbound-webhook/address","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","inbound-webhook","address"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"subaccountId"}]}},"response":[{"id":"2776f37c-398b-4d4c-8ad4-eb425401deed","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/inbound-webhook/address","host":["/"],"path":["v2","subaccount",":subaccountId","inbound-webhook","address"],"variable":[{"key":"subaccountId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"source\": \"test@example.com\"\n    }\n}"}],"_postman_id":"d7f38bfb-d1f4-4133-b065-f5b71d7b43a4"},{"name":"Delete Inbound Webhook Server","id":"8a0122a6-f0e9-4061-9164-51827f882d96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@dalrius.xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/subaccount/:subaccountId/inbound-webhook/address","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","inbound-webhook","address"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"subaccountId"}]}},"response":[{"id":"11e3ca9f-06ac-4f85-aa6d-64b2e12facc9","name":"Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@dalrius.xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/inbound-webhook","host":["/"],"path":["v2","subaccount",":subaccountId","inbound-webhook"],"variable":[{"key":"subaccountId","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8a0122a6-f0e9-4061-9164-51827f882d96"},{"name":"Delete Inbound Webhook Address","id":"6a70dba2-78fc-47db-aa45-9ac663a9b063","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/subaccount/:subaccountId/inbound-webhook/address","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","inbound-webhook","address"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"subaccountId"}]}},"response":[{"id":"509171e4-e955-47f7-97b5-2d863ce06880","name":"Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/inbound-webhook/address","host":["/"],"path":["v2","subaccount",":subaccountId","inbound-webhook","address"],"variable":[{"key":"subaccountId","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6a70dba2-78fc-47db-aa45-9ac663a9b063"}],"id":"160e2be9-af36-4600-9667-f7ee893d7e7c","_postman_id":"160e2be9-af36-4600-9667-f7ee893d7e7c","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Email Forwarding","item":[{"name":"DKIM","item":[{"name":"Add a generated DKIM key to an email forwarding domain","id":"dc919327-a4ca-4295-82c8-7ec7e6d95e5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"selector\": \"dkim\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim","description":"<p>Must call GET first to generate a DKIM key. (/v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim)</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","generate-dkim"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Subaccount Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) (Optional) The domain for the DKIM entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"620a4b58-0142-421a-a0cf-66976d60cc83","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"selector\": \"dkim\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","generate-dkim"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim\",\n    \"truncatedPrivateKey\": \"abcdefghijk...\",\n    \"dnsRecord\": \"\\\"v=DKIM1; k=rsa; p=abcdefghijklmnop1234567890\",\n    \"split\": \"true\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n    \"active\": true,\n    \"validationResult\": \"Success\"\n  }\n}"}],"_postman_id":"dc919327-a4ca-4295-82c8-7ec7e6d95e5d"},{"name":"Update a generated DKIM key for an email forwarding domain","id":"f12fdb80-6c8c-4519-8a5c-7d3fe54769c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim","description":"<p>If the PrivateKey is not provided, we will generate a new public/private key pair for you. Otherwise, we will attempt to validate your private key against the public key for your domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","generate-dkim"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Subaccount Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) (Optional) The domain for the DKIM entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"96002edc-b051-424b-b284-374234a0969b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","generate-dkim"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim\",\n    \"truncatedPrivateKey\": \"abcdefghijk...\",\n    \"dnsRecord\": \"\\\"v=DKIM1; k=rsa; p=abcdefghijklmnop1234567890\",\n    \"split\": \"true\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n    \"active\": true,\n    \"validationResult\": \"Success\"\n  }\n}"}],"_postman_id":"f12fdb80-6c8c-4519-8a5c-7d3fe54769c1"},{"name":"Update a Generated DKIM key for Subaccount","id":"0f3cbb05-ed17-4390-bdf7-ee7cf3404fc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"selector\": \"dkim\",\n    \"split\": \"true\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim","description":"<p>Must call GET first to generate a DKIM key. (/v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim)</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["subaccount",":subaccountId","email-forwarding",":domain","generate-dkim"],"host":["/v2"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Subaccount Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) (Optional) The domain for the DKIM entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"9634f8a6-5bea-4a59-93e7-c21d1197d59a","name":"Created","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n    \"selector\": \"dkim\",\n    \"split\": \"true\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/generate-dkim","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","generate-dkim"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim\",\n    \"truncatedPrivateKey\": \"abcdefghijk...\",\n    \"dnsRecord\": \"\\\"v=DKIM1; k=rsa; p=abcdefghijklmnop1234567890\",\n    \"split\": \"true\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n    \"active\": true,\n    \"validationResult\": \"Success\"\n  }\n}"}],"_postman_id":"0f3cbb05-ed17-4390-bdf7-ee7cf3404fc4"},{"name":"Get the DKIM key for an email forwarding domain","id":"f9595721-9b17-478e-934c-c40ba6a13da3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/dkim","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","dkim"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Subaccount Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) (Optional) The domain for the DKIM entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"24f61390-3f16-4980-a15c-7710b8c50467","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/dkim","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","dkim"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim\",\n    \"truncatedPrivateKey\": \"abcdefghijk...\",\n    \"dnsRecord\": \"\\\"v=DKIM1; k=rsa; p=abcdefghijklmnop1234567890\",\n    \"split\": \"true\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n    \"active\": true,\n    \"validationResult\": \"Success\"\n  }\n}"}],"_postman_id":"f9595721-9b17-478e-934c-c40ba6a13da3"},{"name":"Add a DKIM key to an email forwarding domain","id":"61407fa9-eac4-4fa8-8fe2-fe7d605d1a5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"selector\": \"dkim\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/dkim","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","dkim"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Subaccount Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) (Optional) The domain for the DKIM entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"5413c8b6-ed52-4cf2-8421-4517c616a7b7","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"privateKey\": \"abcdefghijklmnop1234567890\",\n  \"selector\": \"dkim\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/dkim","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","dkim"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim\",\n    \"truncatedPrivateKey\": \"abcdefghijk...\",\n\t\t\"dnsRecord\": \"\\\"v=DKIM1; k=rsa; p=abcdefghijklmnop1234567890\",\n    \"split\": \"true\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n    \"active\": true,\n    \"validationResult\": \"Success\"\n  }\n}"}],"_postman_id":"61407fa9-eac4-4fa8-8fe2-fe7d605d1a5b"},{"name":"Delete a DKIM key for an email forwarding domain","id":"2609ef7f-4fc8-4c9f-83a5-fa55568edfbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/dkim","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","dkim"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Subaccount Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) The domain for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"a1eaf395-8fc6-419a-a127-79b4233b0619","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/dkim","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","dkim"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2609ef7f-4fc8-4c9f-83a5-fa55568edfbf"}],"id":"5bef56ca-0b8e-48f6-80a5-06ed9d9caa91","description":"<p>Create, Update, or Delete a DKIM signature for a domain confgured for use with Email Forwarding</p>\n","_postman_id":"5bef56ca-0b8e-48f6-80a5-06ed9d9caa91","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Rules","item":[{"name":"Get all email forwarding rules for an email forwarding domain","id":"7241e564-98a2-4c00-a579-02c42ee0c4a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules?pageSize=5&pageNumber=0&sortField=localPart&sortDirection=Asc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules"],"host":["/"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"localPart"},{"key":"sortDirection","value":"Asc"}],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"80564490-96b3-4c4a-be71-253f8cf04e29","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules?pageSize=5&pageNumber=0&sortField=localPart&sortDirection=Asc","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"localPart"},{"key":"sortDirection","value":"Asc"}],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n\t\t{\n    \t\"forwardingInboundMailBoxId\": 21,\n    \t\"forwardToAddress\": \"recipient@customer-example.com\",\n    \t\"localPart\": \"sender\",\n    \t\"verificationStatus\": \"Verified\",\n    \t\"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \t\"lastUpdate\": \"1995-11-30T04:07:55.812Z\"\n  \t},\n    {\n      \"forwardingInboundMailBoxId\": 22,\n    \t\"forwardToAddress\": \"info@customer-example.com\",\n    \t\"localPart\": \"info\",\n    \t\"verificationStatus\": \"Verified\",\n    \t\"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \t\"lastUpdate\": \"1995-11-30T04:07:55.812Z\"\n    }\n  ],\n  \"total\": \"2\"\n}"}],"_postman_id":"7241e564-98a2-4c00-a579-02c42ee0c4a4"},{"name":"Get an email forwarding rule for an email forwarding domain","id":"e825859c-2032-4d4d-8662-3df5b6dbea99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12","key":"ruleId"}]}},"response":[{"id":"844fdd5d-b6e1-44a1-884e-110e58c3a21b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"},{"key":"ruleId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"forwardingInboundMailBoxId\": 21,\n    \"forwardToAddress\": \"recipient@customer-example.com\",\n    \"localPart\": \"sender\",\n    \"verificationStatus\": \"Verified\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\"\n  }\n}"}],"_postman_id":"e825859c-2032-4d4d-8662-3df5b6dbea99"},{"name":"Add an email forwarding rule for an email forwarding domain","id":"730de213-6fcb-474e-b08d-858c4fcbf8ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"forwardToAddress\": \"recipient@customer-example.com\",\n  \"localPart\": \"sender\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"a1eee57b-c3ff-4ef0-9e74-7cc33a7f1ae1","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"forwardToAddress\": \"recipient@customer-example.com\",\n  \"localPart\": \"sender\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"forwardingInboundMailBoxId\": 21,\n    \"forwardToAddress\": \"recipient@customer-example.com\",\n    \"localPart\": \"sender\",\n    \"verificationStatus\": \"Verified\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\"\n  }\n}"}],"_postman_id":"730de213-6fcb-474e-b08d-858c4fcbf8ff"},{"name":"Update an email forwarding rule for an email forwarding domain","id":"a4fc8c5c-d524-4902-96a1-fd3608263589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"forwardToAddress\": \"recipient@customer-example.com\",\n  \"localPart\": \"sender\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12","key":"ruleId"}]}},"response":[{"id":"d1d8bb97-e917-46fc-a472-e00300f9916b","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"forwardToAddress\": \"recipient@customer-example.com\",\n  \"localPart\": \"sender\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"},{"key":"ruleId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"forwardingInboundMailBoxId\": 21,\n    \"forwardToAddress\": \"recipient@customer-example.com\",\n    \"localPart\": \"sender\",\n    \"verificationStatus\": \"Verified\",\n    \"createDate\": \"1995-11-30T04:07:55.812Z\",\n    \"lastUpdate\": \"1995-11-30T04:07:55.812Z\"\n  }\n}"}],"_postman_id":"a4fc8c5c-d524-4902-96a1-fd3608263589"},{"name":"Delete an email forwarding rule for an email forwarding domain","id":"a340614a-34fa-45d1-9fe2-3376bbd3227f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12","key":"ruleId"}]}},"response":[{"id":"b1bbc47d-93fa-429f-a50e-48bea35fbb8c","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"},{"key":"ruleId","value":"12"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a340614a-34fa-45d1-9fe2-3376bbd3227f"},{"name":"Verify the email address on a an email forwarding rule","id":"c2092dad-7ba1-4819-aeab-bc4aa80f3742","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"verificationCode\": \"abcdefg\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId/verify","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId","verify"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12","key":"ruleId"}]}},"response":[{"id":"11ad9f67-cbd7-447c-af7d-c211d1d7de0e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"verificationCode\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId/Verification/CheckVerification","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId","Verification","CheckVerification"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"},{"key":"ruleId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": true\n}"}],"_postman_id":"c2092dad-7ba1-4819-aeab-bc4aa80f3742"},{"name":"Resends a verification code to the email address on a an email forwarding rule","id":"bd6d1fb8-c76e-4705-baa7-658bfc16e151","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"forwardToAddress\": \"recipient@customer-example.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId/","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId",""],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12","key":"ruleId"}]}},"response":[{"id":"18215cdc-d9b4-4c5b-b9f7-fb574dee0bed","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"forwardToAddress\": \"recipient@customer-example.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain/rules/:ruleId/Verification/ResendVerification","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain","rules",":ruleId","Verification","ResendVerification"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"},{"key":"ruleId","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": true\n}"}],"_postman_id":"bd6d1fb8-c76e-4705-baa7-658bfc16e151"}],"id":"c026c04c-27c7-4e79-9297-8658d1194474","_postman_id":"c026c04c-27c7-4e79-9297-8658d1194474","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Get All email forwarding domains for a Subaccount","id":"97f5b219-68f5-4fd4-9de6-dac2da6a8f07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/email-forwarding?pageSize=5&pageNumber=0&sortField=domain&sortDirection=Asc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding"],"host":["/"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"domain"},{"key":"sortDirection","value":"Asc"}],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"517d8031-0d30-4abb-b466-a791731c92ef","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding?pageSize=5&pageNumber=0&sortField=domain&sortDirection=Asc","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"domain"},{"key":"sortDirection","value":"Asc"}],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"accountId\": \"98765\",\n      \"subaccountId\": \"12345\",\n      \"domain\": \"example.com\",\n      \"active\": \"true\",\n      \"createDate\": \"1995-11-30T04:07:55.812Z\",\n      \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n      \"mxValidationStatus\": \"Success\"\n    },\n    {\n      \"accountId\": \"98765\",\n      \"subaccountId\": \"12345\",\n      \"domain\": \"forward-example.com\",\n      \"active\": \"true\",\n      \"createDate\": \"1995-11-30T04:07:55.812Z\",\n      \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n      \"mxValidationStatus\": \"Success\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"97f5b219-68f5-4fd4-9de6-dac2da6a8f07"},{"name":"Get a specific email forwarding domain for a Subaccount","id":"ad323910-f3ef-4691-bc3d-af9514abb752","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"0f1053df-4a70-49ec-97a4-ad8541299eba","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"accountId\": \"98765\",\n      \"subaccountId\": \"12345\",\n      \"domain\": \"example.com\",\n      \"active\": \"true\",\n      \"createDate\": \"1995-11-30T04:07:55.812Z\",\n      \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n      \"mxValidationStatus\": \"Success\"\n    }\n}"}],"_postman_id":"ad323910-f3ef-4691-bc3d-af9514abb752"},{"name":"Add an email forwarding domain to a Subaccount","id":"8ea75605-70d4-44ca-8562-4e6c69d1ab65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding","description":"<p>Must have MX Records configured correctly to validate the domain. See <a href=\"https://help.socketlabs.com/docs/email-forwarding\">https://help.socketlabs.com/docs/email-forwarding</a> for more information.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"8de07c39-d6ba-48ca-9525-67bae08e3c1e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"accountId\": \"98765\",\n      \"subaccountId\": \"12345\",\n      \"domain\": \"example.com\",\n      \"active\": \"true\",\n      \"createDate\": \"1995-11-30T04:07:55.812Z\",\n      \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n      \"mxValidationStatus\": \"Success\"\n    }\n}"}],"_postman_id":"8ea75605-70d4-44ca-8562-4e6c69d1ab65"},{"name":"Update an email forwarding domain for a Subaccount","id":"c6a8f232-8dad-4571-80a5-223d71fc02e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"active\": \"true\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain","description":"<p>Must have MX Records configured correctly to validate the domain. See <a href=\"https://help.socketlabs.com/docs/email-forwarding\">https://help.socketlabs.com/docs/email-forwarding</a> for more information.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"3f6ebf24-2043-45fc-9e73-22bdaf98e1c3","name":"Created","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"active\": \"true\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"accountId\": \"98765\",\n      \"subaccountId\": \"12345\",\n      \"domain\": \"example.com\",\n      \"active\": \"true\",\n      \"createDate\": \"1995-11-30T04:07:55.812Z\",\n      \"lastUpdate\": \"1995-11-30T04:07:55.812Z\",\n      \"mxValidationStatus\": \"Success\"\n    }\n}"}],"_postman_id":"c6a8f232-8dad-4571-80a5-223d71fc02e6"},{"name":"Delete an email forwarding domain from a Subaccount","id":"e7581f81-4305-4347-8907-22993f910758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"//v2/subaccount/:subaccountId/email-forwarding/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","email-forwarding",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"subaccountId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"006eadf2-4b50-49dc-8d2d-e8bf5bfe6f3e","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/email-forwarding/:domain","host":["/"],"path":["v2","subaccount",":subaccountId","email-forwarding",":domain"],"variable":[{"key":"subaccountId","value":"12345"},{"key":"domain","value":"example.com"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e7581f81-4305-4347-8907-22993f910758"}],"id":"0e59e089-8bec-4462-a793-196ab38ec51a","description":"<p>API Endpoints For Setting up and Configuring Email Forwarding for a SubAccount</p>\n","_postman_id":"0e59e089-8bec-4462-a793-196ab38ec51a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"SuperTag Key Management","item":[{"name":"Gets all SuperTag Keys","id":"fd1cb854-69c7-4ac4-8a99-4cfee7cfdf89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/super-tags/","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","super-tags",""],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"1adc4779-716d-4028-b22d-c4540d64f63d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/super-tags/","host":["/"],"path":["v2","subaccount",":subaccountId","super-tags",""],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"ServerSuperTagKeyId\": 1,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey\",\n      \"SuperTagColumn\": 0,\n      \"LastUpdate\": \"2022-12-22T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    },\n    {\n      \"ServerSuperTagKeyId\": 2,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey2\",\n      \"SuperTagColumn\": 1,\n      \"LastUpdate\": \"2022-12-22T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"fd1cb854-69c7-4ac4-8a99-4cfee7cfdf89"},{"name":"Add a new SuperTag Key","id":"512c32ee-b8f3-4e46-ae9d-dd354f0e11bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"SuperTagKey\": \"YourSuperTagKey\",\r\n\t\"SuperTagColumn\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/subaccount/:subaccountId/super-tags/","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","super-tags",""],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"adbd18f3-6c07-43a3-8bf4-4350ba900efa","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/super-tags/","host":["/"],"path":["v2","subaccount",":subaccountId","super-tags",""],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"ServerSuperTagKeyId\": 1,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey\",\n      \"SuperTagColumn\": 0,\n      \"LastUpdate\": \"2022-12-22T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    }\n}"}],"_postman_id":"512c32ee-b8f3-4e46-ae9d-dd354f0e11bd"},{"name":"Update a SuperTag Key","id":"d13193fd-9354-42e8-94ed-3ea0d80110df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"SuperTagKey\": \"YourSuperTagKey\",\r\n\t\"SuperTagColumn\": 2\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/subaccount/:subaccountId/super-tags/","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","super-tags",""],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"c80621e6-299c-4ed8-ae55-5dbcfe237623","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/super-tags/","host":["/"],"path":["v2","subaccount",":subaccountId","super-tags",""],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"ServerSuperTagKeyId\": 1,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey\",\n      \"SuperTagColumn\": 2,\n      \"LastUpdate\": \"2022-12-23T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    }\n}"}],"_postman_id":"d13193fd-9354-42e8-94ed-3ea0d80110df"},{"name":"Delete a new SuperTag Key","id":"f4a0cdaf-9aea-444e-986c-5a5d6b3fd4ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/subaccount/:subaccountId/super-tags/YourSuperTagKey","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","subaccount",":subaccountId","super-tags","YourSuperTagKey"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"subaccountId"}]}},"response":[{"id":"6e865977-24e4-42e2-8aa4-e8a13cfda19a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/subaccount/:subaccountId/super-tags/YourSuperTagKey","host":["/"],"path":["v2","subaccount",":subaccountId","super-tags","YourSuperTagKey"],"variable":[{"key":"subaccountId","value":"12345"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f4a0cdaf-9aea-444e-986c-5a5d6b3fd4ed"}],"id":"422782b8-97de-4c4d-b8a3-4853341d535f","_postman_id":"422782b8-97de-4c4d-b8a3-4853341d535f","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}}],"id":"b1a7007e-1f02-49e0-98f7-7dbd8c9baa1c","_postman_id":"b1a7007e-1f02-49e0-98f7-7dbd8c9baa1c","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}},{"name":"Injection API","item":[{"name":"Send Email","id":"8649292e-6b30-4fd2-8050-907897ffd959","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"serverid\": YOUR-SUBACCOUNT-ID,\r\n    \"Messages\": [\r\n        {\r\n            \"To\": [\r\n                {\r\n                    \"emailAddress\": \"recipient1@example.com\"\r\n                }\r\n            ],\r\n            \"From\": {\r\n                \"emailAddress\": \"from@example.com\"\r\n            },\r\n            \"Subject\": \"Sending a Basic Message\",\r\n            \"TextBody\": \"This is the Plain Text Body of my message.\",\r\n            \"HtmlBody\": \"<html>This is the Html Body of my message.</html>\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://inject-cx.socketlabs.com/api/v1/email","urlObject":{"protocol":"https","path":["api","v1","email"],"host":["inject-cx","socketlabs","com"],"query":[],"variable":[]}},"response":[{"id":"fe46812b-265e-486b-a2e0-2dc245b84fef","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"serverId\": YOUR-SERVER-ID,\r\n    \"Messages\": [\r\n        {\r\n            \"To\": [\r\n                {\r\n                    \"emailAddress\": \"recipient1@example.com\"\r\n                }\r\n            ],\r\n            \"From\": {\r\n                \"emailAddress\": \"from@example.com\"\r\n            },\r\n            \"Subject\": \"Sending a Basic Message\",\r\n            \"TextBody\": \"This is the Plain Text Body of my message.\",\r\n            \"HtmlBody\": \"<html>This is the Html Body of my message.</html>\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":""},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"Success\",\n    \"MessageResults\": [],\n    \"TransactionReceipt\": \"null\"\n}"},{"id":"c7fbf5b2-5094-487e-b27d-3df53b79aae1","name":"Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"serverId\": YOUR-SERVER-ID,\r\n    \"Messages\": [\r\n        {\r\n            \"To\": [\r\n                {\r\n                    \"emailAddress\": \"recipient1@example.com\"\r\n                }\r\n            ],\r\n            \"From\": {\r\n                \"emailAddress\": \"from@example.com\"\r\n            },\r\n            \"Subject\": \"Sending a Basic Message\",\r\n            \"TextBody\": \"This is the Plain Text Body of my message.\",\r\n            \"HtmlBody\": \"<html>This is the Html Body of my message.</html>\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"//api/email"},"status":"Bad Request","code":400,"_postman_previewlanguage":"Text","header":["",{"key":"Content-Type","value":"application/json","description":""}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"\n{\n    \"errorCode\": \"Warning\",\n    \"transactionReceipt\": \"abcdefghijklmnop1234567890\",\n    \"messageResults\": [\n        {\n            \"index\": 0,\n            \"errorCode\":  \"Warning\",\n            \"addressResults\": [\n            {\n                \"EmailAddress\": \"invalid-email-address\",\n                \"Accepted\": false,\n                \"ErrorCode\": \"InvalidAddress\"\n            }\n            ]\n        },\n        {\n            \"index\": 1,\n            \"errorCode\": \"NoValidBodyParts\",\n            \"addressResults\": null\n        }\n    ]\n}\n"}],"_postman_id":"8649292e-6b30-4fd2-8050-907897ffd959"}],"id":"c312e4a0-a485-429b-a611-3a31cfc2d64a","description":"<h1 id=\"getting-started-create-an-api-key\">Getting Started: Create an API Key</h1>\n<p>For Complex Sender and Simple Sender, regardless of version, an API key must be created on the <a href=\"https://desktop.postman.com/?desktopVersion=10.15.0&amp;webVersion=10.15.1-ui-230614-0648&amp;userId=1818005&amp;teamId=278446\">API Key Management</a> page in your SocketLabs account. Be sure to choose the `Injection Api` API Access option so your API key will have the correct access.</p>\n<p>It is important to keep your API key secure because it can be used to modify features for your SocketLabs account.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>All calls to the SocketLabs API are authenticated using the API key that you generated. Authenticate your calls to the SocketLabs API using the <code>Authorization</code> header with the <code>Bearer</code> authentication scheme.</p>\n<h3 id=\"example-bearer-authorization-header\">Example Bearer authorization header:</h3>\n<p><code>Authorization: Bearer YOUR-API-KEY</code></p>\n<p>If your application or system does not support the <code>Bearer</code> authentication scheme, you may also use the <code>Basic</code> scheme. If using the <code>Basic</code> scheme, you may use any string as the username and then your API key as the password. More information about <code>Basic</code> authentication can be found <a href=\"https://desktop.postman.com/?desktopVersion=10.15.0&amp;webVersion=10.15.1-ui-230614-0648&amp;userId=1818005&amp;teamId=278446\">here</a>.</p>\n<h3 id=\"example-basic-authorization-header\">Example Basic authorization header:</h3>\n<p><code>Authorization: Basic YOUR-API-KEY</code></p>\n<h2 id=\"error-handling\">Error Handling</h2>\n<p>Your application should be designed to gracefully handle failure conditions and connectivity issues such as receiving no response or an error response from our API. The Injection API has several restrictions in place to prevent too great of an email volume from being injected in a single outbound message.</p>\n<h2 id=\"browser-applications\">Browser Applications</h2>\n<p>For security reasons, the Injection API does not work directly from browser-based applications. If you attempt to access the API from the browser you will receive a CORS error such as:</p>\n<p><em>Access to XMLHttpRequest at ‘</em><a href=\"https://api.example.com/%E2%80%99\"><i>https://api.example.com/’</i></a> <em>from origin ‘</em><a href=\"https://customerexample.com%E2%80%99\"><i>https://customerexample.com’</i></a> <em>has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.</em></p>\n<p>In order to use the Injection API with your browser-based application, you must use an intermediary server to handle calls to the Injection API. This allows you to keep your API key secure. More information about this can be found in <a href=\"https://www.socketlabs.com/blog/keeping-your-api-keys-secure-in-browser-applications/\">our blog</a>.</p>\n<h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>The specific restrictions regarding the properties of an individual injection request are as follows:</p>\n<p>No more than ten (10) outbound messages in a single injection request.</p>\n<p>No more than five hundred (500) recipients among all outbound messages in a single injection request. This means that there can be no more than fifty (50) recipients if the maximum number of ten (10) messages is being injected at once.</p>\n<p>An individual outbound message may have no more than fifty (50) recipients regardless of other restrictions.</p>\n<p>The sum of all outbound messages in a single injection request can be no more than 25MB in size.</p>\n<p>In addition to the above restrictions on content, the following throttling rules apply to this API:</p>\n<p>We allow up to five (5) injection requests per API key (or IP Address) per second.</p>\n<p>We allow up to five (5) authentication failures within a two (2) minute window per API key (or IP address). When this limit is reached, additional injection requests are blocked for the remainder of the two (2) minute window.</p>\n<p>Current restrictions with all aspects of the API may change to allow greater volume and speed in the future.</p>\n<p>In order to make it easy to get started with the Injection API we provide client libraries in several different programming languages. When configuring the Injection API you can choose one of these languages to get a quick start with the library for your chosen language.</p>\n<p>We also maintain GitHub repositories for each of the client libraries. These repositories contain the full source code for the library, as well as detailed examples for many different use cases. We encourage you to take a look at these examples when getting started with the libary.</p>\n<p>We provide client libraries for the following languages:</p>\n<ul>\n<li><a href=\"https://github.com/socketlabs/socketlabs-csharp\">C#</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-go\">Go</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-java\">Java</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-nodejs\">Node.js</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-php\">PHP</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-powershell\">PowerShell</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-python\">Python</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-ruby\">Ruby</a></li>\n</ul>\n<p>The Injection API is a versatile and malleable tool that can be used to send messages in a variety of fashions. This section will briefly go over the different types or way you can configure the JSON request to fulfill the needs of the messages you are sending.</p>\n<h4 id=\"basic-send\">Basic Send</h4>\n<p>A basic send is the simplest way to send a message through the Injection API. The most simple explanantion would be sending messages in this fashion would be similar to creating and sending a message through a common user-friendly program or application such as Outlook or Apple Mail. You add the content of a message and the To, From, CC and BCC recipients to the message and you can send it out. This method is basic in that you would generally only be sending the content of a single message to a single or a few recipients. It is important to note that If you plan on doing a basic send you will either need to have the PerMessage array set to null or not in the JSON at all. Please be aware that using the MergeData and PerMessage arrays our system disables the CC and BCC fields as they are redundant and not needed. Please see JSON samples for an example.</p>\n<h4 id=\"bulk-send\">Bulk Send</h4>\n<p>A bulk send is utilizing the Injection API to send a the content of a single message to mutliple recipients in such a manner that each recipient will receive the same message, but unlike with a message being sent from something like Outlook, each recipient will only see that the message was delivered to them. This sending method takes advantage of our MergeData and PerMessage arrays. This way you can customize a message for each recipient and by using our placeholder syntax in the To field ( %%DeliveryAddress%%) our system will recognize this placeholder and replace it with the address of each recipient defined in the PerMessage section of the JSON. This allows the API to build individual messages for each recipient keeping each message isolated from each other. Please see JSON Samples for an example.</p>\n<h4 id=\"customizing-messages\">Customizing Messages</h4>\n<p>With the use of our MergeData and PerMessage arrays you can define additional placeholder fields in the Content of your messgaes and any of the other Field:Value pairs within the JSON. By setting the Value of a Field to a %%FieldName%% and then defining that in the PerMessage array for each recipient, it will be replaced by that value for each recipipent. This allows you to customize messages for each recipient.</p>\n<h4 id=\"attachments\">Attachments</h4>\n<p>The Injection API supports the use of attachments of any kind. The only real requirement is that when defining the content of the attachment in the Content field, it must be a base64 encoded string. Anything else will result in an invalid data error being returned by our system.</p>\n<h2 id=\"api-templates\">API Templates</h2>\n<p>SocketLabs API Templates allow software developers to programmatically send email content which is easily created in our <a href=\"http://www.socketlabs.com/blog/introducing-new-email-designer/\">new email designer</a>. By separating the email content and design from the code, marketers and designers have full visibility into and control of the email content, design, and branding. Furthermore, email content can be updated without having to get developers involved, and without requiring changes to code or software deployments.</p>\n<p>To get started, first log into the <a href=\"https://cp.socketlabs.com/\">SocketLabs On-Demand Control Panel</a> and create some content. You may use our new drag and drop editor to create and save your content quickly and easily or you can create and save raw HTML and/or plain text content. Once you save your content, simply hover over its thumbnail in the Content Manager to get the associated API Template ID. Once you have the Template ID, this value is what you will provide in the “ApiTemplate” field in the JSON or XML that you pass with your API call. Please note that if you are using the “ApiTemplate” field, you’ll need to omit the “TextBody” and “HtmlBody” fields or your API call will result in a “MessageBodyConflict” error.</p>\n<p>You can also use our mail merging functionality in combination with the API Templates feature. Merge fields in your email content are declared using a ##FieldName## placeholder syntax, and any merge data included in your API call will replace the (matching named) placeholder text with the specified value. Any merge fields that are declared in your email content but do not have matching data in your API call will be left blank in the resulting message.</p>\n<p>Please see <a href=\"https://www.socketlabs.com/blog/unleash-power-merge-fields/\">this blog article</a> for a best example of using this feature.</p>\n<h2 id=\"delivery-return-codes\">Delivery Return Codes</h2>\n<p>The following failure codes may be returned from the outbound email injection request inside of the PostResponse return object.</p>\n<p>Return codes within the PostResponse object, specifying the status of the injection request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Success - No error.\nWarning – There were one or more failed messages and/or recipients.\nAccountDisabled - The account has been disabled.\nInternalError - Internal server error. (Please report to SocketLabs\n                support if encountered.)\nInvalidAuthentication - The ServerId/ApiKey combination is invalid.\nInvalidData - PostBody parameter does not have a valid structure, or\n              contains invalid or missing data.\nNoMessages - There were no messages to inject included in the request.\nEmptyMessage - One or more messages have insufficient content to process.\nOverQuota - Rate limit exceeded.\nTooManyErrors - Authentication error limit exceeded.\nTooManyMessages - Too many messages in a single request.\nTooManyRecipients - Too many recipients in a single message.\nNoValidRecipients - A merge was attempted, but there were no valid recipients.\n\n</code></pre><p>Return codes within the MessageResult object, specifying the status of a specific message:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Warning - The message has one or more bad recipients.\nInvalidAttachment - The message has one or more invalid attachments.\nMessageTooLarge - The message was larger than the allowed size.\nEmptySubject - This message contained an empty subject line, which is not allowed.\nEmptyToAddress - This message does not contain a To address.\nInvalidFromAddress - This message does not contain a valid From address.\nNoValidBodyParts - This message does not have a valid text HTML body specified.\nNoValidRecipients - There are no valid addresses specified as message recipients.\nInvalidMergeData - The included merge data does not follow the API specification.\nInvalidTemplateId - The selected API Template does not exist.\nMessageBodyConflict - The Html Body and Text Body cannot be set when also specifying an API Template ID.\nMetadataOrTagsAreTooLarge - Metadata and tags exceed 12.5KB\n\n</code></pre><p>Return codes within the AddressResult object, specifying the status of a specific recipient:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>InvalidAddress - The address did not meet specification requirements.\n\n</code></pre><h1 id=\"data-models\">Data Models</h1>\n<h2 id=\"injectionapipostbody\">InjectionApiPostBody</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>serverId</td>\n<td>string</td>\n<td>The numeric id of the virtual server being used.</td>\n</tr>\n<tr>\n<td>APIKey</td>\n<td>string</td>\n<td>The per-server API key used to authenticate.</td>\n</tr>\n<tr>\n<td>Messages</td>\n<td>array[EmailMessage]</td>\n<td>An array of one (1) or more EmailMessage instances.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"emailmessage\">EmailMessage</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>To</td>\n<td>array[Recipient]</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the recipients of an email message.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>From</td>\n<td>Recipient</td>\n<td>The EmailAddress/FriendlyName value pair for the sender of the message.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>ReplyTo</td>\n<td>Recipient</td>\n<td>The EmailAddress/FriendlyName value pair for the sender of the message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Subject</td>\n<td>string</td>\n<td>The subject line of the email address.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>TextBody</td>\n<td>string</td>\n<td>Body of text that would be the content of the message this or HTML required</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>HtmlBody</td>\n<td>string</td>\n<td>Body of HTML that would be the content of the message this or text required</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>AmpBody</td>\n<td>string</td>\n<td>body portion</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ApiTemplate</td>\n<td>string</td>\n<td>An integer ID referencing content from the Email Content Manager in the SocketLabs Control Panel.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MessageId</td>\n<td>string</td>\n<td>SocketLabs header used to tag individual messages.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MailingId</td>\n<td>string</td>\n<td>SocketLabs header used to track batches of messages.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Charset</td>\n<td>string</td>\n<td>The charset name to be used when creating the message. Default is UTF8.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CustomHeaders</td>\n<td>array[CustomHeader]</td>\n<td>An array of header field data stored in Name/Value pairs.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CC</td>\n<td>array[Recipient]</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the CC’d recipients of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>BCC</td>\n<td>array[Recipient]</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the BCC’d recipients of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Attachments</td>\n<td>array[Attachment]</td>\n<td>An array of attached content blobs, such as images, documents, and other binary files.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MergeData</td>\n<td>MergeData</td>\n<td>Data storage for the inline Merge feature.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Meta</td>\n<td>array[Key, Value]</td>\n<td>An array of key value pairs of meta data. Total byte size of tags and metadata combined must be under 12.5 kb</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Tags</td>\n<td>array[string]</td>\n<td>An array of Tag strings. Total byte size of tags and metadata combined must be under 12.5 kb</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"recipient\">Recipient</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>emailAddress</td>\n<td>string</td>\n<td>An email address string such as ‘<a href=\"https://mailto:foo@example.com\">foo@example.com</a>’.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>friendlyName</td>\n<td>string</td>\n<td>An alias for an email address.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"custom-headers\">Custom Headers</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>The name of the header field to be added, such as ‘Content-Type’.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>string</td>\n<td>The value of the header field to be added, such as ‘application/json’.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"attachment\">Attachment</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>The Name of the attachment file.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>string</td>\n<td>The BASE64 encoded string containing the contents of an attachment.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentId</td>\n<td>string</td>\n<td>When set, used to embed an image within the body of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentType</td>\n<td>string</td>\n<td>The MIME type of an attachment.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CustomHeaders</td>\n<td>array[CustomHeaders]</td>\n<td>An array of header field data stored in Name/Value pairs.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"mergedata\">MergeData</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PerMessage</td>\n<td>array[array[MergeValueData]]</td>\n<td>An two dimensional (2D) array of Field/Value pairs, used to define merge field data for each message. Variables can be freely named, with the exception of a single reserved word, ‘DeliveryAddress‘, which defines the recipient of the current message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Global</td>\n<td>array[MergeValueData]</td>\n<td>A array of Field:Value pairs that will be applied globally to all recipients.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"mergevaluedata\">MergeValueData</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Field</td>\n<td>string</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>string</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"d91bc091-d84d-4dde-b41f-ec71bf33c57e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c13b68a8-0e29-4a70-a728-f6ce43b6c9bf","type":"text/javascript","exec":[""]}}],"_postman_id":"c312e4a0-a485-429b-a611-3a31cfc2d64a"},{"name":"IP Pool","item":[{"name":"Sender Queue","item":[{"name":"Sender Queue Count","id":"7258fe92-8c95-4164-bf9a-646e86f6d2fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/ip-pool/:ippoolId/sender/queued/count","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ippoolId","sender","queued","count"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"ippoolId"}]}},"response":[{"id":"af2b0cff-3c7a-4017-9f0f-51d2de519e18","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/ip-pool/:ippoolId/sender/queued/count","host":["/"],"path":["v2","ip-pool",":ippoolId","sender","queued","count"],"variable":[{"key":"ippoolId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": 0\r\n}"}],"_postman_id":"7258fe92-8c95-4164-bf9a-646e86f6d2fd"},{"name":"Sender Queue Status","id":"5353dc20-7740-4d37-8c28-27a7a5da9668","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/ip-pool/:ippoolId/sender/queued/status","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ippoolId","sender","queued","status"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"ippoolId"}]}},"response":[{"id":"63b6bc2e-2d88-4372-801c-cc0673dded5c","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/ip-pool/:ippoolId/sender/queued/status","host":["/"],"path":["v2","ip-pool",":ippoolId","sender","queued","status"],"variable":[{"key":"ippoolId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": \"QueueAvailable\"\r\n}"}],"_postman_id":"5353dc20-7740-4d37-8c28-27a7a5da9668"},{"name":"Sender Queue Details","id":"ff5ec96b-2447-4859-859f-5b24672fdd1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/ip-pool/:ippoolId/sender/queued","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}},"urlObject":{"path":["v2","ip-pool",":ippoolId","sender","queued"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"ippoolId"}]}},"response":[{"id":"5df8460f-7ac1-4cac-9fa4-44aa8dd96282","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/ip-pool/:ippoolId/sender/queued","host":["/"],"path":["v2","ip-pool",":ippoolId","sender","queued"],"variable":[{"key":"ippoolId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": [\r\n        {\r\n            \"domain\": \"example.com\",\r\n            \"count\": 2,\r\n            \"secondsInQueue\": 4\r\n        },\r\n        {\r\n            \"domain\": \"sample.org\",\r\n            \"count\": 1,\r\n            \"secondsInQueue\": 4\r\n        }\r\n    ],\r\n    \"total\": 2\r\n}"}],"_postman_id":"ff5ec96b-2447-4859-859f-5b24672fdd1c"}],"id":"748cfe90-e5aa-43e0-842b-106e2035704a","_postman_id":"748cfe90-e5aa-43e0-842b-106e2035704a","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}}],"id":"0ff81238-da5e-4725-ab90-2139057d7df8","_postman_id":"0ff81238-da5e-4725-ab90-2139057d7df8","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","name":"Complex Sender","type":"folder"}}}],"id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c","description":"<h1 id=\"offset-pagination\">Offset pagination</h1>\n<p>Every endpoint that returns an array of results includes offset pagination. Offset pagination is defined by an order (`sortDirection`), a limit (`pageSize`), and an offset (`pageNumber`) from the start.</p>\n<h2 id=\"query-parameters\"><strong>Query parameters</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><br />  <br /><strong>Name</strong>  <br />  <br /></th>\n<th><br />  <br /><strong>Type</strong>  <br />  <br /></th>\n<th><br />  <br /><strong>Description</strong>  <br />  <br /></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><br />  <br />pageSize  <br />  <br /></td>\n<td><br />  <br />number  <br />  <br /></td>\n<td><br />  <br />The number of items to return. Default max size (100) if not specified, min size (1)  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />pageNumber  <br />  <br /></td>\n<td><br />  <br />number  <br />  <br /></td>\n<td><br />  <br />The page number of items from the start of the query to skip.  <br />  <br /></td>\n</tr>\n<tr>\n<td>sortDirection</td>\n<td><code>asc</code>, <code>dsc</code></td>\n<td>The direction the array is sorted</td>\n</tr>\n<tr>\n<td>sortField</td>\n<td>string</td>\n<td>the property name the array is sorted by.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\"><strong>Response</strong></h2>\n<p>The response type will include the <code>data</code> property containing the array of results and the <code>total</code> property containing the total number of results available</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><br />  <br /><strong>Name</strong>  <br />  <br /></th>\n<th><br />  <br /><strong>Type</strong>  <br />  <br /></th>\n<th><br />  <br /><strong>Description</strong>  <br />  <br /></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><br />  <br />data  <br />  <br /></td>\n<td><br />  <br />array  <br />  <br /></td>\n<td><br />  <br />The array of results  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />total  <br />  <br /></td>\n<td><br />  <br />number  <br />  <br /></td>\n<td><br />  <br />The number of results in total  <br />  <br /></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"data\": [\n     …\n   ],\n   \"total\": 123\n}\n\n</code></pre>\n<h1 id=\"error-handling\">Error Handling</h1>\n<p>Sometimes there will be errors with your API call. This could be due to any number of issues such as incorrect syntax, validation errors, limits being exceeded, or something going wrong on our server. When this happens the HTTP response will contain an error code, with additional information provided in the response body. The body can contain either a single error or a list of errors.</p>\n<h2 id=\"example-error\">Example error:</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\" : [\n      {\n        \"errorType\": \"InvalidDomainFormat\",\n        \"message\": \"Domain name not formatted correctly.\"\n      }\n   ]\n}\n\n</code></pre>\n<h2 id=\"api-error-model\">API Error Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property Name</strong></th>\n<th><strong>Data Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>string</td>\n</tr>\n<tr>\n<td>errorType</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"51ecaac8-a02d-4816-b60c-f7c7ce3850c7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bf06a95b-a4b3-464b-91c3-23c67be2d288","type":"text/javascript","exec":[""]}}],"_postman_id":"b4ab47e3-a279-49d6-a056-e8a5d4dda22c"},{"name":"Simple Sender","item":[{"name":"Version 2","item":[{"name":"API Key Management","item":[{"name":"Get all API Keys for the Server","id":"16bff336-d2f0-42c2-84fe-6cfc87b2d276","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/credentials/api-key?pageSize=10&pageNumber=0&sortField=apiKey&sortDirection=asc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","api-key"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"apiKey"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"asc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"12ec76b5-5034-4aab-b68e-16412b367277","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/credentials/api-key?pageSize=10&pageNumber=0&sortField=apiKey&sortDirection=asc","host":["/"],"path":["v2","servers",":serverId","credentials","api-key"],"query":[{"key":"pageSize","value":"10"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"apiKey"},{"key":"sortDirection","value":"asc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n        {\n            \"apiKeyId\": 123,\n            \"name\": \"My Api Key #1\",\n            \"publicPart\": \"xyzabc1233456\",\n            \"isEnabled\": true\n        },\n        {\n            \"apiKeyId\": 321,\n            \"name\": \"My Api Key #2\",\n            \"publicPart\": \"xyzabc1233456\",\n            \"isEnabled\": true\n        }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"16bff336-d2f0-42c2-84fe-6cfc87b2d276"},{"name":"Add new API Key for Server","id":"6f114076-1c4d-4592-bfce-d3f2ae6f64de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"My API key\",    \n  \"permissions\": [\n        \"ApiOnly\",\n        \"InjectionApi\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/credentials/api-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","api-key"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"d3aa0266-c9e8-4421-a797-2a526232429e","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"aute in\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/credentials/api-key","host":["/"],"path":["v2","servers",":serverId","credentials","api-key"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"apiKeyId\": 123,\n        \"apiKey\": \"xyzabc1233456.xyzabc1233456xyzabc1233456xyzabc1233456\",\n        \"name\": \"My Api Key #1\",\n        \"publicPart\": \"xyzabc1233456\",\n        \"isEnabled\": true\n    }\n}"}],"_postman_id":"6f114076-1c4d-4592-bfce-d3f2ae6f64de"},{"name":"Update API Key on Server","id":"4db58e22-758c-4c40-84e8-1cf0beae4d51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"\n  {\n  \"name\": \"My API key\",    \n  \"isEnabled\": true,\n  \"permissions\": [\n        \"ApiOnly\",\n        \"InjectionApi\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/credentials/api-key/:apiKeyId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","api-key",":apiKeyId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) apiKeyId to update.</p>\n","type":"text/plain"},"type":"any","value":"123","key":"apiKeyId"}]}},"response":[{"id":"46a1905d-6e9f-49ee-84eb-5eb10bd9e460","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"qui\",\n  \"isEnabled\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/credentials/api-key/:apiKeyId","host":["/"],"path":["v2","servers",":serverId","credentials","api-key",":apiKeyId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"apiKeyId","value":"123","description":"(Required) apiKeyId to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"apiKeyId\": 123,\n        \"name\": \"My Api Key #1\",\n        \"publicPart\": \"xyzabc1233456\",\n        \"isEnabled\": true\n    }\n}"}],"_postman_id":"4db58e22-758c-4c40-84e8-1cf0beae4d51"},{"name":"Delete API Key on Server","id":"f9a695c4-475f-4479-9ea9-532375e91d83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/credentials/api-key/:apiKeyId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","api-key",":apiKeyId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) apiKeyId to delete.</p>\n","type":"text/plain"},"type":"any","value":"123","key":"apiKeyId"}]}},"response":[{"id":"dd88aa57-0e8f-4671-97e7-34f435c57845","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/credentials/api-key/:apiKeyId","host":["/"],"path":["v2","servers",":serverId","credentials","api-key",":apiKeyId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"apiKeyId","value":"123","description":"(Required) apiKeyId to delete."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f9a695c4-475f-4479-9ea9-532375e91d83"}],"id":"87c80bd0-acce-4db6-958d-83deb7b78f94","_postman_id":"87c80bd0-acce-4db6-958d-83deb7b78f94","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Bounce Domain","item":[{"name":"Error Types","item":[],"id":"baeb16c9-ea44-4d9b-abb9-be5be05bb7a0","description":"<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the bounce domain endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CnameResolutionFailure</td>\n<td>The domain does not resolve to <code>tracking.socketlabs.com</code>.</td>\n</tr>\n<tr>\n<td>DomainDoesNotExist</td>\n<td>The domain does not exist for your server.</td>\n</tr>\n<tr>\n<td>DomainNotAllowed</td>\n<td>The requested domain is not allowed.</td>\n</tr>\n<tr>\n<td>InvalidDomainFormat</td>\n<td>The domain name was not formatted correctly.</td>\n</tr>\n<tr>\n<td>MaximumBounceDomainLimitExceeded</td>\n<td>The maximum domain limit has been exceeded for your server.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"baeb16c9-ea44-4d9b-abb9-be5be05bb7a0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Get a Bounce Domain for Server","id":"85ca783d-d719-4c4d-a7bb-4fc1f495b856","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The bounce domain.</p>\n","type":"text/plain"},"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"0e1e77f7-434d-49e8-938e-3ac48090c583","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/bounce/:domain","host":["/"],"path":["v2","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"bounce1.example.com\",\n    \"isDefault\": true,\n    \"createdOn\": \"1961-10-12T10:15:41.114Z\",\n    \"updatedOn\": \"2021-03-14T03:37:55.414Z\"\n  }\n}"}],"_postman_id":"85ca783d-d719-4c4d-a7bb-4fc1f495b856"},{"name":"Get All Bounce Domains for Server","id":"d5a33983-46f8-41ae-ba1c-d69d44186fb0","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/bounce?pageSize=10&pageNumber=0&sortField=domain&sortDirection=asc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","bounce"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional column filters</p>\n","type":"text/plain"},"key":"filters","value":"<string>"}],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"10f5cc9d-cb61-4e63-b166-9aa6e2600008","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/bounce?pageSize=5&pageNumber=1&sortField=domain&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","bounce"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"domain"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"domain\": \"example.com\",\n      \"isDefault\": true,\n      \"createdOn\": \"1974-04-30T09:56:28.682Z\",\n      \"updatedOn\": \"1977-05-30T23:26:42.150Z\"\n    },\n    {\n      \"domain\": \"example.org\",\n      \"isDefault\": true,\n      \"createdOn\": \"1961-10-12T10:15:41.114Z\",\n      \"updatedOn\": \"2021-03-14T03:37:55.414Z\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"d5a33983-46f8-41ae-ba1c-d69d44186fb0"},{"name":"Create a Bounce Domain","id":"57d653a8-8d9a-4e18-968e-80f8da459179","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/bounce","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","bounce"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"6ae18d68-33a3-4ab6-9acc-6b7c7f8a5b49","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/bounce","host":["/"],"path":["v2","servers",":serverId","bounce"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"example.com\",\n    \"isDefault\": false,\n    \"validationResult\": \"Success\",\n    \"createdOn\": \"1950-07-03T00:39:30.153Z\",\n    \"updatedOn\": \"2008-09-07T16:07:17.709Z\"\n  }\n}"}],"_postman_id":"57d653a8-8d9a-4e18-968e-80f8da459179"},{"name":"Update Bounce Domain for Server","id":"a705e128-1a3e-406c-8591-7494e7bfa59a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The bounce domain to be updated.</p>\n","type":"text/plain"},"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"33fa7e84-0ae3-4908-b947-e761314b1f44","name":"Success","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/bounce/:domain","host":["/"],"path":["v2","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be updated."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"example.com\",\n    \"isDefault\": false,\n    \"validationResult\": \"Success\",\n    \"createdOn\": \"1950-07-03T00:39:30.153Z\",\n    \"updatedOn\": \"2008-09-07T16:07:17.709Z\"\n  }\n}"}],"_postman_id":"a705e128-1a3e-406c-8591-7494e7bfa59a"},{"name":"Add Bounce Domain for Server","id":"1ae66fa8-7fce-4892-96a3-6c9d82b27c85","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/bounce/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The bounce domain to be deleted.</p>\n","type":"text/plain"},"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"264acf9e-ae10-4636-b1f7-15a4f7e01a93","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/bounce/:domain","host":["/"],"path":["v2","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be deleted."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1ae66fa8-7fce-4892-96a3-6c9d82b27c85"}],"id":"5db8e923-997d-44b8-860b-5198167d9c74","description":"<p>The Bounce Domains endpoint allows you to get a list of Bounce Domains for your server, add new domains, update an existing domain, or delete a domain.</p>\n<h2 id=\"about-custom-bounce-domains\">About Custom Bounce Domains</h2>\n<h3 id=\"what-is-a-bounce-domain\">What is a Bounce Domain?</h3>\n<p>Bounce Domains will be used in the domain portion of the bounce address, which is used in the SMTP communication process to determine where the receiving mail server sends back its bounce and error messages. A custom bounce domain allows you to customize the domain utilized in the these email messages. For more information about this feature, please see the <a href=\"https://help.socketlabs.com/docs/custom-bounce-domains\">Custom Bounce Domains</a> article in the SocketLabs Help Center.</p>\n<h3 id=\"prerequisites\">Prerequisites</h3>\n<p>In order to set up a custom bounce domain, a CNAME record must be established with your DNS service provider. This CNAME must point a subdomain to the <code>tracking.socketlabs.com</code> domain. This can also be used for enabling the Engagement Tracking feature. You can re-use the CNAME record created for engagement tracking to customize your bounce domain. For more information about setting up a CNAME record for Custom Bounce Domains, please see the <a href=\"https://help.socketlabs.com/docs/cname-configuration-for-bounce-tracking\">CNAME Configuration</a> article in the SocketLabs Help Center.</p>\n","_postman_id":"5db8e923-997d-44b8-860b-5198167d9c74","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Complaints","item":[{"name":"Get Complaints Overview","id":"e3593b34-c2b7-4c74-837d-4e8972ec62d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/complaints/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","complaints","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"6f750212-b207-4aa2-b6b2-d3f0c9fe4fe1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/complaints/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","servers",":serverId","reports","messages","complaints","overview"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2022-12-22T00:00:00-05:00\",\n      \"queued\": 15572,\n      \"sent\": 14937,\n      \"complaints\": 6125,\n      \"percentComplaints\": 0.4101,\n      \"mxRecordProviderData\": [\n        {\n          \"dateComputed\": \"2022-12-22T00:00:00-05:00\",\n          \"mxRecordProvider\": \"Unknown\",\n          \"queued\": 15572,\n          \"sent\": 14937,\n          \"complaints\": 6125,\n          \"percentComplaints\": 0.4101,\n          \"data\": [\n            {\n              \"timestamp\": \"2022-12-22T01:00:00-05:00\",\n              \"mxRecordProvider\": \"Unknown\",\n              \"queued\": 717,\n              \"sent\": 691,\n              \"complaints\": 280,\n              \"percentComplaints\": 0.4052\n            },\n            {\n              \"timestamp\": \"2022-12-22T02:00:00-05:00\",\n              \"mxRecordProvider\": \"Unknown\",\n              \"queued\": 687,\n              \"sent\": 657,\n              \"complaints\": 293,\n              \"percentComplaints\": 0.446\n            }\n          ]\n        },\n        {\n          \"dateComputed\": \"2022-12-22T00:00:00-05:00\",\n          \"mxRecordProvider\": \"example.com\",\n          \"queued\": 15572,\n          \"sent\": 14937,\n          \"complaints\": 6125,\n          \"percentComplaints\": 0.4101,\n          \"data\": [\n            {\n              \"timestamp\": \"2022-12-22T01:00:00-05:00\",\n              \"mxRecordProvider\": \"example.com\",\n              \"queued\": 717,\n              \"sent\": 691,\n              \"complaints\": 280,\n              \"percentComplaints\": 0.4052\n            },\n            {\n              \"timestamp\": \"2022-12-22T02:00:00-05:00\",\n              \"mxRecordProvider\": \"example.com\",\n              \"queued\": 687,\n              \"sent\": 657,\n              \"complaints\": 293,\n              \"percentComplaints\": 0.446\n            }\n          ]\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2022-12-21 to 2022-12-22\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"e3593b34-c2b7-4c74-837d-4e8972ec62d2"},{"name":"Get Complaints Aggregate","id":"0a78a673-ea25-4d13-998c-e74dbc1557c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/complaints/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=0&sortField=type&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","complaints","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"FromDomain"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"type"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"0b7f6785-1e78-405b-9146-2f356cf23e13","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/complaints/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=1&sortField=type&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","complaints","aggregate"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"type","value":"FromDomain"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"type"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 15572,\n      \"sent\": 14937,\n      \"complaints\": 6125,\n      \"percentComplaints\": 0.4101\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 15572,\n      \"sent\": 14937,\n      \"complaints\": 6125,\n      \"percentComplaints\": 0.4101\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"0a78a673-ea25-4d13-998c-e74dbc1557c5"},{"name":"Gets list of messages with complaints","id":"a09dcd23-7fb1-4d9a-bdde-ef1a190c5baf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/complaints/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","complaints","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"to"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"8d2ce972-0708-4476-858c-dded31439734","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/complaints/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=to&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","complaints","detail"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"to"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.8402633-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8402645-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstComplaint\": \"2022-12-22T19:05:59.8402682-05:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.8402687-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8402688-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstComplaint\": \"2022-12-22T19:05:59.8402695-05:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"a09dcd23-7fb1-4d9a-bdde-ef1a190c5baf"}],"id":"12cdca1e-840b-4156-a9e2-958449e98c33","_postman_id":"12cdca1e-840b-4156-a9e2-958449e98c33","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"DKIM","item":[{"name":"Error Types","item":[],"id":"5b95389e-919d-48ca-b83e-d5f83d371cbe","description":"<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the DKIM endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomDkimEnabled</td>\n<td>You must disable the Custom DKIM feature in the SocketLabs Performance Dashboard before using the DKIM API.</td>\n</tr>\n<tr>\n<td>DomainNotAllowed</td>\n<td>The requested domain is not allowed.</td>\n</tr>\n<tr>\n<td>EntryAlreadyExists</td>\n<td>The domain is currently in use on your server.</td>\n</tr>\n<tr>\n<td>EntryNotFound</td>\n<td>The requested domain is not found on your server.</td>\n</tr>\n<tr>\n<td>InvalidPrivateKey</td>\n<td>The value or format of the private key is invalid. Please verify the private key value.</td>\n</tr>\n<tr>\n<td>InvalidPublicKey</td>\n<td>The value or format of the public key is invalid. Please verify the public key value.</td>\n</tr>\n<tr>\n<td>MaximumDkimEntriesExceeded</td>\n<td>The maximum number of DKIM entries has been reached.</td>\n</tr>\n<tr>\n<td>MissingDomain</td>\n<td><code>Domain</code> field was missing from your request.</td>\n</tr>\n<tr>\n<td>MissingPrivateKey</td>\n<td><code>PrivateKey</code> field was missing from your request.</td>\n</tr>\n<tr>\n<td>MissingSelector</td>\n<td><code>Selector</code> field was missing from your request.</td>\n</tr>\n<tr>\n<td>PrivatePublicKeysDoNotPair</td>\n<td>Your private key does not pair with the public key found at your DNS entry.</td>\n</tr>\n<tr>\n<td>PublicKeyNotFound</td>\n<td>We could not fetch your public key from your DNS entry. Please confirm your configuration.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5b95389e-919d-48ca-b83e-d5f83d371cbe","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Data Models","item":[],"id":"b33c97f8-752f-4ccf-a049-691f68973deb","description":"<h1 id=\"dkim-key-generate-response-object\">DKIM Key Generate Response Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DnsHostName</td>\n<td>string</td>\n<td>The hostname you must create in your domain's DNS for the new DKIM record.</td>\n</tr>\n<tr>\n<td>Domain</td>\n<td>string</td>\n<td>The domain for your DKIM record.</td>\n</tr>\n<tr>\n<td>Selector</td>\n<td>string</td>\n<td>The selector used for your DKIM record.</td>\n</tr>\n<tr>\n<td>DnsRecord</td>\n<td>string</td>\n<td>The full value to be added to your DNS as a TXT record. This record should be added at the hostname specified in the DnsHostName property.</td>\n</tr>\n<tr>\n<td>PublicKey</td>\n<td>string</td>\n<td>The public key generated for your domain and selector combination.</td>\n</tr>\n<tr>\n<td>PrivateKey</td>\n<td>string</td>\n<td>The private key generated for your domain and selector combination.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"dkim-key-post-request-object\">DKIM Key POST Request Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>The domain name for your new DKIM entry.</td>\n</tr>\n<tr>\n<td>selector</td>\n<td>string</td>\n<td>The selector for your new DKIM entry.</td>\n</tr>\n<tr>\n<td>privateKey</td>\n<td>string</td>\n<td>The private key for your DKIM entry.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"dkim-key-put-request-object\">DKIM Key PUT Request Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>selector</td>\n<td>string</td>\n<td>The selector for your new DKIM entry.</td>\n</tr>\n<tr>\n<td>privateKey</td>\n<td>string</td>\n<td>The private key for your DKIM entry.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"dkim-key-response-object\">DKIM Key Response Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>The domain name for your DKIM entry.</td>\n</tr>\n<tr>\n<td>selector</td>\n<td>string</td>\n<td>The selector used for your DKIM key.</td>\n</tr>\n<tr>\n<td>truncatedPrivateKey</td>\n<td>string</td>\n<td>The truncated (for security) private key for your DKIM entry.</td>\n</tr>\n<tr>\n<td>validationResult</td>\n<td>string</td>\n<td>Whether we were able to verify the public key in DNS with the private key you provided.This field only exists on the POST endpoint, not the GET</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b33c97f8-752f-4ccf-a049-691f68973deb","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"CNAME","item":[{"name":"Creates a new Cname DKIM entry for your server.","id":"6a48ed04-7ad5-4b48-a932-890974f9fc76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/dkim/cname","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim","cname"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"-6241228","key":"serverId"}]}},"response":[{"id":"7e5fe7d6-8b9b-4d2d-a518-9b4d2ca69b68","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/dkim/cname","host":["/"],"path":["v2","servers",":serverId","dkim","cname"],"variable":[{"key":"serverId","value":"-6241228","description":"(Required) "}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"validationResult\": \"Success\",\n        \"domain\": \"example.com\",\n        \"recordType\": \"CNAME\",\n        \"createdOn\": \"2023-01-31T20:10:59.3711603Z\",\n        \"updatedOn\": \"2023-01-31T20:10:59.3711599Z\"\n    }\n}"}],"_postman_id":"6a48ed04-7ad5-4b48-a932-890974f9fc76"},{"name":"Delete a Cname DKIM entry based on a specified domain/selector combination.","id":"c22a561d-cae4-4eca-bd07-467a38e1bd54","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/dkim/cname/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim","cname",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"687746d9-e4ab-4a84-a023-50c7d357be42","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/dkim/cname/:domain","host":["/"],"path":["v2","servers",":serverId","dkim","cname",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c22a561d-cae4-4eca-bd07-467a38e1bd54"}],"id":"6b3eace0-a232-45b0-9580-f74555ba68f4","_postman_id":"6b3eace0-a232-45b0-9580-f74555ba68f4","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Generate a DKIM Key","id":"5f2943f1-19d4-4264-8229-653f859d70cf","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/dkim/generate?domain=example.com&selector=dkim1","description":"<p>You can use these keys to update your DNS before creating new DKIM entries.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim","generate"],"host":["/"],"query":[{"description":{"content":"<p>(Required) The domain for the DKIM entry you are generating a key for.</p>\n","type":"text/plain"},"key":"domain","value":"example.com"},{"description":{"content":"<p>(Required) The selector for the DKIM entry you are generating a key for.</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"fef65f6d-395e-4001-b370-29a2a93f7b09","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/dkim/generate?domain=example.com&selector=dkim1","host":["/"],"path":["v2","servers",":serverId","dkim","generate"],"query":[{"key":"domain","value":"example.com"},{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"DnsHostName\": \"dkim1._domainkey.example.com\",\n        \"Domain\": \"example.com\",\n        \"Selector\": \"dkim1\",\n        \"DnsRecord\": \"key\",\n        \"PublicKey\": \"public key\",\n        \"PrivateKey\": \"private key\"\n    }\n}"}],"_postman_id":"5f2943f1-19d4-4264-8229-653f859d70cf"},{"name":"Get DKIM Entries for Server","id":"1457b713-fd39-4dc0-81af-72dc8ea3d2e8","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/dkim?pageSize=10&pageNumber=0&sortField=domain&sortDirection=asc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional column filters</p>\n","type":"text/plain"},"key":"filters","value":"<string>"}],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"0d38c127-b12b-43fe-93cf-2d82b1f1ed42","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/dkim?pageSize=5&pageNumber=1&sortField=domain&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","dkim"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"domain"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n        \"domain\": \"example.com\",\n        \"selector\": \"dkim1\",\n        \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n        \"recordType\": \"TXT\",\n        \"createdOn\": \"2023-01-31T19:58:56\",\n        \"updatedOn\": \"2023-01-31T19:58:56\"\n    },\n    {\n        \"domain\": \"example.org\",\n        \"selector\": \"dkim1\",\n        \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n        \"recordType\": \"TXT\",\n        \"createdOn\": \"2023-01-31T19:58:56\",\n        \"updatedOn\": \"2023-01-31T19:58:56\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"1457b713-fd39-4dc0-81af-72dc8ea3d2e8"},{"name":"Get a DKIM Entry for Server","id":"fda411af-ccd8-400f-a899-ad96825fd3c0","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/dkim/:domain?selector=dkim1","description":"<p>Each entry will include the validation status for the domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>(Optional) The selector for the DKIM entry you are querying..</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) (Optional) The domain for the DKIM entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"31e65e6d-f227-4949-87e6-68ae51c797a8","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v2","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Optional) The domain for the DKIM entry you are querying."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"domain\": \"example.com\",\n        \"selector\": \"dkim1\",\n        \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n        \"recordType\": \"TXT\",\n        \"createdOn\": \"2023-01-31T19:58:56\",\n        \"updatedOn\": \"2023-01-31T19:58:56\"\n  }\n}"}],"_postman_id":"fda411af-ccd8-400f-a899-ad96825fd3c0"},{"name":"Add a DKIM Entry for Server","id":"3cb4fd8d-657d-4adc-924c-c2c736779202","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"privateKey\": \"YOUR-PRIVATE-KEY\",\n  \"selector\": \"dkim1\"\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/dkim","description":"<p>If the PrivateKey is not provided, we will generate a new public/private key pair for you.\n            Otherwise, we will attempt to validate your private key against the public key for your domain.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"1afc2489-ffa4-42f8-abb2-c3650c4fe666","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/dkim","host":["/"],"path":["v2","servers",":serverId","dkim"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"DnsHostName\": \"dkim1._domainkey.example.com\",\n        \"Domain\": \"example.com\",\n        \"Selector\": \"dkim1\",\n        \"DnsRecord\": \"key\",\n        \"PublicKey\": \"public key\",\n        \"PrivateKey\": \"private key\"\n    }\n}"}],"_postman_id":"3cb4fd8d-657d-4adc-924c-c2c736779202"},{"name":"Update a DKIM Entry for Server","id":"400a9248-9bc8-45ff-a073-e6f57806985c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"privateKey\": \"YOUR-PRIVATE-KEY\",\n  \"selector\": \"dkim1\"\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/dkim/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) (Required) The domain for the DKIM entry you are updating.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"d82f5d89-8a73-4ab4-848f-b425c86be6a6","name":"Success","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/dkim/:domain","host":["/"],"path":["v2","servers",":serverId","dkim",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Required) The domain for the DKIM entry you are updating."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"DnsHostName\": \"dkim1._domainkey.example.com\",\n        \"Domain\": \"example.com\",\n        \"Selector\": \"dkim1\",\n        \"DnsRecord\": \"key\",\n        \"PublicKey\": \"public key\",\n        \"PrivateKey\": \"private key\"\n    }\n}"}],"_postman_id":"400a9248-9bc8-45ff-a073-e6f57806985c"},{"name":"Delete a DKIM Entry for Server","id":"73cb4d13-4fe8-4f71-8872-94448d00fa24","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/dkim/:domain?selector=dkim1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>The selector for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"3f502ecc-9cd7-4ebd-827f-60653a6a7f1c","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v2","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"73cb4d13-4fe8-4f71-8872-94448d00fa24"}],"id":"3c291d42-cb74-4f87-88c3-3ddf480abe5d","description":"<p>The DKIM endpoint allows you to generate DKIM keys, save DKIM entries, and get a list of all DKIM entries for your server.</p>\n<p>SocketLabs will sign outbound messages where the From address domain matches the domain for one of your DKIM entries. For more information about DKIM signing with SocketLabs, please see our <a href=\"https://help.socketlabs.com/docs/dkim-authentication\">Help Center</a>.</p>\n<p>In order to create a new DKIM entry, please provide the domain, selector, and private key. We will attempt to validate the private key that you provide against the public key for your domain and selector. If we are unable to validate the public key, an error message will be returned.</p>\n<p>You can create your own private and public keys to use with this endpoint. If you would prefer to have SocketLabs generate the key pairs for you, we provide a Generate endpoint that will generate a public/private key pair for your provided domain and selector combination.</p>\n","_postman_id":"3c291d42-cb74-4f87-88c3-3ddf480abe5d","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Delivered","item":[{"name":"Get Delivered Message Overview","id":"dd2e97e6-77ea-4732-bb87-3f8e651ec92d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/delivered/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","delivered","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"be434697-3bb3-44d8-9ff9-53746953413a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/delivered/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","servers",":serverId","reports","messages","delivered","overview"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2022-12-22T00:00:00-05:00\",\n      \"queued\": 33151,\n      \"sent\": 31924,\n      \"delivered\": 30697,\n      \"percentDelivered\": 0.9616,\n      \"uniqueOpens\": 31731,\n      \"percentUniqueOpens\": 1.0337,\n      \"uniqueClicks\": 31733,\n      \"percentUniqueClicks\": 1.0337,\n      \"unsubscribes\": 4701,\n      \"percentUnsubscribes\": 0.1473,\n      \"totalOpens\": 164266,\n      \"totalClicks\": 165044,\n      \"hardFailures\": 567,\n      \"percentHardFailures\": 0.0178,\n      \"softFailures\": 660,\n      \"percentSoftFailures\": 0.0207,\n      \"totalFailures\": 1227,\n      \"percentTotalFailures\": 0.0384,\n      \"complaints\": 11781,\n      \"percentComplaints\": 0.369,\n      \"bytesUsed\": 2325770235,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0,\n      \"data\": [\n        {\n          \"timestamp\": \"2022-12-22T01:00:00-05:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 1.0389,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 1.0409,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"bytesUsed\": 39291280,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        },\n        {\n          \"timestamp\": \"2022-12-22T02:00:00-05:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentUniqueOpens\": 1.0389,\n          \"uniqueClicks\": 535,\n          \"percentUniqueClicks\": 1.0409,\n          \"unsubscribes\": 63,\n          \"percentUnsubscribes\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"bytesUsed\": 39291280,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2022-12-21 to 2022-12-22\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"dd2e97e6-77ea-4732-bb87-3f8e651ec92d"},{"name":"Get Delivered Message Aggregates","id":"99feaa75-668c-4bbb-99c0-ea6361bd6912","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/delivered/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=0&sortField=type&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","delivered","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"FromDomain"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"type"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"4d3e8aa0-ab33-4fa4-aa8d-acdbdec1c518","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/delivered/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=1&sortField=type&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","delivered","aggregate"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"type","value":"FromDomain"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"type"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 1.0389,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 1.0409,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"bytesUsed\": 39291280,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 1.0389,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 1.0409,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"bytesUsed\": 39291280,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"99feaa75-668c-4bbb-99c0-ea6361bd6912"},{"name":"Gets list of messages with details","id":"28ccd67e-1f1a-423b-85cd-7f0a9d7d36a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/delivered/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","delivered","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"to"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"44700bab-5983-40cf-801d-d0f515dccbd3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/delivered/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=to&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","delivered","detail"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"to"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.8517338-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8517358-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"spamScore\": 0,\n      \"firstOpen\": \"2022-12-22T19:05:59.8517408-05:00\",\n      \"lastOpen\": \"2022-12-22T19:05:59.851741-05:00\",\n      \"firstClick\": \"2022-12-22T19:05:59.8517411-05:00\",\n      \"lastClick\": \"2022-12-22T19:05:59.8517413-05:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2022-12-22T19:05:59.8517414-05:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"trackingUnsubscribeEnabled\": 0,\n      \"trackingOpenEnabled\": 0,\n      \"trackingEnabledLinks\": 0,\n      \"isSpamSample\": 0,\n      \"isSpamHit\": 0,\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.851742-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8517421-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"spamScore\": 0,\n      \"firstOpen\": \"2022-12-22T19:05:59.8517428-05:00\",\n      \"lastOpen\": \"2022-12-22T19:05:59.8517429-05:00\",\n      \"firstClick\": \"2022-12-22T19:05:59.851743-05:00\",\n      \"lastClick\": \"2022-12-22T19:05:59.8517431-05:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2022-12-22T19:05:59.8517433-05:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"trackingUnsubscribeEnabled\": 0,\n      \"trackingOpenEnabled\": 0,\n      \"trackingEnabledLinks\": 0,\n      \"isSpamSample\": 0,\n      \"isSpamHit\": 0,\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"28ccd67e-1f1a-423b-85cd-7f0a9d7d36a3"}],"id":"a1172152-03f6-45a7-abc9-dccf743e4e2d","_postman_id":"a1172152-03f6-45a7-abc9-dccf743e4e2d","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Engagement Tracking Domains","item":[{"name":"Get All Tracking Domains for Server","id":"ac3cf1a0-2076-4cb4-bdcc-5a0b68e8a4e7","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/tracking?pageSize=10&pageNumber=0&sortField=domain&sortDirection=asc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"domain"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional column filters</p>\n","type":"text/plain"},"key":"filters","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"5fba9bf9-5cfa-41cd-8bba-9eaeb15df030","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/tracking?pageSize=-6241228&pageNumber=-6241228&sortField=id anim aute laborum&sortDirection=<string>&filters=[object Object]&filters=[object Object]","host":["/"],"path":["v2","servers",":serverId","tracking"],"query":[{"key":"pageSize","value":"-6241228"},{"key":"pageNumber","value":"-6241228"},{"key":"sortField","value":"id anim aute laborum"},{"key":"sortDirection","value":"<string>"},{"key":"filters","value":"[object Object]"},{"key":"filters","value":"[object Object]"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n        \"domain\": \"tracking.example.com\",\n        \"opensEnabled\": true,\n        \"clicksEnabled\": true,\n        \"unsubscribesEnabled\": false,\n        \"automaticTrackingEnabled\": true,\n        \"googleAnalyticsEnabled\": true,\n        \"isDefault\": true,\n        \"encryptedTrackingStatus\": \"Active\",\n        \"createdOn\": \"2022-01-01T12:00:00.000Z\",\n        \"updatedOn\": \"2022-01-01T12:00:00.000Z\"\n    },\n     {\n        \"domain\": \"tracking.domain.com\",\n        \"opensEnabled\": true,\n        \"clicksEnabled\": true,\n        \"unsubscribesEnabled\": false,\n        \"automaticTrackingEnabled\": true,\n        \"googleAnalyticsEnabled\": true,\n        \"isDefault\": true,\n        \"encryptedTrackingStatus\": \"Active\",\n        \"createdOn\": \"2022-01-01T12:00:00.000Z\",\n        \"updatedOn\": \"2022-01-01T12:00:00.000Z\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"ac3cf1a0-2076-4cb4-bdcc-5a0b68e8a4e7"},{"name":"Get a Tracking Domain for Server","id":"8a134d5b-0e2f-4a02-9f3f-c8c5a589481b","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the tracking domain entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"463261e7-fcfe-43b2-86d8-1a4585b61fb8","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/tracking/:domain","host":["/"],"path":["v2","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the tracking domain entry you are querying."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": true,\n    \"unsubscribesEnabled\": false,\n    \"automaticTrackingEnabled\": true,\n    \"googleAnalyticsEnabled\": true,\n    \"isDefault\": true,\n    \"encryptedTrackingStatus\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00.000Z\",\n    \"updatedOn\": \"2022-01-01T12:00:00.000Z\"\n  }\n}"}],"_postman_id":"8a134d5b-0e2f-4a02-9f3f-c8c5a589481b"},{"name":"Update a Tracking Domain for Server","id":"00ed128b-4325-43b3-a50e-c510b62fc4fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"laboris\",\n  \"opensEnabled\": true,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": false,\n  \"googleAnalyticsEnabled\": false,\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The tracking domain to be updated.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"2006dc2b-b93d-4475-83e0-07fa683da70e","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"laboris\",\n  \"opensEnabled\": true,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": false,\n  \"googleAnalyticsEnabled\": false,\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/tracking/:domain","host":["/"],"path":["v2","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The tracking domain to be updated."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"dolor consequat commodo nisi\",\n    \"opensEnabled\": false,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": false,\n    \"automaticTrackingEnabled\": true,\n    \"googleAnalyticsEnabled\": false,\n    \"isDefault\": true,\n    \"encryptedTrackingStatus\": \"Failed\",\n    \"createdOn\": \"1956-08-04T06:33:14.358Z\",\n    \"updatedOn\": \"2018-11-18T18:46:40.407Z\"\n  }\n}"}],"_postman_id":"00ed128b-4325-43b3-a50e-c510b62fc4fe"},{"name":"Add Tracking Domain for Server","id":"d4b06e86-1f1d-43db-81ba-8f5c14d9da09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"laboris\",\n  \"opensEnabled\": true,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": false,\n  \"googleAnalyticsEnabled\": false,\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/tracking","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"4fe47107-fdb9-4dff-b817-da90d02f3540","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"laboris\",\n  \"opensEnabled\": true,\n  \"clicksEnabled\": true,\n  \"unsubscribesEnabled\": false,\n  \"automaticTrackingEnabled\": false,\n  \"googleAnalyticsEnabled\": false,\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/tracking","host":["/"],"path":["v2","servers",":serverId","tracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"domain\": \"tracking.example.com\",\n    \"opensEnabled\": true,\n    \"clicksEnabled\": true,\n    \"unsubscribesEnabled\": false,\n    \"automaticTrackingEnabled\": true,\n    \"googleAnalyticsEnabled\": true,\n    \"isDefault\": true,\n    \"encryptedTrackingStatus\": \"Active\",\n    \"createdOn\": \"2022-01-01T12:00:00.000Z\",\n    \"updatedOn\": \"2022-01-01T12:00:00.000Z\"\n  }\n}"}],"_postman_id":"d4b06e86-1f1d-43db-81ba-8f5c14d9da09"},{"name":"Delete a Tracking Domain for Server","id":"088277d8-93ab-43e6-9ea5-8efa7722d957","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/tracking/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the  tracking domain entry you are deleting.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"9ff65ee0-9570-4c66-a7f5-ff555ffdc51a","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/tracking/:domain","host":["/"],"path":["v2","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the  tracking domain entry you are deleting."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"088277d8-93ab-43e6-9ea5-8efa7722d957"},{"name":"Gets Encrypted Tracking Status for the domain","id":"fcfc80e8-e9da-495f-a228-e0eaf935b5e2","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/tracking/:domain/encrypted","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) (Optional) The domain for the tracking domain entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"1de303d4-f456-437e-a7f4-d7cd067fa94a","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/tracking/:domain/encrypted","host":["/"],"path":["v2","servers",":serverId","tracking",":domain","encrypted"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"tracking.example.com","description":"(Required) (Optional) The domain for the tracking domain entry you are querying."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"encryptedTrackingStatus\": \"Pending\"\n  }\n}"}],"_postman_id":"fcfc80e8-e9da-495f-a228-e0eaf935b5e2"},{"name":"Disable Encrypted Tracking Status for the domain","id":"9bf1b0f2-f0fc-427e-b5cd-0b6a484db309","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/tracking/:domain/encrypted","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"8421dfe1-bdf9-4a82-9c6f-3e8c794d202c","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/tracking/:domain/encrypted","host":["/"],"path":["v2","servers",":serverId","tracking",":domain","encrypted"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9bf1b0f2-f0fc-427e-b5cd-0b6a484db309"},{"name":"Enable Encrypted Tracking Status for the domain","id":"a0453e19-ec05-4172-923f-e57436be52f0","request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/tracking/:domain/encrypted","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"a7dfae8e-6025-4d6f-8b66-44e79d20b962","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/tracking/:domain/encrypted","host":["/"],"path":["v2","servers",":serverId","tracking",":domain","encrypted"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"encryptedTrackingStatus\": \"Pending\"\n  }\n}"}],"_postman_id":"a0453e19-ec05-4172-923f-e57436be52f0"}],"id":"a19591b7-e768-45d6-8b00-703aa670df16","description":"<p>The Tracking Domain endpoint allows you to add, update or delete Tracking Domains for your server. Additionally, you can get a list of all Tracking Domain entries for your server or query for a single domain.</p>\n<h2 id=\"about-tracking-domains\">About Tracking Domains</h2>\n<h3 id=\"what-is-a-tracking-domain\">What is a Tracking Domain?</h3>\n<p>The Engagement Tracking feature allows you to detect how your email recipients are interacting with messages sent to them; specifically, if they are opening the message, clicking on links within the message, or if the recipient has requested to be unsubscribed from the messages they are receiving.</p>\n<p>In order to use the <a href=\"https://help.socketlabs.com/docs/engagement-tracking\">Engagement Tracking</a> feature, you must configure one or more Tracking Domains. Tracking Domains are used to white-label the links and images in your email messages, allowing the domains in the URL to match your own domain while still allowing SocketLabs to track engagement.</p>\n<h3 id=\"prerequisites\">Prerequisites</h3>\n<p>In order to set up a Tracking Domain, a CNAME record must be established with your DNS service provider. This CNAME must point a subdomain to the <code>tracking.socketlabs.com</code> domain. This can also be used for enabling the Custom Bounce feature. You can re-use the CNAME record created for engagement tracking to customize your bounce domain. For more information about setting up a CNAME record for Tracking Domains, please see the <a href=\"https://help.socketlabs.com/docs/cname-configuration-for-bounce-tracking\">CNAME Configuration</a> article in the SocketLabs Help Center.</p>\n<h2 id=\"data-models\">Data Models</h2>\n<h3 id=\"tracking-domain-post-request-object\">Tracking Domain POST Request Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n</tr>\n<tr>\n<td>opensEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>clicksEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>unsubscribesEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>automaticTrackingEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>googleAnalyticsEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"tracking-domain-put-request-object\">Tracking Domain PUT Request Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>opensEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>clicksEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>unsubscribesEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>automaticTrackingEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>googleAnalyticsEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"tracking-domain-response-object\">Tracking Domain Response Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>opensEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>clicksEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>unsubscribesEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>automaticTrackingEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>googleAnalyticsEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>encryptedTrackingStatus</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>validationResult</td>\n<td>string</td>\n<td>This field only used on the POST and PUT endpoints, not the GET</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-types\">Error Types</h2>\n<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the tracking domain endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CannotEnableHttpsTracking</td>\n<td>Unable to enable Https Tracking. Domain name contains wildcard hostname.</td>\n</tr>\n<tr>\n<td>EntryNotFound</td>\n<td>Domain does not exist for your server.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n<tr>\n<td>CannotEnableHttpsTracking</td>\n<td>Unable to enable Https Tracking. Domain name contains wildcard hostname.</td>\n</tr>\n<tr>\n<td>EntryNotFound</td>\n<td>Domain does not exist for your server.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a19591b7-e768-45d6-8b00-703aa670df16","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Tracking","item":[{"name":"Gets the Tracking Report overview data","id":"2cbccb77-e233-4cea-9303-7d4e185659e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/tracking/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","tracking","overview"],"host":["/"],"query":[{"description":{"content":"<p>The start date in the format yyyy-MM-dd (required)</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>The end date in the format yyyy-MM-dd (required). Must be greater than or equal to the startDate</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"e0d811f7-3208-4c1e-b367-7ee0af4bee8f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/tracking/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","servers",":serverId","reports","messages","tracking","overview"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2022-12-22T00:00:00-05:00\",\n      \"sent\": 31924,\n      \"queued\": 33151,\n      \"delivered\": 30697,\n      \"percentDelivered\": 0.9616,\n      \"uniqueClicks\": 31733,\n      \"percentUniqueClicks\": 0.994,\n      \"uniqueOpens\": 31731,\n      \"percentUniqueOpens\": 0.994,\n      \"complaints\": 11781,\n      \"percentComplaints\": 0.369,\n      \"unsubscribes\": 4701,\n      \"percentUnsubscribes\": 0.1473,\n      \"totalOpens\": 164266,\n      \"totalClicks\": 165044,\n      \"data\": [\n        {\n          \"timestamp\": \"2022-12-22T01:00:00-05:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentHardEngagements\": 0.9944,\n          \"uniqueClicks\": 535,\n          \"percentSoftEngagements\": 0.9963,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"unsubscribes\": 63,\n          \"percentSuppressed\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537\n        },\n        {\n          \"timestamp\": \"2022-12-22T02:00:00-05:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"uniqueOpens\": 534,\n          \"percentHardEngagements\": 0.9944,\n          \"uniqueClicks\": 535,\n          \"percentSoftEngagements\": 0.9963,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"unsubscribes\": 63,\n          \"percentSuppressed\": 0.1173,\n          \"totalOpens\": 2556,\n          \"totalClicks\": 2537\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2022-12-21 to 2022-12-22\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"2cbccb77-e233-4cea-9303-7d4e185659e0"},{"name":"Get Tracking Report Aggregates","id":"145e4f4d-f877-4983-8d1c-1add9535170b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/tracking/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=0&sortField=sent&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","tracking","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"FromDomain"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"sent"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"34af5d99-f822-4034-b862-077ed5f9a19e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/tracking/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=1&sortField=sent&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","tracking","aggregate"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"type","value":"FromDomain"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"sent"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 0.9944,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 0.9963,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"percentDelivered\": 0.9572,\n      \"uniqueOpens\": 534,\n      \"percentUniqueOpens\": 0.9944,\n      \"uniqueClicks\": 535,\n      \"percentUniqueClicks\": 0.9963,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"unsubscribes\": 63,\n      \"percentUnsubscribes\": 0.1173,\n      \"totalOpens\": 2556,\n      \"totalClicks\": 2537\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"145e4f4d-f877-4983-8d1c-1add9535170b"},{"name":"Gets list of tracking messages with details","id":"4f6fd8e8-6a57-4653-97ef-8d2cd510505d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/tracking/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","tracking","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"to"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"31b99355-cd95-408e-bdf4-c9f1f7fb1d6d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/tracking/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=to&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","tracking","detail"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"to"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.8694301-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8694316-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2022-12-22T19:05:59.8694352-05:00\",\n      \"lastOpen\": \"2022-12-22T19:05:59.8694354-05:00\",\n      \"firstClick\": \"2022-12-22T19:05:59.8694355-05:00\",\n      \"lastClick\": \"2022-12-22T19:05:59.8694356-05:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2022-12-22T19:05:59.8694358-05:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.8694363-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8694364-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"firstOpen\": \"2022-12-22T19:05:59.869437-05:00\",\n      \"lastOpen\": \"2022-12-22T19:05:59.8694371-05:00\",\n      \"firstClick\": \"2022-12-22T19:05:59.8694372-05:00\",\n      \"lastClick\": \"2022-12-22T19:05:59.8694373-05:00\",\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"firstComplaint\": \"2022-12-22T19:05:59.8694375-05:00\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"4f6fd8e8-6a57-4653-97ef-8d2cd510505d"}],"id":"5455d1b4-7532-483d-bdad-476fa647c57f","_postman_id":"5455d1b4-7532-483d-bdad-476fa647c57f","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"SuperTag Key Management","item":[{"name":"Gets all SuperTag Keys","id":"d91962fd-54de-4254-af54-8e246f9b1fb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/super-tags/","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","super-tags",""],"host":["/"],"query":[],"variable":[{"id":"3d537889-2e57-4b0e-ade3-1f85af169bf0","type":"any","value":"","key":"serverId"}]}},"response":[{"id":"46e61a31-5a82-47d9-9bb6-17c68b8839fe","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/super-tags/","host":["/"],"path":["v2","servers",":serverId","super-tags",""],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"ServerSuperTagKeyId\": 1,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey\",\n      \"SuperTagColumn\": 0,\n      \"LastUpdate\": \"2022-12-22T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    },\n    {\n      \"ServerSuperTagKeyId\": 2,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey2\",\n      \"SuperTagColumn\": 1,\n      \"LastUpdate\": \"2022-12-22T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"d91962fd-54de-4254-af54-8e246f9b1fb2"},{"name":"Add a new SuperTag Key","id":"b1aa4981-ac56-4651-a540-95a8d26ed2a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"SuperTagKey\": \"YourSuperTagKey\",\r\n\t\"SuperTagColumn\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/super-tags/","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","super-tags",""],"host":["/"],"query":[],"variable":[{"id":"a4508f09-1b89-4b6f-b77f-a2f7a6e75321","type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"2ce8cc0a-90c6-425a-8fa3-57ea8e400f2e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/super-tags/","host":["/"],"path":["v2","servers",":serverId","super-tags",""],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"ServerSuperTagKeyId\": 1,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey\",\n      \"SuperTagColumn\": 0,\n      \"LastUpdate\": \"2022-12-22T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    }\n}"}],"_postman_id":"b1aa4981-ac56-4651-a540-95a8d26ed2a4"},{"name":"Update a SuperTag Key","id":"8f89ea1e-74ea-48ae-b766-76b1533e0662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"SuperTagKey\": \"YourSuperTagKey\",\r\n\t\"SuperTagColumn\": 2\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/super-tags/","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","super-tags",""],"host":["/"],"query":[],"variable":[{"id":"c220e354-d480-4b6e-a365-951c00fdcf19","type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"bb966540-17b7-4fe8-afbb-502a8e8430d3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/super-tags/","host":["/"],"path":["v2","servers",":serverId","super-tags",""],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"ServerSuperTagKeyId\": 1,\n      \"ServerId\": 12345,\n      \"SuperTagKey\": \"YourSuperTagKey\",\n      \"SuperTagColumn\": 2,\n      \"LastUpdate\": \"2022-12-23T01:00:00-05:00\",\n      \"CreatedOn\": \"2022-12-22T01:00:00-05:00\"\n    }\n}"}],"_postman_id":"8f89ea1e-74ea-48ae-b766-76b1533e0662"},{"name":"Delete a new SuperTag Key","id":"b710f01c-2cde-4020-8d82-932517041094","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/super-tags/YourSuperTagKey","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","super-tags","YourSuperTagKey"],"host":["/"],"query":[],"variable":[{"id":"f129318d-63dc-4a96-9786-f67504afadec","type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"b35396eb-eca8-4e35-8519-997d7dfff65b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/super-tags/YourSuperTagKey","host":["/"],"path":["v2","servers",":serverId","super-tags","YourSuperTagKey"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b710f01c-2cde-4020-8d82-932517041094"}],"id":"4d0893b3-6094-4ee0-8b28-848ca33af528","_postman_id":"4d0893b3-6094-4ee0-8b28-848ca33af528","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Event Webhooks","item":[{"name":"Example POST Events","item":[{"name":"Click Event Webhook Test","id":"40b3c3e3-4664-4b4d-abd4-3dfb293e026b","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=click","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"click"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"329605da-f5a0-4859-a1c2-3f9197d6bfef","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=click","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"click"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"TrackingType\": 0,\n            \"Type\": \"Tracking\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Url\": \"https://example.com\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:30:24.3836448Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"40b3c3e3-4664-4b4d-abd4-3dfb293e026b"},{"name":"Complaint Event Webhook Test","id":"8878770d-4f31-48bd-9616-380880685c98","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=complaint","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"complaint"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"60bd27a5-da81-4b4c-bee7-d15cc9ca4231","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=complaint","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"complaint"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"Type\": \"Complaint\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"From\": \"from@example.com\",\n            \"To\": \"to@example.com\",\n            \"Length\": 999,\n            \"DateTime\": \"2024-05-07T19:32:00.7293101Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"8878770d-4f31-48bd-9616-380880685c98"},{"name":"Failed Event Webhook Test","id":"2c1db926-7090-4188-8a43-b102f286842a","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=failed","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"failed"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"0a4b6f7c-0f23-4b02-9843-31b1022806c4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=failed","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"failed"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"Type\": \"Failed\",\n            \"BounceStatus\": \"Sample BounceStatus\",\n            \"DiagnosticCode\": \"Sample DiagnosticCode\",\n            \"FromAddress\": \"email@example.com\",\n            \"FailureCode\": 2001,\n            \"FailureType\": \"Permanent\",\n            \"Reason\": \"Sample Reason\",\n            \"RemoteMta\": \"Sample RemoteMta\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:32:41.2281311Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"2c1db926-7090-4188-8a43-b102f286842a"},{"name":"Open Event Webhook Test","id":"9e33d40c-60d4-4dae-ae4a-01ecb390dc3c","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=open","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"open"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"0f6b9ac4-8ca2-4d3a-ac5e-27ae0f7349fd","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=open","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"open"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"TrackingType\": 1,\n            \"Type\": \"Tracking\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Url\": \"https://example.com\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:33:09.0701612Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"9e33d40c-60d4-4dae-ae4a-01ecb390dc3c"},{"name":"Sent Event Webhook Test","id":"ea86a791-96a4-4c3f-9da7-0ec743fb603b","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=sent","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"sent"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"a6dc58e0-e6c3-4787-9d17-08714fc5c90a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=sent","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"sent"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"Type\": \"Delivered\",\n            \"Response\": \"Sample Response\",\n            \"LocalIp\": \":01\",\n            \"RemoteMta\": \"Sample RemoteMta\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:35:16.5158967Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"ea86a791-96a4-4c3f-9da7-0ec743fb603b"},{"name":"Unsubscribe Event Webhook Test","id":"cc688c9d-a4f4-400e-80af-6ba13605a16a","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=unsubscribe","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"unsubscribe"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"454f95da-20ba-49c8-8fbc-b6784413b22b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=unsubscribe","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"unsubscribe"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"TrackingType\": 2,\n            \"Type\": \"Tracking\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Url\": \"https://example.com\",\n            \"UserAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:35:32.8506293Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"cc688c9d-a4f4-400e-80af-6ba13605a16a"},{"name":"Queued Event Webhook Test","id":"655ebf31-2888-4ed1-806c-9713ceacde93","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=queued","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"queued"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"77aa5e9a-dd2d-4f6b-b8a8-4aa37292ac0e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=queued","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"queued"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"FromAddress\": \"email@example.com\",\n            \"Subject\": \"example subject line\",\n            \"MessageSize\": 999,\n            \"Type\": \"Queued\",\n            \"ClientIp\": \"127.255.255.255\",\n            \"Source\": \"SMTP\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:35:57.7324291Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"655ebf31-2888-4ed1-806c-9713ceacde93"},{"name":"Deferred Event Webhook Test (Future)","id":"0368369c-f29a-4374-b71e-331aaa1a1714","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=deferred","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":true,"source":{"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","id":"0a773014-9922-4cfb-8a80-78fbcbb06236","name":"Example POST Events","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"deferred"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"61994749-888f-4569-8711-510cfc261589","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=deferred","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"deferred"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"FromAddress\": \"email@example.com\",\n            \"DeferralCode\": 9999,\n            \"Reason\": \"Sample Reason\",\n            \"Type\": \"Deferred\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:36:12.0550348Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"0368369c-f29a-4374-b71e-331aaa1a1714"}],"id":"0a773014-9922-4cfb-8a80-78fbcbb06236","auth":{"type":"bearer","bearer":{"token":"{{vault:authorization-secret}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"aab80273-4be3-45a1-b7a9-2f2c6b0c69ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a55abdd7-50bf-46da-b1f4-3fa727fc7aeb","type":"text/javascript","exec":[""]}}],"_postman_id":"0a773014-9922-4cfb-8a80-78fbcbb06236","description":""},{"name":"Generates a secret key","id":"ee53cf3a-3a5e-4140-a2a1-0f7d87e88cd6","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/generate-secret-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099","id":"f83dfb98-8b88-437d-a443-a519e6363099","name":"Event Webhooks","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook","generate-secret-key"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"1e1f99ca-642d-491b-a6a2-51c697b09a70","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/generate-secret-key","host":["/"],"path":["v2","servers",":serverId","event-webhook","generate-secret-key"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"secretKey\": \"abcdefg12345678\"\n  }\n}"}],"_postman_id":"ee53cf3a-3a5e-4140-a2a1-0f7d87e88cd6"},{"name":"Gets list of webhook urls","id":"699890f0-4405-4555-86cd-7e628c8bee0a","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook?pageSize=10&pageNumber=0&sortField=created&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099","id":"f83dfb98-8b88-437d-a443-a519e6363099","name":"Event Webhooks","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"created"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"},{"disabled":true,"description":{"content":"<p>Optional column filters</p>\n","type":"text/plain"},"key":"filters","value":"<string>"}],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"1f6d53aa-74ee-48bd-8b19-8aaa2fa09e46","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/event-webhook?pageSize=-6241228&pageNumber=-6241228&sortField=id anim aute laborum&sortDirection=<string>&filters=[object Object]&filters=[object Object]","host":["/"],"path":["v2","servers",":serverId","event-webhook"],"query":[{"key":"pageSize","value":"-6241228"},{"key":"pageNumber","value":"-6241228"},{"key":"sortField","value":"id anim aute laborum"},{"key":"sortDirection","value":"<string>"},{"key":"filters","value":"[object Object]"},{"key":"filters","value":"[object Object]"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n      {\n        \"webhookId\": 1,\n        \"eventUrl\": \"https://events.example.com\",\n        \"secretKey\": \"abcdefg12345678\",\n        \"eventsComplaint\": false,\n        \"eventsFailed\": true,\n        \"eventsSent\": true,\n        \"eventsTracking\": true,\n        \"eventsDeferrals\": true,\n        \"eventsQueued\": true,\n        \"created\": \"2010-11-13T05:19:48.781Z\",\n        \"lastUpdated\": \"1998-09-06T14:19:26.400Z\",\n        \"format\": \"Json\"\n    },\n    {\n        \"webhookId\": 2,\n        \"eventUrl\": \"https://events.example.org\",\n        \"secretKey\": \"abcdefg12345678\",\n        \"eventsComplaint\": false,\n        \"eventsFailed\": true,\n        \"eventsSent\": true,\n        \"eventsTracking\": true,\n        \"eventsDeferrals\": true,\n        \"eventsQueued\": true,\n        \"created\": \"2010-11-13T05:19:48.781Z\",\n        \"lastUpdated\": \"1998-09-06T14:19:26.400Z\",\n        \"format\": \"Json\"\n    }\n  ]\n}"}],"_postman_id":"699890f0-4405-4555-86cd-7e628c8bee0a"},{"name":"Gets a webhook url","id":"759d03b5-15eb-46ad-88e1-740d69acb958","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:notificationWebhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099","id":"f83dfb98-8b88-437d-a443-a519e6363099","name":"Event Webhooks","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":notificationWebhookId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12","key":"notificationWebhookId"}]}},"response":[{"id":"de07b3c5-3b6f-40e5-b63a-9848051b5be7","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"webhookId\": 1,\n    \"eventUrl\": \"https://events.example.com\",\n    \"secretKey\": \"abcdefg12345678\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": true,\n    \"eventsTracking\": true,\n    \"eventsDeferrals\": true,\n    \"eventsQueued\": true,\n    \"created\": \"2010-11-13T05:19:48.781Z\",\n    \"lastUpdated\": \"1998-09-06T14:19:26.400Z\",\n    \"format\": \"Json\"\n  }\n}"}],"_postman_id":"759d03b5-15eb-46ad-88e1-740d69acb958"},{"name":"Create and validate a new webhook url","id":"9ee4c007-a0be-4cb0-af01-88bffaecf7a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"eventUrl\": \"https://events.example.com\",\n  \"secretKey\": \"abcdefg12345678\"\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/event-webhook","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099","id":"f83dfb98-8b88-437d-a443-a519e6363099","name":"Event Webhooks","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"54af3628-3b8d-4e04-83b5-42397e01091a","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"eventUrl\": \"https://events.example.com\",\n  \"secretKey\": \"abcdefg12345678\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/event-webhook","host":["/"],"path":["v2","servers",":serverId","event-webhook"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"webhookId\": 1,\n    \"eventUrl\": \"https://events.example.com\",\n    \"secretKey\": \"abcdefg12345678\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": true,\n    \"eventsTracking\": true,\n    \"eventsDeferrals\": true,\n    \"eventsQueued\": true,\n    \"created\": \"2010-11-13T05:19:48.781Z\",\n    \"lastUpdated\": \"1998-09-06T14:19:26.400Z\",\n    \"format\": \"Json\"\n  }\n}"}],"_postman_id":"9ee4c007-a0be-4cb0-af01-88bffaecf7a0"},{"name":"Updates the webhook url","id":"6947927c-79e4-4104-b963-834cb949e2d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"enabled\": false,\n  \"enableViaSmtp\": true,\n  \"eventsComplaint\": false,\n  \"eventsFailed\": true,\n  \"eventsSent\": false,\n  \"eventsTracking\": false,\n  \"eventsDeferrals\": false,\n  \"eventsQueued\": false\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099","id":"f83dfb98-8b88-437d-a443-a519e6363099","name":"Event Webhooks","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"a8e2a9c0-9053-415c-80cb-beff175408c2","name":"Success","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"enabled\": false,\n  \"enableViaSmtp\": true,\n  \"eventsComplaint\": false,\n  \"eventsFailed\": true,\n  \"eventsSent\": false,\n  \"eventsTracking\": false,\n  \"eventsDeferrals\": false,\n  \"eventsQueued\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"webhookId\": 1,\n    \"eventUrl\": \"https://events.example.com\",\n    \"secretKey\": \"abcdefg12345678\",\n    \"eventsComplaint\": false,\n    \"eventsFailed\": true,\n    \"eventsSent\": true,\n    \"eventsTracking\": true,\n    \"eventsDeferrals\": true,\n    \"eventsQueued\": true,\n    \"created\": \"2010-11-13T05:19:48.781Z\",\n    \"lastUpdated\": \"1998-09-06T14:19:26.400Z\",\n    \"format\": \"Json\"\n  }\n}"}],"_postman_id":"6947927c-79e4-4104-b963-834cb949e2d5"},{"name":"Delete a webhook url","id":"c6dd7869-f074-46b6-8fb9-c1c31b6f57f4","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099","id":"f83dfb98-8b88-437d-a443-a519e6363099","name":"Event Webhooks","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"1ff314bd-d9e5-4277-89ed-4cafec4b1efc","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c6dd7869-f074-46b6-8fb9-c1c31b6f57f4"},{"name":"Test a webhook  url","id":"49f4283d-6abe-4000-a3f6-f8c2da121aa3","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=Failed","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099","id":"f83dfb98-8b88-437d-a443-a519e6363099","name":"Event Webhooks","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"host":["/"],"query":[{"key":"type","value":"Failed"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"type":"any","value":null,"key":"webhookId"}]}},"response":[{"id":"47c1636e-f9ec-4a54-8db8-4a6aafda81ee","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/event-webhook/:webhookId/perform-test?type=<string>","host":["/"],"path":["v2","servers",":serverId","event-webhook",":webhookId","perform-test"],"query":[{"key":"type","value":"<string>"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"webhookId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"Success\",\n        \"response\": \"This is what you sent in response from your endpoint.\",\n        \"dataSent\": {\n            \"Type\": \"Failed\",\n            \"BounceStatus\": \"Sample BounceStatus\",\n            \"DiagnosticCode\": \"Sample DiagnosticCode\",\n            \"FromAddress\": \"email@example.com\",\n            \"FailureCode\": 2001,\n            \"FailureType\": \"Permanent\",\n            \"Reason\": \"Sample Reason\",\n            \"RemoteMta\": \"Sample RemoteMta\",\n            \"Data\": {\n                \"Meta\": [\n                    {\n                        \"Key\": \"x-mycustommetadata\",\n                        \"Value\": \"I am custom metadata\"\n                    }\n                ],\n                \"Tags\": [\n                    \"Sample Tag\",\n                    \"Sample Message\"\n                ]\n            },\n            \"DateTime\": \"2024-05-07T19:32:41.2281311Z\",\n            \"MailingId\": \"SLNL-0-9999999-9999999\",\n            \"MessageId\": \"SampleMessageId\",\n            \"Address\": \"email@example.com\",\n            \"ServerId\": 12345,\n            \"SecretKey\": \"abcdEFGhijKLMNopQRSt\"\n        }\n    }\n}"}],"_postman_id":"49f4283d-6abe-4000-a3f6-f8c2da121aa3"}],"id":"f83dfb98-8b88-437d-a443-a519e6363099","description":"<h2 id=\"so-what-is-a-webhook\">So, <a href=\"https://www.socketlabs.com/blog/what-is-a-webhook/\">what is a webhook?</a></h2>\n<p>Rather than using an API to request and pull your message data, a webhook is a programmatic way to receive instant notifications pushed directly to your application.</p>\n<h2 id=\"getting-started-with-event-webhooks\">Getting Started with Event Webhooks</h2>\n<ul>\n<li><a href=\"https://help.socketlabs.com/docs/event-webhooks-authentication-and-access\">Authentication and Access</a></li>\n<li><a href=\"https://help.socketlabs.com/docs/event-webhooks-events\">Events</a></li>\n<li><a href=\"https://help.socketlabs.com/docs/event-webhooks-data-attributes\">Data Attributes</a></li>\n</ul>\n<p>Note: The following examples are used for setting up and testing your webhook endpoint. Please use the links in the Getting Started section for more information on the webhook events that we will send.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a48e116e-6bc6-4710-a832-59e51a372729","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f9af3ae9-53c7-4f82-9d3a-7bc1bcb5911b","type":"text/javascript","exec":[""]}}],"_postman_id":"f83dfb98-8b88-437d-a443-a519e6363099"},{"name":"Failures","item":[{"name":"Gets the failures overview data","id":"f9e39a2e-3982-4b0b-8e39-45bbf448f1db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/failures/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","failures","overview"],"host":["/"],"query":[{"description":{"content":"<p>The start date in the format yyyy-MM-dd (required)</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>The end date in the format yyyy-MM-dd (required). Must be greater than or equal to the startDate</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"be272653-f49e-41cb-989e-c496b87efac3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/failures/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","servers",":serverId","reports","messages","failures","overview"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2022-12-22T00:00:00-05:00\",\n      \"sent\": 31924,\n      \"queued\": 33151,\n      \"delivered\": 30697,\n      \"hardFailures\": 567,\n      \"percentHardFailures\": 0.0178,\n      \"softFailures\": 660,\n      \"percentSoftFailures\": 0.0207,\n      \"totalFailures\": 1227,\n      \"percentTotalFailures\": 0.0384,\n      \"complaints\": 11781,\n      \"percentComplaints\": 0.369,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0,\n      \"data\": [\n        {\n          \"timestamp\": \"2022-12-22T01:00:00-05:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        },\n        {\n          \"timestamp\": \"2022-12-22T02:00:00-05:00\",\n          \"queued\": 560,\n          \"sent\": 537,\n          \"delivered\": 514,\n          \"percentDelivered\": 0.9572,\n          \"hardFailures\": 9,\n          \"percentHardFailures\": 0.0168,\n          \"softFailures\": 14,\n          \"percentSoftFailures\": 0.0261,\n          \"totalFailures\": 23,\n          \"percentTotalFailures\": 0.0428,\n          \"complaints\": 184,\n          \"percentComplaints\": 0.3426,\n          \"suppressed\": 0,\n          \"percentSuppressed\": 0\n        }\n      ],\n      \"filterCriteria\": \"Date Range = 2022-12-21 to 2022-12-22\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"f9e39a2e-3982-4b0b-8e39-45bbf448f1db"},{"name":"Get Failures Overview Aggregates","id":"6d628fe3-7a8f-4112-b84c-6d4aa9ce9ffd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/failures/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=0&sortField=sent&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","failures","aggregate"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Type of aggregate to retrieve</p>\n","type":"text/plain"},"key":"type","value":"FromDomain"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"sent"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"d8b6047f-0b95-43b3-9a57-b5b96d8ebf64","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/failures/aggregate?startDate=2022-01-01&endDate=2022-01-05&type=FromDomain&pageSize=5&pageNumber=1&sortField=sent&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","failures","aggregate"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"type","value":"FromDomain"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"sent"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"Unknown\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    },\n    {\n      \"type\": \"FromDomain\",\n      \"aggregate\": \"example.com\",\n      \"queued\": 560,\n      \"sent\": 537,\n      \"delivered\": 514,\n      \"hardFailures\": 9,\n      \"percentHardFailures\": 0.0168,\n      \"softFailures\": 14,\n      \"percentSoftFailures\": 0.0261,\n      \"totalFailures\": 23,\n      \"percentTotalFailures\": 0.0428,\n      \"complaints\": 184,\n      \"percentComplaints\": 0.3426,\n      \"suppressed\": 0,\n      \"percentSuppressed\": 0\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"6d628fe3-7a8f-4112-b84c-6d4aa9ce9ffd"},{"name":"Gets list of messages with details","id":"6b8fc484-1851-42b6-bb64-d4f79433dc34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/failures/detail?startDate=2022-01-14&endDate=2022-01-14&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","failures","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-14"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-14"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"to"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"86fb63b8-ac15-4cce-b5a5-567f8e69d58c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/failures/detail?startDate=2022-01-14&endDate=2022-01-14&pageSize=5&pageNumber=1&sortField=to&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","failures","detail"],"query":[{"key":"startDate","value":"2022-01-14"},{"key":"endDate","value":"2022-01-14"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"to"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.8829281-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8829296-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"systemMessageId\": 638070048000001700,\n      \"queuedTime\": \"2022-12-22T17:05:59.8829341-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8829342-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"fromName\": \"\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"remoteIP\": \"1.1.1.1\",\n      \"mxRecord\": \"my-mx.example.com\",\n      \"mxRecordProvider\": \"Unknown\",\n      \"mxRecordProviderUnit\": \"Unknown\",\n      \"messageSize\": 70163,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"6b8fc484-1851-42b6-bb64-d4f79433dc34"}],"id":"e28ea8b9-1f03-42e7-b51c-a65084fbe7c5","_postman_id":"e28ea8b9-1f03-42e7-b51c-a65084fbe7c5","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Inbound","item":[{"name":"Get Inbound Parse Overview","id":"5deb00cb-7c0a-4b0c-bfce-b3b69aec6413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/inbound/overview?startDate=2022-01-01&endDate=2022-01-05","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","inbound","overview"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"fdeb9a38-d31e-4f6a-81b2-66e1839035c7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/inbound/overview?startDate=2022-01-01&endDate=2022-01-05","host":["/"],"path":["v2","servers",":serverId","reports","messages","inbound","overview"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"dateComputed\": \"2022-12-22T00:00:00-05:00\",\n      \"bytesUsed\": 11781,\n      \"inbound\": 567,\n      \"filterCriteria\": \"Date Range = 2022-12-21 to 2022-12-22\",\n      \"data\": [\n        {\n          \"timestamp\": \"2022-12-22T01:00:00-05:00\",\n          \"inbound\": 23,\n          \"bytesUsed\": 537\n        },\n        {\n          \"timestamp\": \"2022-12-22T02:00:00-05:00\",\n          \"inbound\": 23,\n          \"bytesUsed\": 537\n        }\n      ]\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"5deb00cb-7c0a-4b0c-bfce-b3b69aec6413"},{"name":"Get Inbound Parse Detail","id":"9293809e-1b2a-462f-a50c-0dea7f7eab8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/messages/inbound/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","messages","inbound","detail"],"host":["/"],"query":[{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-05"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"to"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"6fdb25c6-a36d-4acf-96fb-ab00b49ff2d8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/reports/messages/inbound/detail?startDate=2022-01-01&endDate=2022-01-05&pageSize=5&pageNumber=1&sortField=to&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","reports","messages","inbound","detail"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-05"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"to"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"to\": \"recipient@example.io\",\n      \"serverId\": 12345,\n      \"timeStamp\": \"2022-12-22T17:05:59.8892944-05:00\",\n      \"accountId\": 98765,\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"endpoint\": \"example.com\",\n      \"messageSize\": 70163,\n      \"remoteIP\": \"1.1.1.1\",\n      \"subject\": \"Lorem IPsum\"\n    },\n    {\n      \"to\": \"recipient@example.io\",\n      \"serverId\": 12345,\n      \"timeStamp\": \"2022-12-22T17:05:59.8892969-05:00\",\n      \"accountId\": 98765,\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"endpoint\": \"example.com\",\n      \"messageSize\": 70163,\n      \"remoteIP\": \"1.1.1.1\",\n      \"subject\": \"Lorem IPsum\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"9293809e-1b2a-462f-a50c-0dea7f7eab8e"}],"id":"4462f210-0456-4966-bd6a-26148819ac01","_postman_id":"4462f210-0456-4966-bd6a-26148819ac01","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Injection API Key Management (Legacy)","item":[{"name":"Get a legacy injection API key for the server","id":"6058138b-db74-4e71-836d-6c0533505f0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"f7db87d8-8a42-4b32-a478-3ed99862a4d1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/credentials/injection-api","host":["/"],"path":["v2","servers",":serverId","credentials","injection-api"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"serverId\": 12345,\n        \"apiKey\": \"abcdefghijklmnop1234567890\",\n        \"gateway\": \"https://inject-cx.socketlabs.com/api/v1/email\"\n    }\n}"}],"_postman_id":"6058138b-db74-4e71-836d-6c0533505f0d"},{"name":"Create a legacy injection API key for the server","id":"86e3034a-78e8-44b6-91de-d30a886976e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"c1d3fdb1-79c4-4db9-8598-c3677f6fd5be","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/credentials/injection-api","host":["/"],"path":["v2","servers",":serverId","credentials","injection-api"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"serverId\": 12345,\n        \"apiKey\": \"abcdefghijklmnop1234567890\",\n        \"gateway\": \"https://inject-cx.socketlabs.com/api/v1/email\"\n    }\n}"}],"_postman_id":"86e3034a-78e8-44b6-91de-d30a886976e8"},{"name":"Regenerate a  legacy injection API key for the server","id":"d6bdd3cc-598e-4b70-a300-b7f8ae93ccc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"6dfbd37a-01f2-42b0-b046-212ba9924b94","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/credentials/injection-api","host":["/"],"path":["v2","servers",":serverId","credentials","injection-api"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"serverId\": 12345,\n        \"apiKey\": \"abcdefghijklmnop1234567890\",\n        \"gateway\": \"https://inject-cx.socketlabs.com/api/v1/email\"\n    }\n}"}],"_postman_id":"d6bdd3cc-598e-4b70-a300-b7f8ae93ccc4"},{"name":"Delete a legacy injection API key for the server","id":"783b1013-0b0e-45db-b974-d07220f874de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/credentials/injection-api","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","injection-api"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"3993c0f2-c937-4461-a9bc-55efe223d92d","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/credentials/injection-api","host":["/"],"path":["v2","servers",":serverId","credentials","injection-api"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"783b1013-0b0e-45db-b974-d07220f874de"}],"id":"10cec11e-4dd3-4847-92dc-3dd462dc2a53","_postman_id":"10cec11e-4dd3-4847-92dc-3dd462dc2a53","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Recipient Search","item":[{"name":"Gets All Message for Recipient","id":"a7decfa0-062f-4673-a81b-205224884e71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/recipient-search?toEmailAddress=recipient@example.com&startDate=2022-01-01&endDate=2022-01-14&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","recipient-search"],"host":["/"],"query":[{"description":{"content":"<p>the email address to search</p>\n","type":"text/plain"},"key":"toEmailAddress","value":"recipient@example.com"},{"description":{"content":"<p>Starting date range to search</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>Ending date range to search</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-14"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"to"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"974fb3d6-892e-48c7-9a58-d01308531d43","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/v2/servers/:serverId/reports/recipient-search?toEmailAddress=recipient@example.com&startDate=2022-01-01&endDate=2022-01-14&pageSize=5&pageNumber=0&sortField=to&sortDirection=dsc","path":["v2","servers",":serverId","reports","recipient-search"],"query":[{"key":"toEmailAddress","value":"recipient@example.com"},{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-14"},{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"to"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"status\": \"Delivered\",\n      \"statusDate\": \"2022-12-22T17:05:59.897138-05:00\",\n      \"lastEventDate\": \"0001-01-01T00:00:00\",\n      \"lastEventType\": \"Opened\",\n      \"systemMessageId\": \"8DACE94E9D6EF24\",\n      \"queuedTime\": \"2022-12-22T17:05:59.8971398-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8971399-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"messageSize\": 70163,\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"status\": \"Delivered\",\n      \"statusDate\": \"2022-12-22T17:05:59.8971454-05:00\",\n      \"lastEventDate\": \"0001-01-01T00:00:00\",\n      \"lastEventType\": \"Opened\",\n      \"systemMessageId\": \"8DAD19CCC5B9A70\",\n      \"queuedTime\": \"2022-12-22T17:05:59.8971456-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8971457-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"messageSize\": 70163,\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"a7decfa0-062f-4673-a81b-205224884e71"},{"name":"Get Message Timeline","id":"3513a12e-6cea-4a36-8137-87449e1efbc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/reports/recipient-search/:systemMessageId?toEmailAddress=recipient@example.com","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","reports","recipient-search",":systemMessageId"],"host":["/"],"query":[{"key":"toEmailAddress","value":"recipient@example.com"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"123456789","key":"systemMessageId"}]}},"response":[{"id":"dd47ebd6-9755-4288-840a-43b9bb00841c","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/reports/recipient-search/:systemMessageId?toEmailAddress=recipient@example.com","host":["/"],"path":["v2","servers",":serverId","reports","recipient-search",":systemMessageId"],"query":[{"key":"toEmailAddress","value":"recipient@example.com"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"systemMessageId","value":"123456789","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"status\": \"Delivered\",\n      \"statusDate\": \"2022-12-22T17:05:59.8990291-05:00\",\n      \"lastEventDate\": \"0001-01-01T00:00:00\",\n      \"lastEventType\": \"Opened\",\n      \"systemMessageId\": \"8DACE94E9D6EF24\",\n      \"queuedTime\": \"2022-12-22T17:05:59.8990304-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8990305-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"messageSize\": 70163,\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    },\n    {\n      \"status\": \"Delivered\",\n      \"statusDate\": \"2022-12-22T17:05:59.8990343-05:00\",\n      \"lastEventDate\": \"0001-01-01T00:00:00\",\n      \"lastEventType\": \"Opened\",\n      \"systemMessageId\": \"8DAD19CCC5B9A70\",\n      \"queuedTime\": \"2022-12-22T17:05:59.8990345-05:00\",\n      \"sentTime\": \"2022-12-22T17:05:59.8990346-05:00\",\n      \"serverId\": 12345,\n      \"accountId\": 98765,\n      \"to\": \"recipient@example.io\",\n      \"toDomain\": \"example.io\",\n      \"from\": \"from@example.com\",\n      \"fromDomain\": \"example.com\",\n      \"mailingId\": \"my-example-gen-2022-12-22T00:00:00\",\n      \"customMessageId\": \"my-example\",\n      \"subject\": \"Lorem IPsum\",\n      \"messageSize\": 70163,\n      \"clickCount\": 1,\n      \"openCount\": 1,\n      \"customDkimDomain\": \"my-dkim.example.com\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"3513a12e-6cea-4a36-8137-87449e1efbc4"}],"id":"370408bd-01ec-4051-af08-88a46f98e90b","_postman_id":"370408bd-01ec-4051-af08-88a46f98e90b","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Sending Domain","item":[{"name":"Get All Sending Domains for Server","id":"b0022e6b-3f5b-4b87-98c0-bacff7633316","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/sending-domains?pageSize=10&pageNumber=0&sortField=domain&sortDirection=des","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sending-domains"],"host":["/"],"query":[{"key":"pageSize","value":"10"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"domain"},{"key":"sortDirection","value":"des"},{"disabled":true,"key":"filters","value":"domain=like:test"}],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"df8e1ce8-de64-4dc7-b7eb-9a728570ff51","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/sending-domains?pageSize=-6241228&pageNumber=-6241228&sortField=id anim aute laborum&sortDirection=<string>&filters=[object Object]&filters=[object Object]","host":["/"],"path":["v2","servers",":serverId","sending-domains"],"query":[{"key":"pageSize","value":"-6241228"},{"key":"pageNumber","value":"-6241228"},{"key":"sortField","value":"id anim aute laborum"},{"key":"sortDirection","value":"<string>"},{"key":"filters","value":"[object Object]"},{"key":"filters","value":"[object Object]"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"sendingDomain\": \"example.org\",\n            \"isRequired\": false,\n            \"isSandbox\": false,\n            \"verificationStatus\": \"NotVerified\",\n            \"authenticationStatus\": \"Unauthenticated\",\n            \"lastUpdate\": \"2022-09-28T19:44:57\",\n            \"createdOn\": \"2022-09-28T19:44:57\",\n            \"streamScore\": 100\n        },\n        {\n            \"sendingDomain\": \"example.com\",\n            \"isRequired\": false,\n            \"isSandbox\": false,\n            \"verificationStatus\": \"Complete\",\n            \"authenticationStatus\": \"Authenticated\",\n            \"dkimDomain\": {\n                \"type\": \"CNAME\",\n                \"domainName\": \"example.com\",\n                \"createdOn\": \"2022-10-20T21:57:12\",\n                \"lastUpdate\": \"2022-10-20T21:57:12\"\n            },\n            \"bounceDomain\": {\n                \"isDefault\": false,\n                \"domainName\": \"bounce.example.com\",\n                \"createdOn\": \"2023-03-09T20:00:24\",\n                \"lastUpdate\": \"2023-03-09T20:00:24\"\n            },\n            \"trackingDomain\": {\n                \"isDefault\": true,\n                \"domainName\": \"tracking.example.com\",\n                \"createdOn\": \"2023-01-27T21:41:15\",\n                \"lastUpdate\": \"2023-03-10T15:38:34Z\"\n            },\n            \"lastUpdate\": \"2023-01-27T21:41:17\",\n            \"createdOn\": \"2022-11-30T23:41:17\",\n            \"streamScore\": 0\n        }\n    ],\n    \"total\": 2\n}"}],"_postman_id":"b0022e6b-3f5b-4b87-98c0-bacff7633316"},{"name":"Get a Sending Domain for Server","id":"f8ed7164-abac-4db4-81b7-edf83d961504","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/sending-domains/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sending-domains",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The sending domain.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"1a2b8948-976f-482f-a74a-734224a05e8e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/sending-domains/:domain","host":["/"],"path":["v2","servers",":serverId","sending-domains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The sending domain."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"sendingDomain\": \"example.com\",\n        \"isRequired\": false,\n        \"isSandbox\": false,\n        \"verificationStatus\": \"Complete\",\n        \"authenticationStatus\": \"Authenticated\",\n        \"dkimDomain\": {\n            \"type\": \"CNAME\",\n            \"domainName\": \"example.com\",\n            \"createdOn\": \"2022-10-20T21:57:12\",\n            \"lastUpdate\": \"2022-10-20T21:57:12\"\n        },\n        \"bounceDomain\": {\n            \"isDefault\": false,\n            \"domainName\": \"bounce.example.com\",\n            \"createdOn\": \"2023-03-09T20:00:24\",\n            \"lastUpdate\": \"2023-03-09T20:00:24\"\n        },\n        \"trackingDomain\": {\n            \"isDefault\": true,\n            \"domainName\": \"tracking.example.com\",\n            \"createdOn\": \"2023-01-27T21:41:15\",\n            \"lastUpdate\": \"2023-03-10T15:38:34Z\"\n        },\n        \"lastUpdate\": \"2023-01-27T21:41:17\",\n        \"createdOn\": \"2022-11-30T23:41:17\",\n        \"streamScore\": 0\n    }\n}"}],"_postman_id":"f8ed7164-abac-4db4-81b7-edf83d961504"},{"name":"Add a Sending Domain for Server","id":"3e498b64-bd3b-43ba-9901-fff72aab7712","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/sending-domains","description":"<p>In order to add a new Sending Domain, the domain must have a valid MX record or A record.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sending-domains"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"0c84c5e1-ef44-4327-baf7-4caea6a5edcc","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/sending-domains","host":["/"],"path":["v2","servers",":serverId","sending-domains"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"sendingDomain\": \"example.com\",\n        \"isRequired\": false,\n        \"isSandbox\": false,\n        \"verificationStatus\": \"NotVerified\",\n        \"authenticationStatus\": \"Unauthenticated\",\n        \"lastUpdate\": \"2022-09-28T19:44:57\",\n        \"createdOn\": \"2022-09-28T19:44:57\",\n        \"streamScore\": 100\n    }\n}"}],"_postman_id":"3e498b64-bd3b-43ba-9901-fff72aab7712"},{"name":"Delete a Sending Domain for Server","id":"72209881-ebcd-4f5c-89e3-931ed7101129","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/sending-domains/:domain","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sending-domains",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The sending domain to be deleted.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"8752ad80-b86f-49e9-a5f7-97cfb64706ff","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/sending-domains/:domain","host":["/"],"path":["v2","servers",":serverId","sending-domains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The sending domain to be deleted."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"72209881-ebcd-4f5c-89e3-931ed7101129"}],"id":"84591755-80c5-4335-af2f-fab31b6cf84a","description":"<p>The Sending Domain endpoint allows you to add or delete Sending Domains for your server. Additionally, you can get a list of all Sending Domain entries for your server or query for a single domain.</p>\n<h2 id=\"about-sending-domains\">About Sending Domains</h2>\n<h3 id=\"what-is-a-sending-domain\">What is a Sending Domain?</h3>\n<p>This security feature allows users to provide specific email addresses and/or domains that are permitted in the MAIL FROM SMTP protocol command issued during the mail relay process. Once a single domain or address is specified, all other domains and addresses not listed in the whitelist will be rejected at the SMTP protocol level.</p>\n<p>In order to add a new Sending Domain, the domain must have a valid MX record or A record.</p>\n<p>For more information about Sending Domains, please see our <a href=\"https://help.socketlabs.com/docs/sending-domains-whitelist\">Help Center</a>.</p>\n","_postman_id":"84591755-80c5-4335-af2f-fab31b6cf84a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"SMTP credentials","item":[{"name":"Get SMTP Credentials for the Subaccount","id":"95c9058e-bfdb-43cd-b7a5-8a5935927509","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/credentials/smtp","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","smtp"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"90981f37-89dc-4490-b4d7-06387e76ddde","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/credentials/smtp","host":["/"],"path":["v2","servers",":serverId","credentials","smtp"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"username\": \"server12345\",\n        \"password\": \"xyzabc1233456\",\n        \"gateway\": \"smtp.socketlabs.com\"\n    }\n}"}],"_postman_id":"95c9058e-bfdb-43cd-b7a5-8a5935927509"},{"name":"Update SMTP Password for the Subaccount","id":"ebc50d0d-fb93-4f31-a18c-1d8c13a000c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"password\": \"nostrud mollit dolor ea veniam\"\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/credentials/smtp","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","credentials","smtp"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"10f2fea8-3dac-4673-aa64-2f6a16caf323","name":"Created","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"password\": \"nostrud mollit dolor ea veniam\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/credentials/smtp","host":["/"],"path":["v2","servers",":serverId","credentials","smtp"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"username\": \"server12345\",\n        \"password\": \"xyzabc1233456\",\n        \"gateway\": \"smtp.socketlabs.com\"\n    }\n}"}],"_postman_id":"ebc50d0d-fb93-4f31-a18c-1d8c13a000c8"}],"id":"68520104-83ac-4e82-ace1-c216adcdf1f5","_postman_id":"68520104-83ac-4e82-ace1-c216adcdf1f5","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"StreamScore","item":[{"name":"Get the StreamScore for the requested Server","id":"885ae6b9-373e-4297-809b-bf62c3e99033","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/streamscore?requestDate=2022-01-14","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","streamscore"],"host":["/"],"query":[{"description":{"content":"<p>the requested date</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-14"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"2fec7ba9-c44a-45c0-8537-285ab3ec9eaf","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/streamscore?requestDate=2022-01-14","host":["/"],"path":["v2","servers",":serverId","streamscore"],"query":[{"key":"requestDate","value":"2022-01-14"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"score\": 80,\n    \"woWChange\": 10,\n    \"doDChange\": 2,\n    \"data\": [\n      {\n        \"score\": 80,\n        \"dateComputed\": \"2022-09-07T00:00:00.000Z\",\n        \"detail\": {\n          \"audienceScore\": 80,\n          \"engagementScore\": 85,\n          \"reputationScore\": 82,\n          \"authenticationStatus\": \"Authenticated\",\n          \"hasDkimRecord\": true,\n          \"hasSpfRecord\": true\n        }\n      },\n      {\n        \"score\": 81,\n        \"dateComputed\": \"2022-09-06T00:00:00.000Z\",\n        \"detail\": {\n          \"audienceScore\": 81,\n          \"engagementScore\": 85,\n          \"reputationScore\": 82,\n          \"authenticationStatus\": \"Authenticated\",\n          \"hasDkimRecord\": true,\n          \"hasSpfRecord\": true        \n        }\n      }\n    ],\n    \"todaysAnalytics\": {\n      \"dateComputed\": \"2022-09-07T00:00:00.000Z\",\n      \"averageScore\": 80,\n      \"highScore\": 81,\n      \"lowScore\": 80,\n      \"totalProcessed\": 1000,\n      \"percentProcessed\": 100\n    },\n    \"previousAnalytics\": {\n      \"dateComputed\": \"2022-09-01T00:00:00.000Z\",\n      \"averageScore\": 80,\n      \"highScore\": 81,\n      \"lowScore\": 80,\n      \"totalProcessed\": 1000,\n      \"percentProcessed\": 100\n    }\n  }\n}"}],"_postman_id":"885ae6b9-373e-4297-809b-bf62c3e99033"},{"name":"Get StreamScores for all Sending Domains.","id":"8d264924-1d23-4e25-956a-358adf6a7cf1","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/streamscore/domains?requestDate=2022-01-14&pageSize=10&pageNumber=0&sortField=score&sortDirection=asc","description":"<p>Requires access to StreamScore Pro</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","streamscore","domains"],"host":["/"],"query":[{"description":{"content":"<p>the requested date</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-14"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"score"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"asc"}],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"1e3f5392-c6b9-42ad-8e9f-21bb3b7a52c9","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/streamscore/domains?requestDate=2022-01-14&pageSize=10&pageNumber=0&sortField=score&sortDirection=asc","host":["/"],"path":["v2","servers",":serverId","streamscore","domains"],"query":[{"key":"requestDate","value":"2022-01-14"},{"key":"pageSize","value":"10"},{"key":"pageNumber","value":"0"},{"key":"sortField","value":"score"},{"key":"sortDirection","value":"asc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"sendingDomain\": \"example.com\",\n    \"authenticationStatus\": \"PartialAuthenticated\",\n    \"hasDkimRecord\": false,\n    \"hasSpfRecord\": true,\n    \"score\": 80,\n    \"woWChange\": -2,\n    \"doDChange\": 1,\n    \"totalProcessed\": 1000,\n    \"percentProcessed\": 99\n  }\n}"}],"_postman_id":"8d264924-1d23-4e25-956a-358adf6a7cf1"},{"name":"Get the StreamScore for a specific Sending Domain","id":"51abea52-ede6-4dc3-a892-a466bafd285e","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/streamscore/sendingdomain?sendingDomain=example.com&requestDate=2022-01-14","description":"<p>Requires access to StreamScore Pro</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","streamscore","sendingdomain"],"host":["/"],"query":[{"key":"sendingDomain","value":"example.com"},{"description":{"content":"<p>the requested date</p>\n","type":"text/plain"},"key":"requestDate","value":"2022-01-14"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"f583c2a3-79b4-4165-aad1-7d90f5d18d08","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/streamscore/sendingdomain?sendingDomain=example.com&requestDate=2022-01-14","host":["/"],"path":["v2","servers",":serverId","streamscore","sendingdomain"],"query":[{"key":"sendingDomain","value":"example.com"},{"key":"requestDate","value":"2022-01-14"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"sendingDomain\": \"example.com\",\n    \"score\": 80,\n    \"woWChange\": 10,\n    \"doDChange\": 2,\n    \"data\": [\n      {\n        \"score\": 80,\n        \"dateComputed\": \"2022-09-07T00:00:00.000Z\",\n        \"detail\": {\n          \"audienceScore\": 80,\n          \"engagementScore\": 85,\n          \"reputationScore\": 82,\n          \"authenticationStatus\": \"Authenticated\",\n          \"hasDkimRecord\": true,\n          \"hasSpfRecord\": true\n        }\n      },\n      {\n        \"score\": 81,\n        \"dateComputed\": \"2022-09-06T00:00:00.000Z\",\n        \"detail\": {\n          \"audienceScore\": 81,\n          \"engagementScore\": 85,\n          \"reputationScore\": 82,\n          \"authenticationStatus\": \"Authenticated\",\n          \"hasDkimRecord\": true,\n          \"hasSpfRecord\": true        \n        }\n      }\n    ],\n    \"todaysAnalytics\": {\n      \"dateComputed\": \"2022-09-07T00:00:00.000Z\",\n      \"averageScore\": 80,\n      \"highScore\": 81,\n      \"lowScore\": 80,\n      \"totalProcessed\": 1000,\n      \"percentProcessed\": 100\n    },\n    \"previousAnalytics\": {\n      \"dateComputed\": \"2022-09-01T00:00:00.000Z\",\n      \"averageScore\": 80,\n      \"highScore\": 81,\n      \"lowScore\": 80,\n      \"totalProcessed\": 1000,\n      \"percentProcessed\": 100\n    }\n  }\n}"}],"_postman_id":"51abea52-ede6-4dc3-a892-a466bafd285e"}],"id":"d5d3d212-731a-48ec-81bf-4906190fcdad","description":"<h3 id=\"what-is-streamscore\"><strong>What is StreamScore?</strong></h3>\n<p>StreamScore is SocketLabs’ email performance monitoring and reporting tool that analyzes your email across numerous first and third-party data points to determine the overall health of your mail streams.</p>\n<p>If you are new to email delivery, think of StreamScore almost like a credit score. There are so many factors that go into your email deliverability that determine whether or not your email makes it to the inbox. And for new (or sometimes experienced) senders, knowing or monitoring all of these factors can be overwhelming. StreamScore uses built-in intelligence to show you how you are performing, areas that need work, and best-practice guidance to help get you or your senders back on track.</p>\n<p>The report is designed to help you find new opportunities for improvement by providing scoring and insight into four key components of your email program: audience, engagement, reputation, and authentication. The score is based on a scale of 0-100, 0 being the worst and 100 being the best.</p>\n<h2 id=\"streamscorelite-vs-streamscorepro\"><strong>StreamScoreLite Vs. StreamScorePro</strong></h2>\n<p>SocketLabs customers, depending on their plan level, have access to two versions of StreamSocore.</p>\n<p>*Note that many of the features above reference the qualities of StreamScorePro.</p>\n<p><strong>StreamScoreLite</strong> is provided to Free and Basic plans. It includes a single, comprehensive score and a non-interactive graphic visual of your StreamScore history.</p>\n<p><strong>StreamScorePro</strong> is available at Professional and higher plan levels. It offers a comprehensive StreamScore, a fully interactive graph of the your historical data, four StreamScore component scores (with best-practice guidance), and the ability to get a unique StreamScore for each domain you send on or on behalf of.</p>\n<p><a href=\"https://www.socketlabs.com/blog/streamscore-email-deliverability-solution/\">Want to learn more about StreamScore</a>?</p>\n","_postman_id":"d5d3d212-731a-48ec-81bf-4906190fcdad","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Suppression List","item":[{"name":"Gets a list of addresses based on provided search terms","id":"221eaad2-9c8e-4a5f-a248-6d91331ee2cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/suppressions/search?pageSize=5&pageNumber=0&sortField=emailAddress&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","suppressions","search"],"host":["/"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"pageSize","value":"5"},{"description":{"content":"<p>Number of pages to off-set</p>\n","type":"text/plain"},"key":"pageNumber","value":"0"},{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"emailAddress"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"},{"disabled":true,"description":{"content":"<p>Optional column filters</p>\n","type":"text/plain"},"key":"filters","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"a00ed229-6ea5-4480-9fa9-31a34086b99f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/suppressions/search?pageSize=5&pageNumber=1&sortField=emailAddress&sortDirection=dsc","host":["/"],"path":["v2","servers",":serverId","suppressions","search"],"query":[{"key":"pageSize","value":"5"},{"key":"pageNumber","value":"1"},{"key":"sortField","value":"emailAddress"},{"key":"sortDirection","value":"dsc"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n        \"id\": 101,\n        \"serverId\": 12345,\n        \"emailAddress\": \"suppressed@example.com\",\n        \"created\": \"2020-03-04T21:54:44\",\n        \"lastUpdate\": \"2020-03-04T21:54:44\",\n        \"suppressReason\": \"Customer Added\",\n        \"statusId\": \"CustomerRequest\"\n    },\n    {\n        \"id\": 102,\n        \"serverId\": 12345,\n        \"emailAddress\": \"recipient@example.com\",\n        \"created\": \"2022-07-22T16:57:04\",\n        \"lastUpdate\": \"2022-07-22T16:57:04\",\n        \"suppressReason\": \"Customer Added\",\n        \"statusId\": \"CustomerRequest\"\n    }\n  ],\n  \"total\": 2\n}"}],"_postman_id":"221eaad2-9c8e-4a5f-a248-6d91331ee2cb"},{"name":"download a list of addresses based on provided search terms from the subaccount suppression list","id":"bbd69104-ba82-457a-8a24-0ef9edf2736a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/suppressions/download?sortField=suppressionLastUpdate&sortDirection=dsc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","suppressions","download"],"host":["/"],"query":[{"description":{"content":"<p>Field used to sort the results</p>\n","type":"text/plain"},"key":"sortField","value":"suppressionLastUpdate"},{"description":{"content":"<p>Direction used in sorting</p>\n","type":"text/plain"},"key":"sortDirection","value":"dsc"}],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"ac2ca554-f128-47c2-8d74-2f67c04a9a85","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/server/:serverId/suppressions/download?sortField=suppressionLastUpdate&sortDirection=dsc","host":["/"],"path":["v2","server",":serverId","suppressions","download"],"query":[{"key":"sortField","value":"suppressionLastUpdate","description":"Field used to sort the results"},{"key":"sortDirection","value":"dsc","description":"Direction used in sorting"}],"variable":[{"key":"serverId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"id,serverId,emailAddress,created,lastUpdate,suppressReason,suppressionLastUpdate,suppressionStatus,statusId\r\n1,12345,\"test@example.com\",\"2013-03-24T13:34:31.709Z\",\"1967-04-23T15:21:49.144Z\",\"Lorem ipsum\",\"2003-11-05T15:57:05.030Z\",\"Suppressed\",\"Active\""}],"_postman_id":"bbd69104-ba82-457a-8a24-0ef9edf2736a"},{"name":"Gets addresses based on provided search terms from the subaccount suppression list","id":"477528bc-9c40-4033-86e5-a11782714df4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/suppressions?emailAddress=recipient@example.com","description":"<p>The GET method allows you to pass in a serverId and email address, and queries to see if the address exists on your server’s Suppression List.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","suppressions"],"host":["/"],"query":[{"key":"emailAddress","value":"recipient@example.com"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"a0c48526-e78d-48c4-bb17-e5a9e5832280","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v2/servers/:serverId/suppressions?emailAddress=sunt","host":["/"],"path":["v2","servers",":serverId","suppressions"],"query":[{"key":"emailAddress","value":"sunt"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 103,\n    \"serverId\": 12345,\n    \"emailAddress\": \"suppressed@example.com\",\n    \"created\": \"2020-03-04T21:54:44\",\n    \"lastUpdate\": \"2020-03-04T21:54:44\",\n    \"suppressReason\": \"Customer Added\",\n    \"statusId\": \"CustomerRequest\"\n  }\n}"}],"_postman_id":"477528bc-9c40-4033-86e5-a11782714df4"},{"name":"Adds an address to the suppression list","id":"86061562-63b8-4d82-8cb6-299db57b51d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"recipient@example.com\",\n  \"notes\": \"my suppression notes\"\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/suppressions","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","suppressions"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"82e3d4ce-c68a-47b7-894a-7f112d3938de","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"aliquip \",\n  \"notes\": \"dolore proident i\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/suppressions","host":["/"],"path":["v2","servers",":serverId","suppressions"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 54562362,\n    \"serverId\": 25803165,\n    \"emailAddress\": \"aute consequat sint nostrud\",\n    \"created\": \"1995-11-11T07:50:55.731Z\",\n    \"lastUpdate\": \"1971-07-12T08:50:37.006Z\",\n    \"suppressReason\": \"sit anim o\",\n    \"suppressionLastUpdate\": \"1963-07-13T05:17:21.170Z\",\n    \"suppressionStatus\": \"Default\",\n    \"statusId\": \"Bounce\",\n    \"domain\": \"nulla enim\",\n    \"result\": \"AddressAlreadySuppressed\"\n  }\n}"}],"_postman_id":"86061562-63b8-4d82-8cb6-299db57b51d0"},{"name":"Removes address from suppression list","id":"4bbacaf9-e16e-42fb-92b5-e3e2d60135ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v2/servers/:serverId/suppressions/remove?emailAddress=test@example.com","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","suppressions","remove"],"host":["/"],"query":[{"description":{"content":"<p>Email Address to search by</p>\n","type":"text/plain"},"key":"emailAddress","value":"test@example.com"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"e72d313f-dd6c-481f-8d74-9a279f2a37f3","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"//v2/servers/:serverId/suppressions/remove?emailAddress=test@example.com","host":["/"],"path":["v2","servers",":serverId","suppressions","remove"],"query":[{"key":"emailAddress","value":"test@example.com"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4bbacaf9-e16e-42fb-92b5-e3e2d60135ec"},{"name":"Bulk Add a list of addresss to the suppression list","id":"0c63e7c6-e282-45c1-88b0-e8fbd922af82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"suppressionRequests\": [\n    {\n      \"emailAddress\": \"test@example.com\",\n      \"notes\": \"sit elit\"\n    },\n    {\n      \"emailAddress\": \"test@example.org\",\n      \"notes\": \"sunt minim pariatur\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/suppressions/bulk","description":"<p>Max of 100 email addresses per call.</p>\n<p>NOTE: Available only to Service-Provider type Accounts</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","suppressions","bulk"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"b5cbc1be-820d-4390-974a-fe810c4e9427","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"suppressionRequests\": [\n    {\n      \"emailAddress\": \"test@example.com\",\n      \"notes\": \"sit elit\"\n    },\n    {\n      \"emailAddress\": \"test@example.org\",\n      \"notes\": \"sunt minim pariatur\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/suppressions/bulk","host":["/"],"path":["v2","servers",":serverId","suppressions","bulk"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"emailAddress\": \"test@example.com\",\n            \"result\": \"Success\"\n        },\n        {\n            \"emailAddress\": \"test@example.org\",\n            \"result\": \"Success\"\n        }\n    ],\n    \"total\": 2\n}"}],"_postman_id":"0c63e7c6-e282-45c1-88b0-e8fbd922af82"},{"name":"Bulk removal of email addresses from suppression.","id":"e84ff621-5b29-42a5-aa9d-0ad51b087f43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"test@example.com\",\n  \"test@example.org\"\n]","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/suppressions/bulk-remove","description":"<p>Max of 100 email addresses per call.</p>\n<p>NOTE: Available only to Service-Provider type Accounts</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","suppressions","bulk-remove"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"a7f3cc13-0cb4-4b64-8380-84a386076d8a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"[\n  \"test@example.com\",\n  \"test@example.org\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/suppressions/bulk-remove","host":["/"],"path":["v2","servers",":serverId","suppressions","bulk-remove"],"variable":[{"key":"serverId","value":"12345","description":"(Required) "}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"recipient@example.com\",\n      \"result\": \"AddressAlreadyExists\"\n    },\n    {\n      \"serverId\": 12345,\n      \"emailAddress\": \"person@example.com\",\n      \"result\": \"AddressNotFound\"\n    }\n  ]\n}"}],"_postman_id":"e84ff621-5b29-42a5-aa9d-0ad51b087f43"}],"id":"a5426bf3-16e5-428b-a2e4-24a1a235ded4","description":"<p>The Suppression API is a REST API that allows you to programmatically search, add, or remove addresses from your server’s Suppression List.</p>\n<h2 id=\"best-practices\">Best Practices</h2>\n<p>The Suppression API allows your application(s) to programatically query your Suppression List, adding or removing addresses as needed. This makes it easy to check and see if an address is on your server's Suppression List, along with the specific reason assuming it exists. If you determine it is a valid address, you can use the DELETE method to remove the address from your Suppression List.</p>\n<p>You can also add addresses to the Suppression List using the POST method. This is useful if someone indicates that they would like to unsubscribe from your mailings, either by clicking a link or filling out an online unsubscribe form.</p>\n<p>The Suppression API is NOT intended to be used for routine purging of your Suppression List. If this sort of abuse is detected, usage of the Suppression API may be revoked.</p>\n","_postman_id":"a5426bf3-16e5-428b-a2e4-24a1a235ded4","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Server Sender Queue","item":[{"name":"Sender Queue Count","id":"020c3f4f-1003-48e8-8145-8c0450ffe322","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/servers/:serverId/sender/queued/count","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sender","queued","count"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"7392c5ea-dcc7-4764-810d-80b4a558f5ed","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/servers/:serverId/sender/queued/count","host":["/"],"path":["v2","servers",":serverId","sender","queued","count"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": 0\r\n}"}],"_postman_id":"020c3f4f-1003-48e8-8145-8c0450ffe322"},{"name":"Sender Queue Status","id":"7c3baaf6-0100-4378-8576-f3028cb32064","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/servers/:serverId/sender/queued/status","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sender","queued","status"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"db5e1e63-93c6-4726-ae11-cc32445cbe00","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/servers/:serverId/sender/queued/status","host":["/"],"path":["v2","servers",":serverId","sender","queued","status"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": \"QueueAvailable\"\r\n}"}],"_postman_id":"7c3baaf6-0100-4378-8576-f3028cb32064"},{"name":"Sender Queue Details","id":"f1e3dc82-0297-45f8-9b08-2fb069e2d149","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/servers/:serverId/sender/queued","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sender","queued"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"7de2ba52-9845-4671-a45f-506e0321a571","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/servers/:serverId/sender/queued","host":["/"],"path":["v2","servers",":serverId","sender","queued"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": [\r\n        {\r\n            \"domain\": \"example.com\",\r\n            \"count\": 2,\r\n            \"secondsInQueue\": 4\r\n        },\r\n        {\r\n            \"domain\": \"sample.org\",\r\n            \"count\": 1,\r\n            \"secondsInQueue\": 4\r\n        }\r\n    ],\r\n    \"total\": 2\r\n}"}],"_postman_id":"f1e3dc82-0297-45f8-9b08-2fb069e2d149"},{"name":"Pause Sender Queue","id":"f1a1abdf-e12f-426d-b88a-a60b3f88313f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"//v2/servers/:serverId/sender/queued/pause","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","sender","queued","pause"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"ed426662-9311-4d85-9852-262a4ea9724a","name":"Success","originalRequest":{"method":"POST","header":[],"url":{"raw":"//v2/servers/:serverId/sender/queued/pause","host":["/"],"path":["v2","servers",":serverId","sender","queued","pause"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": \"QueuePaused\"\r\n}"}],"_postman_id":"f1a1abdf-e12f-426d-b88a-a60b3f88313f"},{"name":"Resume Sender Queue","id":"9d7b9d7b-1ede-4ee6-9b4d-0de6bb02d0b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"//v2/server/:serverId/sender/queued/resume","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","server",":serverId","sender","queued","resume"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"cec26002-5a1d-49e7-a671-cec51b17dbf2","name":"Success","originalRequest":{"method":"POST","header":[],"url":{"raw":"//v2/server/:serverId/sender/queued/resume","host":["/"],"path":["v2","server",":serverId","sender","queued","resume"],"variable":[{"key":"serverId","value":"12345"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": \"QueueAvailable\"\r\n}"}],"_postman_id":"9d7b9d7b-1ede-4ee6-9b4d-0de6bb02d0b7"},{"name":"Purge Sender Queue","id":"cb494145-6839-4ce8-b828-7f18239e2ca0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"//v2/server/:serverId/sender/queued/purge","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","server",":serverId","sender","queued","purge"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"38113088-6708-4f4a-abf0-e9785c8c1d77","name":"Success","originalRequest":{"method":"POST","header":[],"url":{"raw":"//v2/server/:serverId/sender/queued/purge","host":["/"],"path":["v2","server",":serverId","sender","queued","purge"],"variable":[{"key":"serverId","value":"12345"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": \"PurgeRequestAccepted\"\r\n}"}],"_postman_id":"cb494145-6839-4ce8-b828-7f18239e2ca0"}],"id":"d2aa89c9-f9a2-4c0e-95e4-63ee9daee8c8","description":"<h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>All requests against the Sender Queued Api are limited to 30 requests within 60 seconds. Requests made in excess to this limit will result in an error.</p>\n","_postman_id":"d2aa89c9-f9a2-4c0e-95e4-63ee9daee8c8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Inbound Webhook","item":[{"name":"Inbound Webhook Server","id":"f255aba9-8948-495d-b240-cb3e5caebd0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/servers/:serverId/inbound-webhook","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","inbound-webhook"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"86751640-e510-4c73-9952-195500919da7","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/servers/:serverId/inbound-webhook","host":["/"],"path":["v2","servers",":serverId","inbound-webhook"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"destination\": \"https://inbound-12345.example.com\",\n        \"secretKey\": \"abcdefghij1234567890\",\n        \"addresses\": [\n            {\n                \"source\": \"test@inbound.example.com\"\n            },\n            {\n                \"source\": \"inbound.example.org\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f255aba9-8948-495d-b240-cb3e5caebd0d"},{"name":"Generate Server Validation Key","id":"4efbc4ca-04c6-41de-97ba-560e63a96f43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/servers/:serverId/inbound-webhook/generate-secret-key","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","inbound-webhook","generate-secret-key"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"83a5a735-dfbc-4ae0-b98a-14c32a2fdca8","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/servers/:serverId/inbound-webhook/generate-secret-key","host":["/"],"path":["v2","servers",":serverId","inbound-webhook","generate-secret-key"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"secretKey\": \"abcdefghij1234567890\"\n    }\n}"}],"_postman_id":"4efbc4ca-04c6-41de-97ba-560e63a96f43"},{"name":"Add Inbound Webhook Server","id":"591b7204-3b01-4e37-a33d-d63029ef3bd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"destination\": \"https://inbound-12345.example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/inbound-webhook","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","inbound-webhook"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"31909271-63ed-4461-8009-f93fbe9c1d65","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"destination\": \"https://inbound-12345.example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/inbound-webhook","host":["/"],"path":["v2","servers",":serverId","inbound-webhook"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"destination\": \"https://inbound-12345.example.com\",\n        \"secretKey\": \"abcdefghij1234567890\",\n        \"addresses\": []\n    }\n}"}],"_postman_id":"591b7204-3b01-4e37-a33d-d63029ef3bd2"},{"name":"Add Inbound Webhook Address","id":"b4c3fb73-f31c-41cc-9504-9673504313d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/inbound-webhook/address","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","inbound-webhook","address"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"494c3b7d-d90f-4d63-895c-c3864b0949d8","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/inbound-webhook/address","host":["/"],"path":["v2","servers",":serverId","inbound-webhook","address"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"source\": \"test@example.com\"\n    }\n}"}],"_postman_id":"b4c3fb73-f31c-41cc-9504-9673504313d1"},{"name":"Delete Inbound Webhook Server","id":"a3b53523-38b9-4641-9ebb-4533b8a373d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@dalrius.xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/inbound-webhook/address","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","inbound-webhook","address"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"69e5c520-35e3-4827-8baf-11ff45d634ae","name":"Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@dalrius.xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/inbound-webhook","host":["/"],"path":["v2","servers",":serverId","inbound-webhook"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a3b53523-38b9-4641-9ebb-4533b8a373d0"},{"name":"Delete Inbound Webhook Address","id":"a75eaeeb-853f-4c58-beb7-d60f2c122688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"//v2/servers/:serverId/inbound-webhook/address","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverId","inbound-webhook","address"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"60205791-8cb1-4e67-afb8-61243921a0fa","name":"Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"emailAddress\" : \"test@example.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v2/servers/:serverId/inbound-webhook/address","host":["/"],"path":["v2","servers",":serverId","inbound-webhook","address"],"variable":[{"key":"serverId","value":"12345"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a75eaeeb-853f-4c58-beb7-d60f2c122688"}],"id":"285db082-0c97-4987-905e-d27b1a30fa5e","_postman_id":"285db082-0c97-4987-905e-d27b1a30fa5e","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}},{"name":"Server Subscription","item":[{"name":"Get Usage Summary","id":"6ec0508a-0770-4636-a9ea-c0c9bb3a2109","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//v2/servers/:serverid/subscription/usage-summary","description":"<p>Gets the usage summary for the specific server</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}},"urlObject":{"path":["v2","servers",":serverid","subscription","usage-summary"],"host":["/"],"query":[],"variable":[{"type":"any","value":"12345","key":"serverid"}]}},"response":[{"id":"209a3ed7-5017-489c-a3ab-550e62e8a576","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"//v2/servers/:serverid/subscription/usage-summary","host":["/"],"path":["v2","servers",":serverid","subscription","usage-summary"],"variable":[{"key":"serverid","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n   \"data\": {\n        \"billingPeriodStartDateTime\": \"2024-04-17T00:00:00\",\n        \"billingPeriodEndDateTime\": \"2024-05-17T00:00:00\",\n        \"hasBillingRecord\": true,\n        \"plan\": {\n            \"planRefCode\": \"PLANCODE\",\n            \"planName\": \"PLANNAME\",\n            \"planCost\": 123.45,\n            \"isTrial\": false,\n            \"tierName\": \"TIERNAME\",\n            \"allowOverages\": true\n        },\n        \"usage\": {\n            \"messagesUsed\": 12345,\n            \"bandwidthUsedInBytes\": 1234567890,\n            \"messagesUsedPercent\": 0,\n            \"bandwidthUsedPercent\": 0\n        },\n        \"allowance\": {\n            \"messageAllowance\": 1000000,\n            \"bandwidthAllowanceInBytes\": 10000000000,\n            \"messageOverageCost\": 0.00,\n            \"bandwidthOverageCost\": 0.00,\n            \"discountPercentage\": 0.00\n        },\n        \"planType\": 0\n    }\n}"}],"_postman_id":"6ec0508a-0770-4636-a9ea-c0c9bb3a2109"}],"id":"f043917b-e460-4b4a-ab1f-61a07249fbfd","_postman_id":"f043917b-e460-4b4a-ab1f-61a07249fbfd","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","name":"Version 2","type":"folder"}}}],"id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"9e9d74dd-fc93-499f-94be-095229038e4e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"154184bd-9cf5-4248-a6cb-ff0e6c4beddf","type":"text/javascript","exec":[""]}}],"_postman_id":"9f207520-adda-4ff1-bb37-aa49bdff55b5","description":""},{"name":"Legacy: Version 1","item":[{"name":"Inbound API","item":[{"name":"Validation","id":"36d6bede-cff1-4d4d-af1a-ba3f5f71a208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"/YOUR-API-ENDPOINT","description":"<h2 id=\"validation-request-body\">Validation Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Specifies the type of event. The value for this event is ‘Validation’.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ServerId</td>\n<td>string</td>\n<td>The server id for your SocketLabs server.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>SecretKey</td>\n<td>string</td>\n<td>The secret key as defined in the Control Panel.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e3ff0522-de1d-4050-ae10-4f231ad35656","id":"e3ff0522-de1d-4050-ae10-4f231ad35656","name":"Inbound API","type":"folder"}},"urlObject":{"path":["YOUR-API-ENDPOINT"],"query":[],"variable":[]}},"response":[{"id":"aff2f78d-7d58-4108-a35c-a253aae5a270","name":"Validation","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"Validation\",\r\n    \"serverId\": 12345,\r\n    \"secretKey\": \"abcdefg12345678\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/YOUR-API-ENDPOINT"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"Validation\",\n    \"serverId\": 12345,\n    \"secretKey\": \"abcdefg12345678\"\n}"}],"_postman_id":"36d6bede-cff1-4d4d-af1a-ba3f5f71a208"},{"name":"Message","id":"5736d8ea-55a3-4638-a3bb-315eb8b68ccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"/YOUR-API-ENDPOINT","description":"<h3 id=\"request-body\">Request Body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ErrorLog</td>\n<td>string</td>\n<td>An explanation of why a message could not be parsed correctly if that message is malformed. Otherwise this entry is null.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>SecretKey</td>\n<td>string</td>\n<td>A key provided by the On-Demand email API service when the Inbound feature is configured; the secret key is included in every Inbound message in order for the receiving endpoint to confirm that all JSON blobs it receives originated from the On-Demand network.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>InboundIPAddress</td>\n<td>string</td>\n<td>The IP address of the system that relayed the email message to the On-Demand server processing this message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>InboundMailFrom</td>\n<td>string</td>\n<td>The SMTP ‘MAIL FROM’ value used to send this message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>InboundRcptTo</td>\n<td>string</td>\n<td>The SMTP ‘RCPT TO’ value used to denote the recipient address.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>SpamDetails</td>\n<td>string</td>\n<td>The details behind the spam classification represented by a SpamScore.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>SpamScore</td>\n<td>integer</td>\n<td>The score assigned by SocketLabs’s spam scanning technology, indicating the likelihood that a message is spam.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Messages</td>\n<td>Message[] (Array)</td>\n<td>A single email message and all of it's components</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"message\">Message</h3>\n<p>A single email message and all of it's components</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>To</td>\n<td>Email[] (Array)</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the recipients of an email message.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>From</td>\n<td>Email</td>\n<td>The EmailAddress/FriendlyName value pair for the sender of the message.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>Subject</td>\n<td>string</td>\n<td>The subject line of the email address.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>TextBody</td>\n<td>string</td>\n<td>Text portion of the body of the email, if available.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>HtmlBody</td>\n<td>string</td>\n<td>Body of HTML of the parsed message, if available.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MessageId</td>\n<td>string</td>\n<td>SocketLabs header used to tag individual messages.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MailingId</td>\n<td>string</td>\n<td>SocketLabs header used to track batches of messages.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>TextCharSet</td>\n<td>string</td>\n<td>The character set used to encode the TextBody portion of the message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>HTMLCharSet</td>\n<td>string</td>\n<td>The character set used to encode the HtmlBody portion of the message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CustomHeaders</td>\n<td>CustomHeader (Array)</td>\n<td>An array of header field data stored in Name/Value pairs.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CC</td>\n<td>Email[] (Array)</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the CC’d recipients of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>BCC</td>\n<td>Email[] (Array)</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the BCC’d recipients of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Attachments</td>\n<td>Attachment[] (Array)</td>\n<td>An array of attached content blobs, such as images, documents, and other binary files.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CustomHeaders</td>\n<td>CustomHeader[] (Array)</td>\n<td>An array of header field data stored in Name/Value pairs.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>EmbeddedMedia</td>\n<td>string or EmbeddedMedia[] (Array)</td>\n<td></td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"email\">Email</h3>\n<p>An array of recipient EmailAddress/FriendlyName value pairs.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BCC</td>\n<td>array[object]{BCC}</td>\n<td></td>\n<td>optional</td>\n</tr>\n<tr>\n<td>emailAddress</td>\n<td>string</td>\n<td>An email address string such as ‘<a href=\"mailto:foo@example.com\">foo@example.com</a>’.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>friendlyName</td>\n<td>string</td>\n<td>An alias for an email address.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"attachment\">Attachment</h3>\n<p>An array of attached content blobs, such as images, documents, and other binary files.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>The name of the attachment file.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>string</td>\n<td>The BASE64 encoded string containing the contents of an attachment.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentId</td>\n<td>string</td>\n<td>When set, used to embed an image within the body of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentType</td>\n<td>string</td>\n<td>The MIME type of an attachment.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"embedded-media\">Embedded Media</h3>\n<p>An array of media content blobs, such as images, documents, and other binary files.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>The name of an attached file.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>string</td>\n<td>The BASE64 encoded string containing the contents of an attachment.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentId</td>\n<td>string</td>\n<td>When set, used to embed an image within the body of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentType</td>\n<td>string</td>\n<td>The MIME type of an attachment.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CustomHeaders</td>\n<td>CustomHeaders (Array)</td>\n<td></td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"customheader\">CustomHeader</h3>\n<p>An array of header field data stored in Name/Value pairs.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>The name of the header field to be added, such as ‘Content-Type’.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>string</td>\n<td>The value of the header field to be added, such as ‘application/json’.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e3ff0522-de1d-4050-ae10-4f231ad35656","id":"e3ff0522-de1d-4050-ae10-4f231ad35656","name":"Inbound API","type":"folder"}},"urlObject":{"path":["YOUR-API-ENDPOINT"],"query":[],"variable":[]}},"response":[{"id":"39abbac1-9935-4285-affe-e3a3a489280f","name":"Message","originalRequest":{"method":"POST","header":[],"url":"/YOUR-API-ENDPOINT"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"\r\n{\r\n    \"ErrorLog\": \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\",\r\n    \"SecretKey\": \"abcdefg12345678\",\r\n    \"InboundIPAddress\": \"inbound@example.com\",\r\n    \"InboundMailFrom\": \"sender@example.com\",\r\n    \"InboundRcptTo\": \"recipient@example.com\",\r\n    \"SpamDetails\": \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\",\r\n    \"SpamScore\": \"0\",\r\n    \"Messages\":    [ \r\n        {\r\n            \"To\": [\r\n                {\r\n                    \"emailAddress\": \"recipient@example.com\",\r\n                    \"friendlyName\": \"Recipient #1\"\r\n                }\r\n            ],\r\n            \"From\": {\r\n                \"emailAddress\": \"sender@example.com\",\r\n                \"friendlyName\": \"Sender\"\r\n            },\r\n            \"Subject\": \"Injected Message\",\r\n            \"TextBody\": \"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\r\n            \"HtmlBody\": \"<html><body>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</body</html>\",\r\n            \"MessageId\": \"ABCDEFG\",\r\n            \"MailingId\": \"1234567890\",\r\n            \"TextCharSet\": \"UTF-8\",\r\n            \"HTMLCharSet\": \"UTF-8\",\r\n            \"CustomHeaders\": [\r\n                {\r\n                    \"Name\": \"My Custom Header\",\r\n                    \"Value\": \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\"\r\n                }\r\n            ],\r\n            \"CC\": [\r\n                {\r\n                    \"emailAddress\": \"recipient2@example.com\",\r\n                    \"friendlyName\": \"Recipient #2\"\r\n                }\r\n            ],\r\n            \"BCC\": [\r\n                {\r\n                    \"emailAddress\": \"recipient3@example.com\",\r\n                    \"friendlyName\": \"Recipient #3\"\r\n                }\r\n            ],\r\n            \"Attachments\": [\r\n                {\r\n                    \"Name\": \"attachment.jpg\"       \r\n                    \"Content\": \"QW4gYXJyYXkgb2YgYXR0YWNoZWQgY29udGVudCBibG9icywgc3VjaCBhcyBpbWFnZXMsIGRvY3VtZW50cywgYW5kIG90aGVyIGJpbmFyeSBmaWxlcy4=\"   \r\n                    \"ContentId\": \"Attachment\"\r\n                    \"ContentType\": \"image/jpeg\"\r\n                }\r\n            ],\r\n            \"EmbeddedMedia\": [\r\n                {\r\n                    \"Name\": \"media.jpg\"       \r\n                    \"Content\": \"QW4gYXJyYXkgb2YgbWVkaWEgY29udGVudCBibG9icywgc3VjaCBhcyBpbWFnZXMsIGRvY3VtZW50cywgYW5kIG90aGVyIGJpbmFyeSBmaWxlcy4=\"   \r\n                    \"ContentId\": \"Media\"\r\n                    \"ContentType\": \"image/jpeg\",\r\n                    \"CustomHeaders\": [\r\n                        {\r\n                            \"Name\": \"MediaHeader\",\r\n                            \"Value\": \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }                                                                                                                              \r\n    ]\r\n}\r\n"}],"_postman_id":"5736d8ea-55a3-4638-a3bb-315eb8b68ccb"}],"id":"e3ff0522-de1d-4050-ae10-4f231ad35656","description":"<h2 id=\"purpose\">Purpose</h2>\n<p>The SocketLabs On-Demand Inbound API is part of SocketLabs’ Inbound service which parses inbound mail streams automatically generated JSON messages, which can be consumed by your own applications. This type of API is also commonly referred to as a “webhook” API. This API allows custom applications to easily process email messages and integrate their contents into a variety of applications such as support systems, discussion forums, and social media networks.</p>\n<h2 id=\"configuration\">Configuration</h2>\n<p>To enable this feature, visit the “For Developers” dropdown menu in the SocketLabs On Demand Control Panel, select the “Configure Inbound API” page and enable the feature and to add the domain(s) to be processed with their MX records pointing to mx.socketlabs.com.</p>\n<p>Before the settings on this page can be saved, two conditions must be met: the domain(s) to be processed must have their MX records pointing to mx.socketlabs.com; and an Inbound API compatible web application must be running in a location accessible by SocketLabs' network.</p>\n<p>This endpoint will need to both process and store inbound mail streams as they arrive, as well as respond to our service with the proper authentication information. All JSON messages sent from our services will contain the Secret Key seen on the control panel page as well as your server ID, which should be used to ensure that all notifications are coming from our services. All responses must contain the Validation Key, so that we continue to ensure that your endpoint is both identified and currently able to process notifications. We also ask that if the Secret Key does not match in a notification message, your application should return a 401 error response.</p>\n<p>At this point the Inbound message processing system should post JSON blobs to the configured endpoint for each message it receives. Each JSON blob will contain the Secret Key also found on this configuration page, which endpoints can test for to ensure they don't accept any JSON not coming from the On-Demand network.</p>\n<h2 id=\"error-handling--rate-limiting\">Error Handling &amp; Rate Limiting</h2>\n<p>Once your endpoint is configured properly, each Inbound message will count as one message towards your monthly message usage. If an endpoint is temporarily unavailable due to a system outage on our end, your end, or somewhere between — all message will be queued up for another delivery attempt in exactly the same way as email deferral works. Inbound API messages will be not be permanently failed and lost unless no contact can be made for at least four days.</p>\n<p>In the case where your endpoint becomes unresponsive for long periods of time, we may disable the notification feature on your account to prevent generating large numbers of notifications which cannot be delivered. We would notify a user via email if this occurred, and the feature would need to be reconfigured via the control panel in order to be reactivated.</p>\n<h2 id=\"security\">Security</h2>\n<p>Some of the values contained in the JSON messages may include data obtained from third-party mail servers and web browsers. SocketLabs will provide this data AS IS in the JSON messages, therefore it is important to treat this data as untrusted. If you are storing data from the JSON messages in your database, it is important to use prepared statements and/or parameterized queries in order to prevent potential injection attacks. Similarly, if you will be displaying this data to end users, it is important to make sure the data is encoded and/or escaped in order to avoid potential cross-site scripting or code execution.</p>\n<p>Although unencrypted HTTP communication is allowed for your Inbound Parse API endpoint, it is strongly encouraged that you use HTTPS for your endpoint. Using unencrypted HTTP can pose a number of security risks. By the nature of the data being transmitted, Inbound Parse API-related calls made to your endpoint contain your SocketLabs server ID and Secret Key, as well as PII (Personally Identifiable Information) belonging to end-users, such as email address, friendly name, mail subject, mail content, message attachment, any custom headers, etc. Furthermore, fields such as mail content may contain additional confidential/sensitive information. Insecure transfer of such data over HTTP may pose data security risks (i.e.: confidentiality and integrity).</p>\n<h2 id=\"parameters\">Parameters</h2>\n<h3 id=\"server-id\">Server Id</h3>\n<p>Each of the Reporting API methods take a server id as a parameter. The server id specifies which of the SocketLabs On-Demand servers you are accessing. Your server id can be found next to your server name in the SocketLabs On-Demand control panel.</p>\n<h3 id=\"mailing-ids--message-ids\">Mailing IDs &amp; Message IDs</h3>\n<p>The Inbound API supports the use of “mailing ids” and “message ids”, which allow you to tag your outbound messages with user-defined identifiers that can then be used in the platform and the API. This is a powerful feature that enables you to track groups of messages or individual messages using identifiers that are meaningful to your application or organization.</p>\n<h4 id=\"mailing-ids\">Mailing Ids</h4>\n<p>Mailing Ids allow you to tag your outbound messages with a group identifier. This could be specific to a campaign, job, batch, or any grouping of messages. To tag your messages with a mailing id, a header must be specified in each of the email messages containing the mailing id.</p>\n<p>The header name must be: <em>X-xsMailingId</em></p>\n<p>The header value may be: <em>An alphanumeric value including 0-9, A-Z, a-z and hyphen</em>.</p>\n<h4 id=\"message-ids\">Message Ids</h4>\n<p>Message Ids allow you to tag your outbound messages with a specific identifier. This identifier could be specific to the individual message, the recipient of a message, or any value that works for your application. To tag your messages with a message id you must specify a header in each of your email messages that contains the message id.</p>\n<p>The header name must be: <em>X-xsMessageId</em></p>\n<p>The header value may be: <em>An alphanumeric value including 0-9, A-Z, a-z and hyphen</em>.</p>\n<p>The following is an example of an RFC-822 formatted email message using both a message id and mailing id:</p>\n<p>plaintext</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-plaintext\">To: Sue Brooks \nDate: Sat, 21 Nov 2009 09:15:54 -0600\nSubject: Giving Thanks\nX-xsMailingId: Campaign-1\nX-xsMessageId: FBC5747E24\nThis is the message body.\n</code></pre>\n<p><strong>IMPORTANT</strong>: When an outbound message is sent by our system, the message id and mailing id values (if any) are encoded into the return path address using <a href=\"http://en.wikipedia.org/wiki/Variable_envelope_return_path\">VERP</a>. Since there are limitations to the size of an email address, the values you use should be as short as possible. It is highly recommended that you limit the message id and mailing id length to a total combined size of thirty (30) characters or less.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"928e9b63-221d-4194-94f9-ac74aff28745","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ba4eb794-fb63-4324-bc2e-ef724274adca","type":"text/javascript","exec":[""]}}],"_postman_id":"e3ff0522-de1d-4050-ae10-4f231ad35656"},{"name":"Reporting API","item":[],"id":"c90ea1c9-e403-49a2-96fc-72cdc211abeb","description":"<p>Our Reporting API has been deprecated. Access to the Reporting Api will be removed by Feburary 2024.</p>\n<p>Please see the <a href=\"https://docs.socketlabs.com/#f83dfb98-8b88-437d-a443-a519e6363099:~:text=Event-,Webhooks,-Example%20POST%20Events\">webhook documentation</a> or use the <a href=\"https://docs.socketlabs.com/#9f207520-adda-4ff1-bb37-aa49bdff55b5\">SocketLabs API</a></p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"621282f3-5417-4ef0-9e74-a6ca71b7426c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"424d6529-a69b-4d9a-b623-6ea3021cd8e6","type":"text/javascript","exec":[""]}}],"_postman_id":"c90ea1c9-e403-49a2-96fc-72cdc211abeb"},{"name":"Marketing API","item":[{"name":"Gets a list of all Email Templates for the server.","id":"e0a3c9d7-0959-411d-b186-1200a1859e84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//marketing/v1/content","description":"<p>Returnes a comprehensive list of all email temlpates saved on your server.  Included is the template ID and a link to a thumbnail.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","content"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"d489f751-e954-45ce-82cd-dbdc12603085","name":"ok","originalRequest":{"method":"GET","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":"//marketing/v1/content"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"Numberic ID of the template\",\n  \"name\": \"Name of the template\",\n  \"created\": \"year-month-date timestamp UTC\",\n  \"updated\": \"year-month-date timestamp UTC\",\n  \"thumbnailurl\": \"url of a thumbnail for this template\",\n  \"thumbnailexipration\": \"year-month-date timestamp UTC\"\n}"},{"id":"65acdac4-accc-4f69-9ed4-fc762f477724","name":"Invalid Credentials","originalRequest":{"method":"GET","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":"//marketing/v1/content"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"3c867dbb-46b2-4db0-af01-007c6216c567","name":"Error","originalRequest":{"method":"GET","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":"//marketing/v1/content"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"An error has occurred\"\n}"}],"_postman_id":"e0a3c9d7-0959-411d-b186-1200a1859e84"},{"name":"Gets a list of your Custom Fields for the server.","id":"e799f965-9184-4937-a7c8-eda14e97ac29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"//marketing/v1/customfields","description":"<p>Gets a list of your Custom Fields for the server.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","customfields"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"77576111-b677-435a-a0a6-076d4313672b","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":"//marketing/v1/customfields"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"customFieldNameId\": \"54321\",\n \"name\": \"CustomFieldName\",\n \"serverId\": \"12345\",\n \"customFieldType\": \"String\"\n}"},{"id":"d9421790-7c6c-40e6-9f24-63cc6d7398a0","name":"Invalid Credentials","originalRequest":{"method":"GET","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":"//marketing/v1/customfields"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"34be9cb6-7fc4-4190-ac4e-b4f6841c05d1","name":"Error","originalRequest":{"method":"GET","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":"//marketing/v1/customfields"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"An error has occurred\"\n}"}],"_postman_id":"e799f965-9184-4937-a7c8-eda14e97ac29"},{"name":"Create a new Custom Field for your server.","id":"b4f5d37c-2532-4692-8497-578c9f7cb3ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"*/*"}],"url":"//marketing/v1/customfields/:name","description":"<p>The name of the custom field that you are creating.  This value must be a string between 1 and 50 characters.  Certain characters such as HTML tags are forbidden.  There are also certain names that are reserved and cannot be used as a custom field name.  Currently the reserved names are: “EmailAddress”, “ContactId”, and “Id”.  These reserved names are case insensitive.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","customfields",":name"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"CustomFieldName","key":"name"}]}},"response":[{"id":"1ba0a046-8351-4197-a907-b01b139db559","name":"OK","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:name","host":["/"],"path":["marketing","v1","customfields",":name"],"variable":[{"key":"name","value":"CustomFieldName","description":"(Required) "}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"customFieldNameId\": \"54321\",\n \"name\": \"CustomFieldName\",\n \"serverId\": \"12345\",\n \"customFieldType\": \"String\"\n}"},{"id":"7f1c76c7-4010-441c-865a-4cb8dba78254","name":"Invalid Credentials","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:name","host":["/"],"path":["marketing","v1","customfields",":name"],"variable":[{"key":"name","value":"CustomFieldName","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"8aba2ffa-5581-4ba2-a7f6-d9b46a8e35a2","name":"Too Many Fields","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:name","host":["/"],"path":["marketing","v1","customfields",":name"],"variable":[{"key":"name","value":"CustomFieldName","description":"(Required) "}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"You have exceeded the maximum number of Custom Field Names allowed.\"\n}"},{"id":"e39e6d53-2661-46f3-848e-a35119d39c67","name":"Error","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:name","host":["/"],"path":["marketing","v1","customfields",":name"],"variable":[{"key":"name","value":"CustomFieldName","description":"(Required) "}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"An error has occurred\"\n}"}],"_postman_id":"b4f5d37c-2532-4692-8497-578c9f7cb3ac"},{"name":"Deletes a Custom Field.","id":"6ffcc788-8d26-49f6-816a-ab9c6dcc3c59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//marketing/v1/customfields/:customFieldId/","description":"<p>Deletes a CustomField that you created, can only be deleted via ID.  This ID is returned when the custom field is created or when you retrieve a list of all your fields.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","customfields",":customFieldId",""],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"45678","key":"customFieldId"}]}},"response":[{"id":"ba0533f0-b552-4876-b1a4-f916bac0a405","name":"Invalid Credentials","originalRequest":{"method":"DELETE","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:customFieldId/","host":["/"],"path":["marketing","v1","customfields",":customFieldId",""],"variable":[{"key":"customFieldId","value":"45678","description":"(Required) "}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Custom field removed\"\n}"},{"id":"dece8ce8-d677-4eb9-93f4-372c6f61f982","name":"Invalid Credentials","originalRequest":{"method":"DELETE","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:customFieldId/","host":["/"],"path":["marketing","v1","customfields",":customFieldId",""],"variable":[{"key":"customFieldId","value":"45678","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"d24a5c71-2ec3-4141-84b3-4bcd9eb7a6e9","name":"Custom Field did not exist","originalRequest":{"method":"DELETE","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:customFieldId/","host":["/"],"path":["marketing","v1","customfields",":customFieldId",""],"variable":[{"key":"customFieldId","value":"45678","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Custom field does not exist\"\n}"},{"id":"63b7110d-b17f-4fcd-8371-5eedc844032a","name":"Error","originalRequest":{"method":"DELETE","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/customfields/:customFieldId/","host":["/"],"path":["marketing","v1","customfields",":customFieldId",""],"variable":[{"key":"customFieldId","value":"45678","description":"(Required) "}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"An error has occurred\"\n}"}],"_postman_id":"6ffcc788-8d26-49f6-816a-ab9c6dcc3c59"},{"name":"Searches lists.","id":"dd5481a5-97bd-4026-bcea-b7c9466752f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//marketing/v1/lists/:serverId","description":"<p>Retrieve a list of all mailing lists on your server.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","lists",":serverId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) The ID of server you want to get the lists from.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"01dd7fb5-0fde-4def-b3a8-08ef4b148b5e","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) Pass authorization","key":"Authorization","value":"Basic AUthorization"}],"url":{"raw":"//marketing/v1/lists/:serverId","host":["/"],"path":["marketing","v1","lists",":serverId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) The ID of server you want to get the lists from."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"123\",\n  \"name\": \"Test List\",\n  \"serverId\": \"45678\"\n}"},{"id":"8071f7e1-a5f5-4d86-8b98-3fd2eb1b4bf3","name":"Invalid Credentials","originalRequest":{"method":"GET","header":[{"description":"(Required) Pass authorization","key":"Authorization","value":"Basic AUthorization"}],"url":{"raw":"//marketing/v1/lists/:serverId","host":["/"],"path":["marketing","v1","lists",":serverId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) The ID of server you want to get the lists from."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"fa4c04db-3c3c-4b4e-90cc-3076929c03b7","name":"List not faound","originalRequest":{"method":"GET","header":[{"description":"(Required) Pass authorization","key":"Authorization","value":"Basic AUthorization"}],"url":{"raw":"//marketing/v1/lists/:serverId","host":["/"],"path":["marketing","v1","lists",":serverId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) The ID of server you want to get the lists from."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"No such list found for server\"\n}"}],"_postman_id":"dd5481a5-97bd-4026-bcea-b7c9466752f2"},{"name":"Sets an address to Unsubscribed via JSON.","id":"efa4f83c-2b18-4845-b622-d17e0dbb8ad9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"url":"//marketing/v1/contacts/unsubscribe/","description":"<p>Unsubscribes an address via JSON.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","contacts","unsubscribe",""],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"7868d263-170d-474c-b63a-f1cb300f4083","name":"OK","originalRequest":{"method":"POST","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"//marketing/v1/contacts/unsubscribe/"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Contact Unsubscribed\"\n}"},{"id":"0583a5f0-fc12-4cc3-ae20-13a9e6ae489c","name":"Invalid address format","originalRequest":{"method":"POST","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"//marketing/v1/contacts/unsubscribe/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Email Address formatting invalid.\"\n}"},{"id":"b209efa1-188c-4095-9475-ca6e7fd1ba20","name":"Invalid Credentials","originalRequest":{"method":"POST","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"//marketing/v1/contacts/unsubscribe/"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"a9d01732-df7e-4730-82ca-e9beb1e6417c","name":"Error","originalRequest":{"method":"POST","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"//marketing/v1/contacts/unsubscribe/"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"An error has occurred\"\n}"}],"_postman_id":"efa4f83c-2b18-4845-b622-d17e0dbb8ad9"},{"name":"Unsubscribes a user by ID.","id":"ed953fe7-fbce-4e04-8880-5d13db2c8bcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"*/*"}],"url":"//marketing/v1/contacts/unsubscribe/:contactId","description":"<p>Sets an address as unsubscribed.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","contacts","unsubscribe",":contactId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result.</p>\n","type":"text/plain"},"type":"any","value":"9876543","key":"contactId"}]}},"response":[{"id":"1d25f5a2-9958-41fc-82d7-aaf454f1d35e","name":"OK","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/contacts/unsubscribe/:contactId","host":["/"],"path":["marketing","v1","contacts","unsubscribe",":contactId"],"variable":[{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Contact Unsubscribed\"\n}"},{"id":"391f8f98-8877-4105-9665-00640814ad3e","name":"Invalid Credentials","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/contacts/unsubscribe/:contactId","host":["/"],"path":["marketing","v1","contacts","unsubscribe",":contactId"],"variable":[{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"6a902671-e0d5-4d71-835c-2dd3019a1bb0","name":"Contact does not exist","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/contacts/unsubscribe/:contactId","host":["/"],"path":["marketing","v1","contacts","unsubscribe",":contactId"],"variable":[{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Contact does not exist\"\n}"},{"id":"1d34ba3e-0d83-469d-b0f0-dfb6abc3ad4c","name":"Error","originalRequest":{"method":"POST","header":[{"description":"(Required) ","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/contacts/unsubscribe/:contactId","host":["/"],"path":["marketing","v1","contacts","unsubscribe",":contactId"],"variable":[{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"An error has occurred\"\n}"}],"_postman_id":"ed953fe7-fbce-4e04-8880-5d13db2c8bcd"},{"name":"Adds a contact to a list via email address.","id":"3be4afbf-7f69-4371-9986-892f499d57e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"emailAddress\": \"test@example.com\",\n \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":"//marketing/v1/lists/:listId/contacts","description":"<p>Add a contact using the email address to a list.  Obtain list ID from the /lists GET function.  This function can be used to update already existing contacts with new CustomField information by resubmitting the call using the same email address and adding new custom fields.  This will append the new custom field information to the existing contact</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","lists",":listId","contacts"],"host":["/"],"query":[],"variable":[{"id":"da34a2a5-6b65-43a5-92c0-1c1a877e50da","description":{"content":"<p>(Required) The Id of the list, obtained from /lists GET</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"listId"}]}},"response":[{"id":"48b7868a-7c01-4416-aaf3-45bda5d09c94","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts","host":["/"],"path":["marketing","v1","lists",":listId","contacts"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contactId\": \"654321\",\n  \"listId\": \"67890\",\n  \"serverId\": \"12345\"\n}"},{"id":"4f2e1ddb-0d30-4035-9982-c6a8a5ea573e","name":"Invalid address format","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts","host":["/"],"path":["marketing","v1","lists",":listId","contacts"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Email Address formatting invalid.\"\n}"},{"id":"e5102d02-64a8-4d74-a68c-36fb4f2ffb08","name":"Invalid Credentials","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts","host":["/"],"path":["marketing","v1","lists",":listId","contacts"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"1d1fae04-4b3c-4f3f-b4a7-aee8e85c31ec","name":"Error","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts","host":["/"],"path":["marketing","v1","lists",":listId","contacts"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"An error has occurred\"\n}"}],"variable":[{"id":"da34a2a5-6b65-43a5-92c0-1c1a877e50da","key":"listId","value":"12345","type":"any","description":"(Required) The Id of the list, obtained from /lists GET"}],"_postman_id":"3be4afbf-7f69-4371-9986-892f499d57e8"},{"name":"Deletes an address via a query using the address itself.","id":"94a2d981-d5aa-4c0f-b1d6-067b77611d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":"//marketing/v1/lists/:listId/contacts/","description":"<p>Delete an address via the address itself.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","lists",":listId","contacts",""],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) The Id of the list, obtained from /lists GET.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"listId"}]}},"response":[{"id":"6ca479e3-5fad-4674-bf94-9755bc59a192","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"(Required) Pass authorization credentials.","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Contact removed from list.\"\n}"},{"id":"ba2a921a-c48b-4a60-b3d2-540ee644ef11","name":"Invalid address format","originalRequest":{"method":"DELETE","header":[{"description":"(Required) Pass authorization credentials.","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Email Address formatting invalid.\"\n}"},{"id":"94e398d9-f7c2-46ca-8882-c24608dcad1d","name":"Invalid Credentials","originalRequest":{"method":"DELETE","header":[{"description":"(Required) Pass authorization credentials.","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"be791500-00fa-47b0-be0d-4c7c1472de3e","name":"Contact does not exist","originalRequest":{"method":"DELETE","header":[{"description":"(Required) Pass authorization credentials.","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Contact does not exist\"\n}"},{"id":"fa9b1cb1-be69-494a-82c1-e68bb11f8e6b","name":"Error","originalRequest":{"method":"DELETE","header":[{"description":"(Required) Pass authorization credentials.","key":"Authorization","value":"Basic Authorization"}],"body":{"mode":"raw","raw":"{\n  \"emailAddress\": \"test@example.com\",\n  \"customFields\": {}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//marketing/v1/lists/:listId/contacts/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"An error has occurred\"\n}"}],"_postman_id":"94a2d981-d5aa-4c0f-b1d6-067b77611d56"},{"name":"Add a contact via ID","id":"9a5055fd-57ea-4953-a5fe-3dd2d08c67e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"//marketing/v1/lists/:listId/contacts/:contactId","description":"<p>Request Parameters:\ncontactId: The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result.\nlistId: The contact list’s unique integer ID. To obtain the list ID see GET /marketing/v1/lists.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","lists",":listId","contacts",":contactId"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) The Id of the list, obtained from /lists GET</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"listId"},{"description":{"content":"<p>(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result. Note that this is passed in the URL (see URL above).</p>\n","type":"text/plain"},"type":"any","value":"9876543","key":"contactId"}]}},"response":[{"id":"832c9d05-c511-4e90-87a5-ace6e29e400c","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result. Note that this is passed in the URL (see URL above)."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contactId\": \"654321\",\n  \"listId\": \"67890\",\n  \"serverId\": \"12345\"\n}"},{"id":"e44763c8-3180-4d21-9001-d121c66e65f2","name":"Invalid Credentials","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result. Note that this is passed in the URL (see URL above)."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"15177ebd-1ec9-41cd-a55f-19429f5f2d89","name":"Contact ID not found","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result. Note that this is passed in the URL (see URL above)."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"No such contact found for server\"\n}"},{"id":"4dad8e1e-f57a-4a48-89de-56df67e49b0d","name":"Error","originalRequest":{"method":"PUT","header":[{"description":"(Required) pass authorization","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId"],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET"},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result. Note that this is passed in the URL (see URL above)."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"An error has occurred\"\n}"}],"_postman_id":"9a5055fd-57ea-4953-a5fe-3dd2d08c67e4"},{"name":"Delete a contact by ID.","id":"dcd6944f-14a7-4088-aa4e-18e8df7d845d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//marketing/v1/lists/:listId/contacts/:contactId/","description":"<p>removes an address from a specific mailing list by ID.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","name":"Marketing API","type":"folder"}},"urlObject":{"path":["marketing","v1","lists",":listId","contacts",":contactId",""],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) The Id of the list, obtained from /lists GET.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"listId"},{"description":{"content":"<p>(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result.</p>\n","type":"text/plain"},"type":"any","value":"9876543","key":"contactId"}]}},"response":[{"id":"649fb6a0-5fde-4b21-92a0-0f927c0d0715","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Contact removed from list.\"\n}"},{"id":"3530e6ce-b160-42c4-8b00-b9242d0706b0","name":"Invalid Credentials","originalRequest":{"method":"DELETE","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Invalid username/password. Five invalid attempts will result in 15 minute block.\"\n}"},{"id":"1094e8fc-0ae5-48ac-85aa-46b879209887","name":"Contact does not exist","originalRequest":{"method":"DELETE","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Contact does not exist\"\n}"},{"id":"fe0fc3aa-1e83-4dec-aa9d-c8764faec987","name":"Error","originalRequest":{"method":"DELETE","header":[{"description":"(Required) pass authorization credentials","key":"Authorization","value":"Basic Authorization"}],"url":{"raw":"//marketing/v1/lists/:listId/contacts/:contactId/","host":["/"],"path":["marketing","v1","lists",":listId","contacts",":contactId",""],"variable":[{"key":"listId","value":"12345","description":"(Required) The Id of the list, obtained from /lists GET."},{"key":"contactId","value":"9876543","description":"(Required) The contact’s integer ID. If the contact ID does not exist for your server, will return a 404 Not Found result."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"An error has occurred\"\n}"}],"_postman_id":"dcd6944f-14a7-4088-aa4e-18e8df7d845d"}],"id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2","description":"<h2 id=\"api-purpose\">API Purpose</h2>\n<p>The SocketLabs On-Demand Marketing API exposes RESTful HTTP methods to access and manipulate aspects of SocketLabs’ Marketing features such as contact list management, newsletters, and autoresponders. This enables users to build their own sophisticated client tools to manage the use of our On-Demand services.</p>\n<h2 id=\"access--authentication\">Access &amp; Authentication</h2>\n<p>The email Marketing API uses basic authentication over SSL. Please refer to your development platform documentation for instructions on how to use HTTP authentication with REST calls. All calls to the API must be over HTTPS for security. Non-secure HTTP calls are not supported.</p>\n<p>Email marketing API credentials exist on a per-server level. Therefore, your Marketing API username is your 4- or 5-digit Server ID number, and a Marketing API key is used as a password. In order to retrieve your Marketing API key, log into your control panel and navigate to your server’s dashboard. From here, click on the “For Developers” tab in the top navigation bar, and choose the “Configure Marketing API” option in the drop-down menu. Your Marketing API key is automatically generated and cannot be edited manually for security reasons. You can regenerate this key, however, by clicking on the regenerate icon to the right of the field.</p>\n<p>Please be aware that if you change any of your email marketing API credentials, any application that uses old information will stop working until it is updated with the new credentials. Any requests with invalid credentials will receive a 401 Unauthorized response.</p>\n<h2 id=\"error-handling\">Error Handling</h2>\n<p>Your application should be designed to handle failure conditions such as receiving no response or an error response from our API server. For example, the email marketing API may be down temporarily for maintenance, and calling applications should be able to handle such a situation gracefully. Specific error responses for given methods are explained in the documentation for that method.</p>\n<h2 id=\"maximizing-the-marketing-tools\">Maximizing the Marketing Tools</h2>\n<p>The email Marketing API currently exposes methods for managing contacts, contact lists, custom fields and custom field data.</p>\n<p>JSON and XML response content types are currently supported. You can specify your preferred type via your Accept header in your HTTP request as follows (Accept: application/json or Accept: text/xml respectively).</p>\n<p>For a given server, note that a contact is uniquely identified by its email address and contacts are shared across lists. Therefore if you update an individual contact’s information (first name, last name, etc) those changes will be reflected across all lists (and subsequent newsletters or autoresponders) on which that contact is used.</p>\n<h3 id=\"timezones\">Timezones</h3>\n<p>By default the email Marketing API processes all dates and times as UTC (both input and output).</p>\n<h3 id=\"custom-fields\">Custom Fields</h3>\n<p>When creating a new custom field there are various scenarios that will result in your custom field not being created successfully. In these cases, we will return an HTTP 409 (conflict) with a relevant message. The following messages may be returned on error:</p>\n<p><strong>“message”: “That name is system reserved, please choose another.”</strong> The name of your custom field matched one of the reserved field names.</p>\n<p><strong>“message”: “The field ‘{name}’ can’t be created because it already exists.”</strong> This custom field name already exists for your server.</p>\n<p><strong>“message”: “You have exceeded the maximum number of Custom Field Names allowed.”</strong> You have exceeded the maximum number of fields (currently 20) allowed for your server.</p>\n<p><strong>“message”: “The field Name must be a string with a maximum length of 50.”</strong> The submitted field contained too many characters or was not a string.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"f321fa7a-e1ef-41f5-a772-e90e8739a6e0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"369561c2-6e0b-4df3-b99c-9b2265a0a839","type":"text/javascript","exec":[""]}}],"_postman_id":"d03ae64c-b87a-4e3b-bbf6-3cea892dd4b2"},{"name":"Bounce Domain","item":[{"name":"Get a Bounce Domain for Server","id":"ffda247a-2bca-41f8-9a73-67484583fac2","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/bounce/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"e63fc23d-56c9-4e98-95ca-dce551821219","id":"e63fc23d-56c9-4e98-95ca-dce551821219","name":"Bounce Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The bounce domain.</p>\n","type":"text/plain"},"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"5479f126-4646-4555-af3c-20ffbc292f72","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":null},{"key":"domain","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\": \"bounce1.example.com\",\n    \"isDefault\": true,\n    \"createdOn\": \"1961-10-12T10:15:41.114Z\",\n    \"updatedOn\": \"2021-03-14T03:37:55.414Z\"\n}"},{"id":"a11a7d69-8243-4ddf-add0-51a3793a963c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"49f59368-124e-4688-9770-4bdc96595623","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"DomainNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"ffda247a-2bca-41f8-9a73-67484583fac2"},{"name":"Get All Bounce Domains for Server","id":"c93bfd03-9310-43e7-866b-1e6d93267ebc","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/bounce","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"e63fc23d-56c9-4e98-95ca-dce551821219","id":"e63fc23d-56c9-4e98-95ca-dce551821219","name":"Bounce Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","bounce"],"host":["/"],"query":[],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"d8841d51-b3fb-4e25-87df-e44533c04e40","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce","host":["/"],"path":["v1","servers",":serverId","bounce"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"domain\": \"bounce1.example.com\",\n    \"isDefault\": true,\n    \"createdOn\": \"1961-10-12T10:15:41.114Z\",\n    \"updatedOn\": \"2021-03-14T03:37:55.414Z\"\n  },\n  {\n    \"domain\": \"bounce2.example.com\",\n    \"isDefault\": false,\n    \"createdOn\": \"1974-04-30T09:56:28.682Z\",\n    \"updatedOn\": \"1977-05-30T23:26:42.150Z\"\n  }\n]"},{"id":"f1e71379-7a1d-4f46-ae7d-20330842fae3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce","host":["/"],"path":["v1","servers",":serverId","bounce"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"}],"_postman_id":"c93bfd03-9310-43e7-866b-1e6d93267ebc"},{"name":"Create a Bounce Domain","id":"0958324d-9542-450d-8194-dcd93e8cfbff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":"//v1/servers/:serverId/bounce","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"e63fc23d-56c9-4e98-95ca-dce551821219","id":"e63fc23d-56c9-4e98-95ca-dce551821219","name":"Bounce Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","bounce"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"3538a133-bc63-4756-887d-e3a80704e06e","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce","host":["/"],"path":["v1","servers",":serverId","bounce"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"example.com\",\n  \"isDefault\": true,\n  \"validationResult\": \"Success\",\n  \"createdOn\": \"1950-07-03T00:39:30.153Z\",\n  \"updatedOn\": \"2008-09-07T16:07:17.709Z\"\n}"},{"id":"fa9d6b3b-2a39-4589-aedf-004985d1cce1","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce","host":["/"],"path":["v1","servers",":serverId","bounce"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"9baf385b-0927-45c7-87d9-0cb2a5692e1b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce","host":["/"],"path":["v1","servers",":serverId","bounce"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"ef73ab08-7653-4958-8c1d-8a36b9adfd78","name":"Conflict","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce","host":["/"],"path":["v1","servers",":serverId","bounce"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidDomainFormat\",\n    \"message\": \"Domain name not formatted correctly.\"\n  }\n]"}],"_postman_id":"0958324d-9542-450d-8194-dcd93e8cfbff"},{"name":"Update Bounce Domain for Server","id":"80a8fcee-e18f-494c-a896-e1f3eec55b9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":"//v1/servers/:serverId/bounce/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"e63fc23d-56c9-4e98-95ca-dce551821219","id":"e63fc23d-56c9-4e98-95ca-dce551821219","name":"Bounce Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The bounce domain to be updated.</p>\n","type":"text/plain"},"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"63600b48-9ba7-49ff-81f7-d039c6893a3b","name":"Success","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be updated."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"example.com\",\n  \"isDefault\": true,\n  \"validationResult\": \"Success\",\n  \"createdOn\": \"1950-07-03T00:39:30.153Z\",\n  \"updatedOn\": \"2008-09-07T16:07:17.709Z\"\n}"},{"id":"e77a001b-ac99-49b8-954a-169374995760","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be updated."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"64970157-aae3-4574-81f3-8c4d0a12c09d","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be updated."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"c6c3793b-7d62-4027-a866-16596ff963bd","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be updated."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"NotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"},{"id":"bbe76c05-10de-49a7-a1a4-d0cfcfd1045b","name":"Conflict","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"occaecat aliqua\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be updated."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidDomainFormat\",\n    \"message\": \"Domain name not formatted correctly.\"\n  }\n]"}],"_postman_id":"80a8fcee-e18f-494c-a896-e1f3eec55b9d"},{"name":"Add Bounce Domain for Server","id":"bb834f37-f116-4643-ae09-b5323e9fc972","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/bounce/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"e63fc23d-56c9-4e98-95ca-dce551821219","id":"e63fc23d-56c9-4e98-95ca-dce551821219","name":"Bounce Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","bounce",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The bounce domain to be deleted.</p>\n","type":"text/plain"},"type":"any","value":"bounce.example.com","key":"domain"}]}},"response":[{"id":"1d023e6a-5cc6-4c7f-972c-f86f5cd96f70","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be deleted."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"49ff2d56-7a04-45f7-88a4-630c56b6ab3e","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be deleted."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"e8b5ada3-8a03-4567-9ea0-8caef46d54e6","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be deleted."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"dfe265a4-68c2-47a4-81d6-67340aaa6513","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/bounce/:domain","host":["/"],"path":["v1","servers",":serverId","bounce",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"bounce.example.com","description":"(Required) The bounce domain to be deleted."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"NotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"bb834f37-f116-4643-ae09-b5323e9fc972"}],"id":"e63fc23d-56c9-4e98-95ca-dce551821219","description":"<p>The Bounce Domains endpoint allows you to get a list of Bounce Domains for your server, add new domains, update an existing domain, or delete a domain.</p>\n<h2 id=\"about-custom-bounce-domains\">About Custom Bounce Domains</h2>\n<h3 id=\"what-is-a-bounce-domain\">What is a Bounce Domain?</h3>\n<p>Bounce Domains will be used in the domain portion of the bounce address, which is used in the SMTP communication process to determine where the receiving mail server sends back its bounce and error messages. A custom bounce domain allows you to customize the domain utilized in the these email messages. For more information about this feature, please see the <a href=\"https://help.socketlabs.com/docs/custom-bounce-domains\">Custom Bounce Domains</a> article in the SocketLabs Help Center.</p>\n<h3 id=\"prerequisites\">Prerequisites</h3>\n<p>In order to set up a custom bounce domain, a CNAME record must be established with your DNS service provider. This CNAME must point a subdomain to the <code>tracking.socketlabs.com</code> domain. This can also be used for enabling the Engagement Tracking feature. You can re-use the CNAME record created for engagement tracking to customize your bounce domain. For more information about setting up a CNAME record for Custom Bounce Domains, please see the <a href=\"https://help.socketlabs.com/docs/cname-configuration-for-bounce-tracking\">CNAME Configuration</a> article in the SocketLabs Help Center.</p>\n<h2 id=\"error-types\">Error Types</h2>\n<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the bounce domain endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CnameResolutionFailure</td>\n<td>The domain does not resolve to <code>tracking.socketlabs.com</code>.</td>\n</tr>\n<tr>\n<td>DomainDoesNotExist</td>\n<td>The domain does not exist for your server.</td>\n</tr>\n<tr>\n<td>DomainNotAllowed</td>\n<td>The requested domain is not allowed.</td>\n</tr>\n<tr>\n<td>InvalidDomainFormat</td>\n<td>The domain name was not formatted correctly.</td>\n</tr>\n<tr>\n<td>MaximumBounceDomainLimitExceeded</td>\n<td>The maximum domain limit has been exceeded for your server.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"_postman_id":"e63fc23d-56c9-4e98-95ca-dce551821219"},{"name":"DKIM","item":[{"name":"Delete a Cname DKIM entry based on a specified domain/selector combination.","id":"1e5f2859-683d-4108-8c9c-a81030195e65","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/dkim/cname/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim","cname",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"b539d0af-e667-4647-acdb-334d15541f5e","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/cname/:domain","host":["/"],"path":["v1","servers",":serverId","dkim","cname",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"712d8a61-a6fa-4b33-8e08-9c081a061aae","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/cname/:domain","host":["/"],"path":["v1","servers",":serverId","dkim","cname",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"e1ff2efb-8dd0-4b98-ae36-2512e6812136","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/cname/:domain","host":["/"],"path":["v1","servers",":serverId","dkim","cname",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n    }\n]"},{"id":"18665dca-c3a3-4308-9c0e-666698f1d68c","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/cname/:domain","host":["/"],"path":["v1","servers",":serverId","dkim","cname",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"1e5f2859-683d-4108-8c9c-a81030195e65"},{"name":"Creates a new Cname DKIM entry for your server.","id":"c03bce6d-c50f-41c7-9983-0f4eb28da7f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"//v1/servers/:serverId/dkim/cname","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim","cname"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"-6241228","key":"serverId"}]}},"response":[{"id":"13f4138f-4423-449a-9481-d85ebbb64896","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/cname","host":["/"],"path":["v1","servers",":serverId","dkim","cname"],"variable":[{"key":"serverId","value":"-6241228","description":"(Required) "}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"validationResult\": \"Success\",\n    \"domain\": \"example.com\",\n    \"recordType\": \"CNAME\",\n    \"createdOn\": \"2023-01-31T20:10:59.3711603Z\",\n    \"updatedOn\": \"2023-01-31T20:10:59.3711599Z\"\n}"},{"id":"4eb6e029-cb51-4fb0-b32f-b55f6ad4b3e2","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/cname","host":["/"],"path":["v1","servers",":serverId","dkim","cname"],"variable":[{"key":"serverId","value":"-6241228","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"4e76b68d-6fc1-4136-b0ea-834f3788340b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/cname","host":["/"],"path":["v1","servers",":serverId","dkim","cname"],"variable":[{"key":"serverId","value":"-6241228","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n    }\n]"},{"id":"94045e2a-9184-4c3d-8b0f-ab0543385d10","name":"Conflict","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/cname","host":["/"],"path":["v1","servers",":serverId","dkim","cname"],"variable":[{"key":"serverId","value":"-6241228","description":"(Required) "}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n    \"errorType\": \"CnameResolutionFailure\",\n    \"message\": \"'CName' is invalid. CName record match could not be found for the provided domain.\"\n    }\n]"}],"_postman_id":"c03bce6d-c50f-41c7-9983-0f4eb28da7f5"},{"name":"Generate a DKIM Key","id":"ff534cfd-6955-4469-8da6-a95d01013136","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/dkim/generate?domain=example.com&selector=dkim1","description":"<p>You can use these keys to update your DNS before creating new DKIM entries.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim","generate"],"host":["/"],"query":[{"description":{"content":"<p>(Required) The domain for the DKIM entry you are generating a key for.</p>\n","type":"text/plain"},"key":"domain","value":"example.com"},{"description":{"content":"<p>(Required) The selector for the DKIM entry you are generating a key for.</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"c5954dfd-4438-40b5-87a7-82b0e235f869","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/generate?domain=example.com&selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim","generate"],"query":[{"key":"domain","value":"example.com"},{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"DnsHostName\": \"dkim1._domainkey.example.com\",\n    \"Domain\": \"example.com\",\n    \"Selector\": \"dkim1\",\n    \"DnsRecord\": \"key\",\n    \"PublicKey\": \"public key\",\n    \"PrivateKey\": \"private key\"\n}"},{"id":"20af458f-f6d6-4a24-9840-d4811a9033de","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/generate?domain=example.com&selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim","generate"],"query":[{"key":"domain","value":"example.com"},{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"ff603e4b-5b5a-410a-a76b-c4103ce68cca","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/generate?domain=example.com&selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim","generate"],"query":[{"key":"domain","value":"example.com"},{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"}],"_postman_id":"ff534cfd-6955-4469-8da6-a95d01013136"},{"name":"Get DKIM Entries for Server","id":"53dcff19-70de-44e0-87a0-53a9f860e7d8","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/dkim","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim"],"host":["/"],"query":[],"variable":[{"type":"any","value":null,"key":"serverId"}]}},"response":[{"id":"32371924-eaba-42e3-a272-edf4db51ce5f","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim","host":["/"],"path":["v1","servers",":serverId","dkim"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"domain\": \"example.com\",\n        \"selector\": \"dkim1\",\n        \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n        \"recordType\": \"TXT\",\n        \"createdOn\": \"2023-01-31T19:58:56\",\n        \"updatedOn\": \"2023-01-31T19:58:56\"\n    },\n    {\n        \"domain\": \"example.org\",\n        \"selector\": \"dkimkey\",\n        \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n        \"recordType\": \"TXT\",\n        \"createdOn\": \"2023-01-31T19:58:56\",\n        \"updatedOn\": \"2023-01-31T19:58:56\"\n    }\n]"},{"id":"1f82104e-564b-4d64-a6e6-115fe1a04110","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim","host":["/"],"path":["v1","servers",":serverId","dkim"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n    }\n]"}],"_postman_id":"53dcff19-70de-44e0-87a0-53a9f860e7d8"},{"name":"Get a DKIM Entry for Server","id":"111e4bc0-6dd7-492e-944f-0cf530bf477f","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/dkim/:domain?selector=dkim1","description":"<p>Each entry will include the validation status for the domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>(Optional) The selector for the DKIM entry you are querying..</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) (Optional) The domain for the DKIM entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"8ee3e69e-ee20-4eff-8aa4-136b21253400","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Optional) The domain for the DKIM entry you are querying."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim1\",\n    \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n    \"recordType\": \"TXT\",\n    \"createdOn\": \"2023-01-31T19:58:56\",\n    \"updatedOn\": \"2023-01-31T19:58:56\"\n}"},{"id":"8a33adfd-f3bb-4bff-b165-a36b2be42418","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Optional) The domain for the DKIM entry you are querying."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n    }\n]"},{"id":"c2627c3a-6e58-4e91-a165-ff980b8eb105","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"//v1/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1","description":"(Optional) The selector for the DKIM entry you are querying.."}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Optional) The domain for the DKIM entry you are querying."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"111e4bc0-6dd7-492e-944f-0cf530bf477f"},{"name":"Add a DKIM Entry for Server","id":"7d8e074d-98df-4b2d-8052-0b4f1bd6bde4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"privateKey\": \"YOUR-PRIVATE-KEY\",\n  \"selector\": \"dkim1\"\n}","options":{"raw":{"language":"json"}}},"url":"//v1/servers/:serverId/dkim","description":"<p>If the PrivateKey is not provided, we will generate a new public/private key pair for you.\n            Otherwise, we will attempt to validate your private key against the public key for your domain.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"a91ee63c-6d5b-449e-add1-378c5699bb4e","name":"Created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim","host":["/"],"path":["v1","servers",":serverId","dkim"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim1\",\n    \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n    \"recordType\": \"TXT\",\n    \"createdOn\": \"2023-01-31T19:58:56\",\n    \"updatedOn\": \"2023-01-31T19:58:56\"\n}"},{"id":"f291f9f0-1e29-4eb3-aac6-c82c43f3c5ff","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim","host":["/"],"path":["v1","servers",":serverId","dkim"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"4ddfee44-5fb3-4348-9060-f45f5af6908f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim","host":["/"],"path":["v1","servers",":serverId","dkim"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n    }\n]"},{"id":"86c4bf89-4fd6-47f2-bc9b-d19c81440c72","name":"Conflict","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim","host":["/"],"path":["v1","servers",":serverId","dkim"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"PublicKeyNotFound\",\n    \"message\": \"We could not fetch your public key from your DNS entry. Please confirm your configuration.\"\n  }\n]"}],"_postman_id":"7d8e074d-98df-4b2d-8052-0b4f1bd6bde4"},{"name":"Update a DKIM Entry for Server","id":"904eec86-a52f-4809-8223-9e7c25890976","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"example.com\",\n  \"privateKey\": \"YOUR-PRIVATE-KEY\",\n  \"selector\": \"dkim1\"\n}","options":{"raw":{"language":"json"}}},"url":"//v1/servers/:serverId/dkim/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) (Required) The domain for the DKIM entry you are updating.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"ad8c4d1e-d20c-4478-8884-3b28b471cec3","name":"Success","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/:domain","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Required) The domain for the DKIM entry you are updating."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\": \"example.com\",\n    \"selector\": \"dkim1\",\n    \"truncatedPrivateKey\": \"ABCDEFG12345678...\",\n    \"recordType\": \"TXT\",\n    \"createdOn\": \"2023-01-31T19:58:56\",\n    \"updatedOn\": \"2023-01-31T19:58:56\"\n}"},{"id":"995c1850-bbb6-4438-9684-b8a94cdc26e4","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/:domain","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Required) The domain for the DKIM entry you are updating."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"Bad Request\",\n    \"message\": \"The request is invalid.\"\n  }\n]"},{"id":"85e7cef8-0109-4062-a867-f3f4fbca79cb","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/:domain","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Required) The domain for the DKIM entry you are updating."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n    }\n]"},{"id":"b7ce23b0-b866-4077-9cf1-29ccb1cb1182","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/:domain","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Required) The domain for the DKIM entry you are updating."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"},{"id":"9500293c-4512-4779-bb2c-636173565112","name":"Conflict","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"mollit sunt\",\n  \"privateKey\": \"ad irure esse\",\n  \"selector\": \"et\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/dkim/:domain","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) (Required) The domain for the DKIM entry you are updating."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"PublicKeyNotFound\",\n    \"message\": \"We could not fetch your public key from your DNS entry. Please confirm your configuration.\"\n  }\n]"}],"_postman_id":"904eec86-a52f-4809-8223-9e7c25890976"},{"name":"Delete a DKIM Entry for Server","id":"3963f0a7-f257-492a-9026-318e83b8dec0","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"//v1/servers/:serverId/dkim/:domain?selector=dkim1","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","name":"DKIM","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","dkim",":domain"],"host":["/"],"query":[{"description":{"content":"<p>The selector for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"key":"selector","value":"dkim1"}],"variable":[{"description":{"content":"<p>(Required) Your SocketLabs Server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the DKIM entry you are deleting.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"3be8774a-be4d-4c22-b724-4e189576dc7b","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"bb2e6056-866a-4207-9900-639b6f025da7","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"error\": [\n      {\n        \"errorType\": \"Bad Request\",\n        \"message\": \"The request is invalid.\"\n      }\n    ]\n  }\n}"},{"id":"a21380c6-20b0-41fc-a38a-70a0f8d7133f","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"error\": [\n      {\n        \"errorType\": \"InsufficientPermission\",\n        \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n      }\n    ]\n  }\n}"},{"id":"a01edd8d-acfc-4dd7-9ba5-33ef6e5a7a20","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"//v1/servers/:serverId/dkim/:domain?selector=dkim1","host":["/"],"path":["v1","servers",":serverId","dkim",":domain"],"query":[{"key":"selector","value":"dkim1"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your SocketLabs Server Id number."},{"key":"domain","value":"example.com","description":"(Required) The domain for the DKIM entry you are deleting."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"error\": [\n      {\n        \"errorType\": \"NotFound\",\n        \"message\": \"Domain does not exist for your server.\"\n      }\n    ]\n  }\n}"}],"_postman_id":"3963f0a7-f257-492a-9026-318e83b8dec0"}],"id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496","description":"<p>The DKIM endpoint allows you to generate DKIM keys, save DKIM entries, and get a list of all DKIM entries for your server.</p>\n<p>SocketLabs will sign outbound messages where the From address domain matches the domain for one of your DKIM entries. For more information about DKIM signing with SocketLabs, please see our <a href=\"https://help.socketlabs.com/docs/dkim-authentication\">Help Center</a>.</p>\n<p>In order to create a new DKIM entry, please provide the domain, selector, and private key. We will attempt to validate the private key that you provide against the public key for your domain and selector. If we are unable to validate the public key, an error message will be returned.</p>\n<p>You can create your own private and public keys to use with this endpoint. If you would prefer to have SocketLabs generate the key pairs for you, we provide a Generate endpoint that will generate a public/private key pair for your provided domain and selector combination.</p>\n<h1 id=\"dkim-key-generate-response-object\">DKIM Key Generate Response Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DnsHostName</td>\n<td>string</td>\n<td>The hostname you must create in your domain's DNS for the new DKIM record.</td>\n</tr>\n<tr>\n<td>Domain</td>\n<td>string</td>\n<td>The domain for your DKIM record.</td>\n</tr>\n<tr>\n<td>Selector</td>\n<td>string</td>\n<td>The selector used for your DKIM record.</td>\n</tr>\n<tr>\n<td>DnsRecord</td>\n<td>string</td>\n<td>The full value to be added to your DNS as a TXT record. This record should be added at the hostname specified in the DnsHostName property.</td>\n</tr>\n<tr>\n<td>PublicKey</td>\n<td>string</td>\n<td>The public key generated for your domain and selector combination.</td>\n</tr>\n<tr>\n<td>PrivateKey</td>\n<td>string</td>\n<td>The private key generated for your domain and selector combination.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"dkim-key-post-request-object\">DKIM Key POST Request Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>The domain name for your new DKIM entry.</td>\n</tr>\n<tr>\n<td>selector</td>\n<td>string</td>\n<td>The selector for your new DKIM entry.</td>\n</tr>\n<tr>\n<td>privateKey</td>\n<td>string</td>\n<td>The private key for your DKIM entry.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"dkim-key-put-request-object\">DKIM Key PUT Request Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>selector</td>\n<td>string</td>\n<td>The selector for your new DKIM entry.</td>\n</tr>\n<tr>\n<td>privateKey</td>\n<td>string</td>\n<td>The private key for your DKIM entry.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"dkim-key-response-object\">DKIM Key Response Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>The domain name for your DKIM entry.</td>\n</tr>\n<tr>\n<td>selector</td>\n<td>string</td>\n<td>The selector used for your DKIM key.</td>\n</tr>\n<tr>\n<td>truncatedPrivateKey</td>\n<td>string</td>\n<td>The truncated (for security) private key for your DKIM entry.</td>\n</tr>\n<tr>\n<td>validationResult</td>\n<td>string</td>\n<td>Whether we were able to verify the public key in DNS with the private key you provided.This field only exists on the POST endpoint, not the GET</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"errors\">Errors</h2>\n<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the DKIM endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomDkimEnabled</td>\n<td>You must disable the Custom DKIM feature in the SocketLabs Performance Dashboard before using the DKIM API.</td>\n</tr>\n<tr>\n<td>DomainNotAllowed</td>\n<td>The requested domain is not allowed.</td>\n</tr>\n<tr>\n<td>EntryAlreadyExists</td>\n<td>The domain is currently in use on your server.</td>\n</tr>\n<tr>\n<td>EntryNotFound</td>\n<td>The requested domain is not found on your server.</td>\n</tr>\n<tr>\n<td>InvalidPrivateKey</td>\n<td>The value or format of the private key is invalid. Please verify the private key value.</td>\n</tr>\n<tr>\n<td>InvalidPublicKey</td>\n<td>The value or format of the public key is invalid. Please verify the public key value.</td>\n</tr>\n<tr>\n<td>MaximumDkimEntriesExceeded</td>\n<td>The maximum number of DKIM entries has been reached.</td>\n</tr>\n<tr>\n<td>MissingDomain</td>\n<td><code>Domain</code> field was missing from your request.</td>\n</tr>\n<tr>\n<td>MissingPrivateKey</td>\n<td><code>PrivateKey</code> field was missing from your request.</td>\n</tr>\n<tr>\n<td>MissingSelector</td>\n<td><code>Selector</code> field was missing from your request.</td>\n</tr>\n<tr>\n<td>PrivatePublicKeysDoNotPair</td>\n<td>Your private key does not pair with the public key found at your DNS entry.</td>\n</tr>\n<tr>\n<td>PublicKeyNotFound</td>\n<td>We could not fetch your public key from your DNS entry. Please confirm your configuration.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"_postman_id":"6eb9bfeb-7f33-4fc4-94c0-a27820be3496"},{"name":"Message Events","item":[{"name":"Gets Message Events","id":"f58139b2-0c5e-4b9d-a5e2-98205b843758","request":{"method":"GET","header":[],"url":"//v1/servers/:serverId/messageevents/?startDate=2022-01-01&endDate=2022-01-14&mailingId=est non aute ipsum in&fromAddress=est non aute ipsum in&status=est non aute ipsum in&toEmailAddress=recipient@example.com","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"d1b38b1d-8422-4d39-8b78-1ce05b5a39ec","id":"d1b38b1d-8422-4d39-8b78-1ce05b5a39ec","name":"Message Events","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","messageevents",""],"host":["/"],"query":[{"description":{"content":"<p>(Required) start date</p>\n","type":"text/plain"},"key":"startDate","value":"2022-01-01"},{"description":{"content":"<p>(Required) end date</p>\n","type":"text/plain"},"key":"endDate","value":"2022-01-14"},{"key":"mailingId","value":"est non aute ipsum in"},{"key":"fromAddress","value":"est non aute ipsum in"},{"key":"status","value":"est non aute ipsum in"},{"description":{"content":"<p>(Required) the email address to search</p>\n","type":"text/plain"},"key":"toEmailAddress","value":"recipient@example.com"}],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"403b42c1-f393-419e-a6ad-18dfe3ea4421","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress?startDate=2022-01-01&endDate=2022-01-14&mailingId=est non aute ipsum in&fromAddress=est non aute ipsum in&status=est non aute ipsum in","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-14"},{"key":"mailingId","value":"est non aute ipsum in"},{"key":"fromAddress","value":"est non aute ipsum in"},{"key":"status","value":"est non aute ipsum in"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) the email address to search"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"isSuppressed\": false,\n  \"isTruncated\": false,\n  \"results\": [\n    {\n      \"serverId\": 12345,\n      \"toAddress\": \"to@example.org\",\n      \"fromAddress\": \"from@example.org\",\n      \"systemMessageId\": \"123F4AE5B678\",\n      \"mailingId\": \"SLNL-0-123456-000000-\",\n      \"messageId\": \"123456789ABC\",\n      \"status\": \"Opened\",\n      \"statusDate\": \"2020-01-01T00:00:00\",\n      \"lastEventDate\": \"2020-01-01T00:00:00\",\n      \"lastEventType\": \"Opened\",\n      \"openedCount\": 2,\n      \"clickedCount\": 2\n    },\n    {\n      \"serverId\": 12345,\n      \"toAddress\": \"to@example.org\",\n      \"fromAddress\": \"from@example.org\",\n      \"systemMessageId\": \"123F4AE5B678\",\n      \"mailingId\": \"SLNL-0-987654-000000-\",\n      \"messageId\": \"XYZ987654321\",\n      \"status\": \"Delivered\",\n      \"statusDate\": \"2020-01-01T00:00:00\",\n      \"lastEventDate\": \"2020-01-01T00:00:00\",\n      \"lastEventType\": \"Delivered\",\n      \"openedCount\": 2,\n      \"clickedCount\": 2\n    }\n  ]\n}"},{"id":"6bd22b8a-88cc-4962-bf0f-fbd7e6fbce82","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress?startDate=2022-01-01&endDate=2022-01-14&mailingId=est non aute ipsum in&fromAddress=est non aute ipsum in&status=est non aute ipsum in","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-14"},{"key":"mailingId","value":"est non aute ipsum in"},{"key":"fromAddress","value":"est non aute ipsum in"},{"key":"status","value":"est non aute ipsum in"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) the email address to search"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"DateRangeRequired\",\n    \"message\": \"Date range is missing. 'startDate' and 'endDate' are required in the query string.\"\n  }\n]"},{"id":"4dc31462-f56e-4468-9101-1de5a36cbc4f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress?startDate=2022-01-01&endDate=2022-01-14&mailingId=est non aute ipsum in&fromAddress=est non aute ipsum in&status=est non aute ipsum in","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-14"},{"key":"mailingId","value":"est non aute ipsum in"},{"key":"fromAddress","value":"est non aute ipsum in"},{"key":"status","value":"est non aute ipsum in"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) the email address to search"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"c8e053fc-32ab-4d7a-b7e8-ab548a8f2c13","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress?startDate=2022-01-01&endDate=2022-01-14&mailingId=est non aute ipsum in&fromAddress=est non aute ipsum in&status=est non aute ipsum in","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-14"},{"key":"mailingId","value":"est non aute ipsum in"},{"key":"fromAddress","value":"est non aute ipsum in"},{"key":"status","value":"est non aute ipsum in"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) the email address to search"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"},{"id":"06db1e8d-d43b-4afe-a215-5d903f9cb1b3","name":"Conflict","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress?startDate=2022-01-01&endDate=2022-01-14&mailingId=est non aute ipsum in&fromAddress=est non aute ipsum in&status=est non aute ipsum in","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress"],"query":[{"key":"startDate","value":"2022-01-01"},{"key":"endDate","value":"2022-01-14"},{"key":"mailingId","value":"est non aute ipsum in"},{"key":"fromAddress","value":"est non aute ipsum in"},{"key":"status","value":"est non aute ipsum in"}],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) the email address to search"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"DatesOutOfRange\",\n    \"message\": \"The requested date range is not valid.\"\n  }\n]"}],"_postman_id":"f58139b2-0c5e-4b9d-a5e2-98205b843758"},{"name":"Get Message Timeline","id":"f162d9ca-2f7b-4661-811d-49f6c0e518c6","request":{"method":"GET","header":[],"url":"//v1/servers/:serverId/messageevents/:toEmailAddress/:systemMessageId?toEmailAddress=recipient@example.com","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"d1b38b1d-8422-4d39-8b78-1ce05b5a39ec","id":"d1b38b1d-8422-4d39-8b78-1ce05b5a39ec","name":"Message Events","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","messageevents",":toEmailAddress",":systemMessageId"],"host":["/"],"query":[{"key":"toEmailAddress","value":"recipient@example.com"}],"variable":[{"description":{"content":"<p>(Required) Your server Id number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) the email address to search</p>\n","type":"text/plain"},"type":"any","value":"","key":"toEmailAddress"},{"description":{"content":"<p>(Required) the system message id to search</p>\n","type":"text/plain"},"type":"any","value":"123456789","key":"systemMessageId"}]}},"response":[{"id":"a554f443-6b7b-4daa-8743-a2f1aff9f61c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress/:systemMessageId","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress",":systemMessageId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) "},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) "},{"key":"systemMessageId","value":"123456789","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"serverId\": 12345,\n  \"toAddress\": \"to@example.org\",\n  \"fromAddress\": \"from@example.org\",\n  \"systemMessageId\": \"123F4AE5B678\",\n  \"mailingId\": \"SLNL-0-987654-000000-\",\n  \"messageId\": \"XYZ987654321\",\n  \"status\": \"Delivered\",\n  \"statusDate\": \"2020-01-01T00:00:00\",\n  \"lastEventDate\": \"2020-01-01T00:00:00\",\n  \"lastEventType\": \"Delivered\",\n  \"openedCount\": 2,\n  \"clickedCount\": 2,\n  \"events\": {\n    \"queued\": {\n      \"eventTime\": \"2020-01-01T00:00:00\"\n    },\n    \"delivered\": {\n      \"eventTime\": \"2020-01-01T00:00:00\",\n      \"reason\": \"200 Message Sent!!! Thank you!\",\n      \"sendingIPAddress\": \"127.0.0.1\"\n    },\n    \"failed\": [],\n    \"complaint\": [],\n    \"open\": [\n      {\n        \"eventTime\": \"2020-01-01T00:00:00\",\n        \"remoteIP\": \"127.0.0.1\"\n      }\n    ],\n    \"click\": [\n      {\n        \"eventTime\": \"2020-01-01T00:00:00\",\n        \"url\": \"http://example.com\",\n        \"remoteIP\": \"127.0.0.1\"\n      }\n    ],\n    \"unsubscribe\": []\n  }\n}"},{"id":"9e918739-f303-46a5-bc5d-52f609ea90be","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress/:systemMessageId","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress",":systemMessageId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) "},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) "},{"key":"systemMessageId","value":"123456789","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"3530ccc3-5b3d-45ac-8c5b-6823d964c6db","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress/:systemMessageId","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress",":systemMessageId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) "},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) "},{"key":"systemMessageId","value":"123456789","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"8a2089b1-2f5b-4924-8732-e73666667cc1","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress/:systemMessageId","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress",":systemMessageId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) "},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) "},{"key":"systemMessageId","value":"123456789","description":"(Required) "}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"},{"id":"ea50d6a3-5e05-48dc-b826-ea537c0c4944","name":"Conflict","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/messageevents/:toEmailAddress/:systemMessageId","host":["/"],"path":["v1","servers",":serverId","messageevents",":toEmailAddress",":systemMessageId"],"variable":[{"key":"serverId","value":"12345","description":"(Required) "},{"key":"toEmailAddress","value":"recipient@example.com","description":"(Required) "},{"key":"systemMessageId","value":"123456789","description":"(Required) "}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidSystemMessageId\",\n    \"message\": \"The SystemMessageId is not valid.\"\n  }\n]"}],"_postman_id":"f162d9ca-2f7b-4661-811d-49f6c0e518c6"}],"id":"d1b38b1d-8422-4d39-8b78-1ce05b5a39ec","description":"<p>The Message Events API allows you to provide an email address and date range, and find all message events related to that address. Message events include things like message deliveries, failures, opens, clicks, unsubscribes, and more.</p>\n<p>In addition to the Message Events API, you can use the systemMessageId (found as a response parameter in the Mailing Events API) to get a detailed timeline about the full history of a single outbound message.</p>\n<h2 id=\"usage-and-limitations\">Usage and Limitations</h2>\n<h3 id=\"date-formats\">Date Formats</h3>\n<p>When filtering by date, three date formats (Each a subset of <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601</a>) are supported. The following date formats may be used:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>yyyy-MM-ddTHH:mm:ssK\nyyyy-MM-ddK\nyyyy-MM-dd\n\n</code></pre><p>By default, all dates will be in UTC time. If you need to specify a local time offset, you can do by adding or subracting the local offset (<code>K</code> property) to your timestamp. For more information on how to use time offsets, please see <a href=\"https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC\">this Wikipedia article</a>.</p>\n<h3 id=\"date-limits\">Date Limits</h3>\n<p>Data returned by the Message Events API is limited to the dates allowed by the Detailed Reporting History date range for your SocketLabs plan. If you attempt to search a date range that is not allowed by your current plan, an error will be returned. To find out what your current limits are, or to upgrade to a plan with more limits, please navigate to <a href=\"https://cp.socketlabs.com/servers/x/plan/upgrade#/\">your plans page</a>.</p>\n<h3 id=\"truncation\">Truncation</h3>\n<p>If more than 100 Message Events exist for your query, the results will be truncated. When this happens, the <code>IsTruncated</code> flag on the <a href=\"#c6e6f51c-0b68-4c3b-839a-8fc5284d91d5\">Mailing Event Response Object</a> will be <code>true</code>. When your results are truncated, consider refining your search. You can do this by using a smaller date range, or adding a filter such as <code>mailingId</code>, <code>fromAddress</code>, or <code>status</code>.</p>\n<h1 id=\"mailing-event-response-object\">Mailing Event Response Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>isSuppressed</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>isTruncated</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>results</td>\n<td>array[Mailing Event]</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"mailing-event\">Mailing Event</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>serverId</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>toAddress</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>fromAddress</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>systemMessageId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>mailingId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>messageId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Queued, Delivered, Failed</td>\n</tr>\n<tr>\n<td>statusDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>lastEventDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>lastEventType</td>\n<td>string</td>\n<td>Queued, Delivered, Failed, Complaint, Opened, Clicked, Unsubscribed</td>\n</tr>\n<tr>\n<td>openedCount</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>clickedCount</td>\n<td>number</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"message-timeline-response-object\">Message Timeline Response Object</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>serverId</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>toAddress</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>fromAddress</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>systemMessageId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>mailingId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>messageId</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Queued, Delivered, Failed</td>\n</tr>\n<tr>\n<td>statusDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>lastEventDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>lastEventType</td>\n<td>string</td>\n<td>Queued, Delivered, Failed, Complaint, Opened, Clicked, Unsubscribed</td>\n</tr>\n<tr>\n<td>openedCount</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>clickedCount</td>\n<td>number</td>\n<td></td>\n</tr>\n<tr>\n<td>events</td>\n<td>Events</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"events\">Events</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>queued</td>\n<td>Queued</td>\n<td></td>\n</tr>\n<tr>\n<td>delivered</td>\n<td>Delivered</td>\n<td></td>\n</tr>\n<tr>\n<td>failed</td>\n<td>array[Failed]</td>\n<td></td>\n</tr>\n<tr>\n<td>complaint</td>\n<td>array[Complaint]</td>\n<td></td>\n</tr>\n<tr>\n<td>open</td>\n<td>array[Open]</td>\n<td></td>\n</tr>\n<tr>\n<td>click</td>\n<td>array[Click]</td>\n<td></td>\n</tr>\n<tr>\n<td>unsubscribe</td>\n<td>array[Unsubscribe]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"queued\">Queued</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventTime</td>\n<td>date</td>\n<td>format: date-time</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"delivered\">Delivered</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventTime</td>\n<td>date</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>string</td>\n</tr>\n<tr>\n<td>sendingIPAddress</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"failed\">Failed</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventTime</td>\n<td>date</td>\n</tr>\n<tr>\n<td>failureType</td>\n<td>string</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>string</td>\n</tr>\n<tr>\n<td>failureCode</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"complaint\">Complaint</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventTime</td>\n<td>date</td>\n</tr>\n<tr>\n<td>complaintType</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"open\">Open</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventTime</td>\n<td>date</td>\n</tr>\n<tr>\n<td>remoteIP</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"click\">Click</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventTime</td>\n<td>date</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n</tr>\n<tr>\n<td>remoteIP</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"unsubscribe\">Unsubscribe</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventTime</td>\n<td>date</td>\n</tr>\n<tr>\n<td>remoteIP</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-types\">Error Types</h2>\n<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the tracking domain endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PlanRestrictionError</td>\n<td>Date range outside of available days in plan type. Please upgrade plan to view more data.</td>\n</tr>\n<tr>\n<td>DateRangeRequired</td>\n<td>Date range is missing. 'startDate' and 'endDate' are required in the query string.</td>\n</tr>\n<tr>\n<td>DatesOutOfRange</td>\n<td>The requested date range is not valid.</td>\n</tr>\n<tr>\n<td>BeyondMaxAllowedReportDate</td>\n<td>Date range cannot exceed more than 90 days from current range.</td>\n</tr>\n<tr>\n<td>InvalidTimezoneOffset</td>\n<td>The requested timezone offset is not valid. please provide a value between -720 and 840.</td>\n</tr>\n<tr>\n<td>InvalidSystemMessageId</td>\n<td>The SystemMessageId is not valid.</td>\n</tr>\n<tr>\n<td>NotFound</td>\n<td>SystemMessageId Does Not Exist/ Message Does Not Exist.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"_postman_id":"d1b38b1d-8422-4d39-8b78-1ce05b5a39ec"},{"name":"Sending Domain","item":[{"name":"Get All Sending Domains for Server","id":"12ade7a2-254d-4394-9d98-650a7b54e5d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"//servers/:serverId/sendingdomains","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","name":"Sending Domain","type":"folder"}},"urlObject":{"path":["servers",":serverId","sendingdomains"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"59138b9d-0846-4eee-9aa2-8a87b508e72c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"domain\": \"example.com\",\n\t\t\"isRequired\": true\n\t},\n\t{\n\t\t\"domain\": \"example.org\",\n\t\t\"isRequired\": false\n\t}\n]"},{"id":"abc02db1-188f-4723-9e98-c1e54cd4a129","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"77dde9ab-48fa-4714-a29e-a68f1838a860","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"}],"_postman_id":"12ade7a2-254d-4394-9d98-650a7b54e5d8"},{"name":"Get a Sending Domain for Server","id":"d9730712-d4f7-4a2b-8b52-8258f20c33b7","request":{"method":"GET","header":[],"url":"//v1/servers/:serverId/sendingdomains/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","name":"Sending Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","sendingdomains",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>The sending domain.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"9e90f426-d360-4e77-a236-1520b25bb049","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."},{"key":"domain","value":"example.com","description":"The sending domain."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\": \"example.com\",\n    \"isRequired\": true\n}"},{"id":"ab590d71-3beb-478a-a326-36bda270f6a7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."},{"key":"domain","value":"example.com","description":"The sending domain."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"edc2f467-5921-4e1b-81ec-816b4b4799c2","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."},{"key":"domain","value":"example.com","description":"The sending domain."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"d61de6b7-a0a2-4fe9-b57f-6a0b4b4a58d8","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."},{"key":"domain","value":"example.com","description":"The sending domain."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"d9730712-d4f7-4a2b-8b52-8258f20c33b7"},{"name":"Add a Sending Domain for Server","id":"02bbcf7c-f477-4839-89fc-f2573dce42b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"irure in magna"}]},"url":"//v1/servers/:serverId/sendingdomains","description":"<p>In order to add a new Sending Domain, the domain must have a valid MX record or A record.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","name":"Sending Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","sendingdomains"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"bded1896-9b61-4cdf-af8e-1e02dc917e00","name":"OK","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"irure in magna"}]},"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\": \"example.com\",\n    \"isRequired\": true,\n\t\"validationResult\": \"status\"\n}"},{"id":"23f6bbe6-022d-444d-8684-d4ab8e90b21c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"irure in magna"}]},"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"1c96110e-f62e-48ad-89b0-b747786c66d2","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"irure in magna"}]},"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"f173e7d8-d85c-4a99-9346-a065c3402696","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"irure in magna"}]},"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"},{"id":"71c8201a-306b-4abf-a69f-d0e165c93abd","name":"Conflict","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"irure in magna"}]},"url":{"raw":"//v1/servers/:serverId/sendingdomains","host":["/"],"path":["v1","servers",":serverId","sendingdomains"],"variable":[{"key":"serverId","value":"12345","description":"Your serverId number."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"DomainResolutionFailure\",\n    \"message\": \"Domain does not have an A or MX record.\"\n  }\n]"}],"_postman_id":"02bbcf7c-f477-4839-89fc-f2573dce42b7"},{"name":"Delete a Sending Domain for Server","id":"37441193-015c-4f16-8d88-3a229fc1d7ba","request":{"method":"DELETE","header":[],"url":"//v1/servers/:serverId/sendingdomains/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","name":"Sending Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","sendingdomains",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The sending domain to be deleted.</p>\n","type":"text/plain"},"type":"any","value":"example.com","key":"domain"}]}},"response":[{"id":"fe1cf98f-67e6-4f05-9b73-5fcb149f9c14","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"example.com","description":"(Required) The sending domain to be deleted."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b7a06068-342a-4691-a328-402051bb7a00","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"example.com","description":"(Required) The sending domain to be deleted."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"33025127-ac77-4eef-98eb-2cecb5b14944","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"example.com","description":"(Required) The sending domain to be deleted."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"71b35a4b-7143-4be7-90cf-4d4502e8ba9f","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/sendingdomains/:domain","host":["/"],"path":["v1","servers",":serverId","sendingdomains",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"example.com","description":"(Required) The sending domain to be deleted."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"37441193-015c-4f16-8d88-3a229fc1d7ba"}],"id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621","description":"<p>The Sending Domain endpoint allows you to add or delete Sending Domains for your server. Additionally, you can get a list of all Sending Domain entries for your server or query for a single domain.</p>\n<h2 id=\"about-sending-domains\">About Sending Domains</h2>\n<h3 id=\"what-is-a-sending-domain\">What is a Sending Domain?</h3>\n<p>This security feature allows users to provide specific email addresses and/or domains that are permitted in the MAIL FROM SMTP protocol command issued during the mail relay process. Once a single domain or address is specified, all other domains and addresses not listed in the whitelist will be rejected at the SMTP protocol level.</p>\n<p>In order to add a new Sending Domain, the domain must have a valid MX record or A record.</p>\n<p>For more information about Sending Domains, please see our <a href=\"https://help.socketlabs.com/docs/sending-domains-whitelist\">Help Center</a>.</p>\n<h2 id=\"error-types\">Error Types</h2>\n<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the Sending Domains endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DomainAlreadyExists</td>\n<td>Domain already exist for your server.</td>\n</tr>\n<tr>\n<td>DomainOnBlackList</td>\n<td>Domain you are trying to add is on the blacklist.</td>\n</tr>\n<tr>\n<td>DomainNotFound</td>\n<td>Domain does not exist for your server.</td>\n</tr>\n<tr>\n<td>DomainResolutionFailure</td>\n<td>Domain does not have an A or MX record.</td>\n</tr>\n<tr>\n<td>DomainRestricted</td>\n<td>Domain falls within our Restricted Domains List and cannot be used.</td>\n</tr>\n<tr>\n<td>EmailOnBlackList</td>\n<td>Email address you are trying to add is on the blacklist.</td>\n</tr>\n<tr>\n<td>EmailRestricted</td>\n<td>Email Address falls within our Restricted List and cannot be used.</td>\n</tr>\n<tr>\n<td>InvalidDomainFormat</td>\n<td>Domain name not formatted correctly.</td>\n</tr>\n<tr>\n<td>InvalidEmailDomainFormat</td>\n<td>Email Address Domain is not formatted correctly.</td>\n</tr>\n<tr>\n<td>InvalidEmailFormat</td>\n<td>Email Address is not formatted correctly.</td>\n</tr>\n<tr>\n<td>MaximumSendingDomainLimitExceeded</td>\n<td>Domain limit has been exceeded for your server.</td>\n</tr>\n<tr>\n<td>ValidationFailure</td>\n<td>Domain validation failed.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"_postman_id":"66d288c6-a6c3-4ef2-adff-f6a922ff3621"},{"name":"Tracking Domain","item":[{"name":"Gets Encrypted Tracking Status for the domain","id":"493a8eef-848e-414b-a07b-5aa4e9a1addb","request":{"method":"GET","header":[],"url":"//v1/servers/:serverId/tracking/:domain/encrypted","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) (Optional) The domain for the tracking domain entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"65f942ff-9cd9-44ca-a082-96cfe49bf4af","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) (Optional) The domain for the tracking domain entry you are querying."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"c2d9e0bf-248f-468b-a3fa-51ab59abad41","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) (Optional) The domain for the tracking domain entry you are querying."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"79ca9fe8-a273-4f15-8c2f-ccb01401300c","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) (Optional) The domain for the tracking domain entry you are querying."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"493a8eef-848e-414b-a07b-5aa4e9a1addb"},{"name":"Enable Encrypted Tracking Status for the domain","id":"7c96b51f-9462-4251-a6e4-52c27202f92b","request":{"method":"POST","header":[],"url":"//v1/servers/:serverId/tracking/:domain/encrypted","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"c4288557-9c43-4182-b958-bde64a2bc2e4","name":"OK","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n\t\"EncryptedTrackingStatus\": \"off\"\n}"},{"id":"025bb138-3386-42dd-8958-f57832c2de2f","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"857e9082-6fa2-4d5c-a074-e60201584236","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"},{"id":"ad3f1f1a-8c44-4069-be4c-1d4adea4923c","name":"Conflict","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"ErrorType\": \"nulla enim minim\",\n\t\t\"Message\": \"irure eu\"\n\t},\n\t{\n\t\t\"ErrorType\": \"eiusmod sunt ullamco\",\n\t\t\"Message\": \"adipisicing minim\"\n\t}\n]"}],"_postman_id":"7c96b51f-9462-4251-a6e4-52c27202f92b"},{"name":"Disable Encrypted Tracking Status for the domain","id":"b064ea43-169b-4b24-9b72-feb4fd75ae01","request":{"method":"DELETE","header":[],"url":"//v1/servers/:serverId/tracking/:domain/encrypted","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking",":domain","encrypted"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"aedb2116-547e-4ce7-b102-3ca69a197cbf","name":"NoContent","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"64da17be-9b93-44f9-a80d-916ed3d8dcef","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"5c3f76e9-2176-47dc-a5fc-cbc350ea4795","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain/encryptedtracking","host":["/"],"path":["v1","servers",":serverId","tracking",":domain","encryptedtracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"ErrorType\": \"nulla enim minim\",\n\t\t\"Message\": \"irure eu\"\n\t},\n\t{\n\t\t\"ErrorType\": \"eiusmod sunt ullamco\",\n\t\t\"Message\": \"adipisicing minim\"\n\t}\n]"}],"_postman_id":"b064ea43-169b-4b24-9b72-feb4fd75ae01"},{"name":"Get All Tracking Domains for Server","id":"1de34cfc-ae11-41ce-bc46-a6ac7e04c41f","request":{"method":"GET","header":[],"url":"//v1/servers/:serverId/tracking","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"30d288a2-b10c-42bf-b2d6-ac7ae9a91ab3","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking","host":["/"],"path":["v1","servers",":serverId","tracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\" : [\n        {\n            \"domain\": \"tracking1.example.com\",\n            \"opensEnabled\": false,\n            \"clicksEnabled\": false,\n            \"unsubscribesEnabled\": false,\n            \"automaticTrackingEnabled\": true,\n            \"googleAnalyticsEnabled\": false,\n            \"httpsEnabled\": true,\n            \"isDefault\": false,\n            \"trackingCertificateStatus\": \"Active\"\n        },\n        {\n            \"domain\": \"tracking2.example.com\",\n            \"opensEnabled\": false,\n            \"clicksEnabled\": false,\n            \"unsubscribesEnabled\": false,\n            \"automaticTrackingEnabled\": true,\n            \"googleAnalyticsEnabled\": false,\n            \"httpsEnabled\": true,\n            \"isDefault\": false,\n            \"trackingCertificateStatus\": \"Pending\"\n        }\n    ],\n    \"total\" : 2\n}"},{"id":"2f47a4e9-e0bb-44b1-b38e-2869738a3cca","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking","host":["/"],"path":["v1","servers",":serverId","tracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n      {\n        \"errorType\": \"InsufficientPermission\",\n        \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n      }\n    ]\n}"}],"_postman_id":"1de34cfc-ae11-41ce-bc46-a6ac7e04c41f"},{"name":"Get a Tracking Domain for Server","id":"35138462-09d2-490f-bded-5c7ebd5f5939","request":{"method":"GET","header":[],"url":"//v1/servers/:serverId/tracking/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the tracking domain entry you are querying.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"26de6508-30f5-4044-99f6-d30e0388e62e","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the tracking domain entry you are querying."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\": \"tracking1.example.com\",\n    \"opensEnabled\": false,\n    \"clicksEnabled\": false,\n    \"unsubscribesEnabled\": false,\n    \"automaticTrackingEnabled\": true,\n    \"googleAnalyticsEnabled\": false,\n    \"httpsEnabled\": true,\n    \"isDefault\": false,\n    \"trackingCertificateStatus\": \"Active\"\n}"},{"id":"2071b2d9-e78f-4497-ad7e-205b2a85413d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the tracking domain entry you are querying."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"1bc2266b-fe32-4f51-b8f3-b73886c3ebc5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the tracking domain entry you are querying."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": [\n      {\n        \"errorType\": \"InsufficientPermission\",\n        \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n      }\n    ]\n}"},{"id":"ba214d48-dde6-4230-8e41-0da7c40bffc2","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the tracking domain entry you are querying."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"35138462-09d2-490f-bded-5c7ebd5f5939"},{"name":"Add Tracking Domain for Server","id":"91cf7f2a-1146-4e77-9f9c-d21a0460185a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"la"},{"key":"OpensEnabled","value":"true"},{"key":"ClicksEnabled","value":"true"},{"key":"UnsubscribesEnabled","value":"true"},{"key":"AutomaticTrackingEnabled","value":"false"},{"key":"GoogleAnalyticsEnabled","value":"true"},{"key":"IsDefault","value":"true"}]},"url":"//v1/servers/:serverId/tracking","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"}]}},"response":[{"id":"b6c1a335-f2fb-4cfb-bf68-b3d98f2c717d","name":"OK","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"//v1/servers/:serverId/tracking","host":["/"],"path":["v1","servers",":serverId","tracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\":\"tracking.example.com\",\n    \"opensEnabled\":false,\n    \"clicksEnabled\":false,\n    \"unsubscribesEnabled\":false,\n    \"automaticTrackingEnabled\":true,\n    \"googleAnalyticsEnabled\":false,\n    \"httpsEnabled\":true,\n    \"isDefault\":false,\n    \"trackingCertificateStatus\": \"Pending\"\n    \"validationResult\": \"Success\"\n}"},{"id":"d09cad89-a9ea-4a1d-9fb0-b68b75d9ded2","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking","host":["/"],"path":["v1","servers",":serverId","tracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"4708318d-1435-4926-8e54-83fc8fc814b1","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking","host":["/"],"path":["v1","servers",":serverId","tracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"9758874d-53ba-42f5-ae46-09fe1db6e7d6","name":"Conflict","originalRequest":{"method":"POST","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking","host":["/"],"path":["v1","servers",":serverId","tracking"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"CnameResolutionFailure\",\n    \"message\": \"Domain does not resolve to tracking.socketlabs.com.\"\n  }\n]"}],"_postman_id":"91cf7f2a-1146-4e77-9f9c-d21a0460185a"},{"name":"Update a Tracking Domain for Server","id":"5028c189-46fd-4895-b761-ff95e2daa2ee","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Domain","value":"la"},{"key":"OpensEnabled","value":"true"},{"key":"ClicksEnabled","value":"true"},{"key":"UnsubscribesEnabled","value":"true"},{"key":"AutomaticTrackingEnabled","value":"false"},{"key":"GoogleAnalyticsEnabled","value":"true"},{"key":"IsDefault","value":"true"}]},"url":"//v1/servers/:serverId/tracking/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The tracking domain to be updated.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"bbe02917-4d05-4fbe-ab69-ab7074c6abcc","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The tracking domain to be updated."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"domain\":\"tracking.example.com\",\n    \"opensEnabled\":false,\n    \"clicksEnabled\":false,\n    \"unsubscribesEnabled\":false,\n    \"automaticTrackingEnabled\":true,\n    \"googleAnalyticsEnabled\":false,\n    \"httpsEnabled\":true,\n    \"isDefault\":false,\n    \"trackingCertificateStatus\": \"Pending\"\n    \"validationResult\": \"Success\"\n}"},{"id":"665abe97-9404-4a4d-8597-e76e8a01a20b","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The tracking domain to be updated."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"db007a0d-c760-46d9-a33a-c7e030a249c8","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The tracking domain to be updated."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"46be2a0c-c20e-4827-8cb0-326bf3b7b3c8","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The tracking domain to be updated."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"},{"id":"f3a18d8f-9032-4a5f-95aa-9c67aeaae5b3","name":"Conflict","originalRequest":{"method":"PUT","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The tracking domain to be updated."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"CnameResolutionFailure\",\n    \"message\": \"Domain does not resolve to tracking.socketlabs.com.\"\n  }\n]"}],"_postman_id":"5028c189-46fd-4895-b761-ff95e2daa2ee"},{"name":"Delete a Tracking Domain for Server","id":"05147199-b249-4bc0-820a-a1ac74686c09","request":{"method":"DELETE","header":[],"url":"//v1/servers/:serverId/tracking/:domain","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58","id":"190e689d-61d9-445b-a97f-214f2fe41b58","name":"Tracking Domain","type":"folder"}},"urlObject":{"path":["v1","servers",":serverId","tracking",":domain"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your serverId number.</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"serverId"},{"description":{"content":"<p>(Required) The domain for the  tracking domain entry you are deleting.</p>\n","type":"text/plain"},"type":"any","value":"tracking.example.com","key":"domain"}]}},"response":[{"id":"24fd1401-62d8-4981-a602-8fa158574bdd","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the  tracking domain entry you are deleting."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"61d0e027-7e1a-4880-ab70-44f9d44b6fda","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the  tracking domain entry you are deleting."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InvalidRequestBody\",\n    \"message\": \"The request is invalid, request body may be missing.\"\n  }\n]"},{"id":"bf2a1efd-fb57-4855-abaa-1b90b7e7c01e","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the  tracking domain entry you are deleting."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"InsufficientPermission\",\n    \"message\": \"The API key you provided does not have sufficient permission to perform the requested operation.\"\n  }\n]"},{"id":"acbc8b73-015c-4cd3-b33c-f34e584375e8","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API Key.","key":"Authorization","value":"Bearer "}],"url":{"raw":"//v1/servers/:serverId/tracking/:domain","host":["/"],"path":["v1","servers",":serverId","tracking",":domain"],"variable":[{"key":"serverId","value":"12345","description":"(Required) Your serverId number."},{"key":"domain","value":"tracking.example.com","description":"(Required) The domain for the  tracking domain entry you are deleting."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"errorType\": \"EntryNotFound\",\n    \"message\": \"Domain does not exist for your server.\"\n  }\n]"}],"_postman_id":"05147199-b249-4bc0-820a-a1ac74686c09"}],"id":"190e689d-61d9-445b-a97f-214f2fe41b58","description":"<p>The Tracking Domain endpoint allows you to add, update or delete Tracking Domains for your server. Additionally, you can get a list of all Tracking Domain entries for your server or query for a single domain.</p>\n<h2 id=\"about-tracking-domains\">About Tracking Domains</h2>\n<h3 id=\"what-is-a-tracking-domain\">What is a Tracking Domain?</h3>\n<p>The Engagement Tracking feature allows you to detect how your email recipients are interacting with messages sent to them; specifically, if they are opening the message, clicking on links within the message, or if the recipient has requested to be unsubscribed from the messages they are receiving.</p>\n<p>In order to use the <a href=\"https://help.socketlabs.com/docs/engagement-tracking\">Engagement Tracking</a> feature, you must configure one or more Tracking Domains. Tracking Domains are used to white-label the links and images in your email messages, allowing the domains in the URL to match your own domain while still allowing SocketLabs to track engagement.</p>\n<h3 id=\"prerequisites\">Prerequisites</h3>\n<p>In order to set up a Tracking Domain, a CNAME record must be established with your DNS service provider. This CNAME must point a subdomain to the <code>tracking.socketlabs.com</code> domain. This can also be used for enabling the Custom Bounce feature. You can re-use the CNAME record created for engagement tracking to customize your bounce domain. For more information about setting up a CNAME record for Tracking Domains, please see the <a href=\"https://help.socketlabs.com/docs/cname-configuration-for-bounce-tracking\">CNAME Configuration</a> article in the SocketLabs Help Center.</p>\n<h2 id=\"data-models\">Data Models</h2>\n<h3 id=\"tracking-domain-post-request-object\">Tracking Domain POST Request Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n</tr>\n<tr>\n<td>opensEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>clicksEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>unsubscribesEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>automaticTrackingEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>googleAnalyticsEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"tracking-domain-put-request-object\">Tracking Domain PUT Request Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>opensEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>clicksEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>unsubscribesEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>automaticTrackingEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>googleAnalyticsEnabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"tracking-domain-response-object\">Tracking Domain Response Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>opensEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>clicksEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>unsubscribesEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>automaticTrackingEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>googleAnalyticsEnabled</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>encryptedTrackingStatus</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>validationResult</td>\n<td>string</td>\n<td>This field only used on the POST and PUT endpoints, not the GET</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-types\">Error Types</h2>\n<p>Sometimes there will be an error fulfilling your request. This will result in the standard Management <a href=\"#6407ab22-ea51-47db-b511-6735bf8d2c6e\">API Error object</a>. Here are some of the Error Types that you may encounter with the tracking domain endpoint, along with a brief description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CnameResolutionFailure</td>\n<td>The domain does not resolve to <code>tracking.socketlabs.com</code>.</td>\n</tr>\n<tr>\n<td>DomainNotAllowed</td>\n<td>The requested domain is not allowed.</td>\n</tr>\n<tr>\n<td>EntryAlreadyExists</td>\n<td>The domain is currently in use on your server.</td>\n</tr>\n<tr>\n<td>EntryNotFound</td>\n<td>Domain does not exist for your server.</td>\n</tr>\n<tr>\n<td>InvalidDomainFormat</td>\n<td>Domain name not formatted correctly.</td>\n</tr>\n<tr>\n<td>MaximumTrackingDomainLimitExceeded</td>\n<td>The maximum number of Tracking Domain entries has been reached.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n<tr>\n<td>CannotEnableHttpsTracking</td>\n<td>Unable to enable Https Tracking. Domain name contains wildcard hostname.</td>\n</tr>\n<tr>\n<td>EntryNotFound</td>\n<td>Domain does not exist for your server.</td>\n</tr>\n<tr>\n<td>InvalidQueryString</td>\n<td>The request is invalid, request query string may be missing.</td>\n</tr>\n<tr>\n<td>InsufficientPermission</td>\n<td>The API key you provided does not have sufficient permission to perform the requested operation.</td>\n</tr>\n<tr>\n<td>InternalServerError</td>\n<td>An unknown error has occured.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"_postman_id":"190e689d-61d9-445b-a97f-214f2fe41b58"}],"id":"61d8101d-6ad4-4e8d-96b7-204f9b3c0635","description":"<h2 id=\"error-handling\">Error Handling</h2>\n<p>Sometimes there will be errors with your API call. This could be due to any number of issues such as incorrect syntax, validation errors, limits being exceeded, or something going wrong on our server. When this happens the HTTP response will contain an error code, with additional information provided in the response body. The body can contain either a single error or a list of errors.</p>\n<h3 id=\"example-error\">Example error:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"errorType\": \"InvalidDomainFormat\",\n    \"message\": \"Domain name not formatted correctly.\"\n  }]\n\n</code></pre>\n<h2 id=\"api-error-model\">API Error Model</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property Name</strong></th>\n<th><strong>Data Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>string</td>\n</tr>\n<tr>\n<td>errorType</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"4f8b1f01-5576-426a-9e8a-d7c3a8cef13d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"84d90b9d-c7b2-423c-b5e4-75a82b407a27","type":"text/javascript","exec":[""]}}],"_postman_id":"61d8101d-6ad4-4e8d-96b7-204f9b3c0635"},{"name":"Injection API","item":[{"name":"Send Email - Simple Sender","id":"d1205ac9-14cd-4b0e-81a3-99bbed513f70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"serverId\": YOUR-SERVER-ID,\r\n    \"Messages\": [\r\n        {\r\n            \"To\": [\r\n                {\r\n                    \"emailAddress\": \"recipient1@example.com\"\r\n                }\r\n            ],\r\n            \"From\": {\r\n                \"emailAddress\": \"from@example.com\"\r\n            },\r\n            \"Subject\": \"Sending a Basic Message\",\r\n            \"TextBody\": \"This is the Plain Text Body of my message.\",\r\n            \"HtmlBody\": \"<html>This is the Html Body of my message.</html>\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://inject.socketlabs.com/api/v1/email","urlObject":{"protocol":"https","path":["api","v1","email"],"host":["inject","socketlabs","com"],"query":[],"variable":[]}},"response":[{"id":"1c5c40c3-551c-4431-8430-1c3082b8e1a9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"serverId\": YOUR-SERVER-ID,\r\n    \"Messages\": [\r\n        {\r\n            \"To\": [\r\n                {\r\n                    \"emailAddress\": \"recipient1@example.com\"\r\n                }\r\n            ],\r\n            \"From\": {\r\n                \"emailAddress\": \"from@example.com\"\r\n            },\r\n            \"Subject\": \"Sending a Basic Message\",\r\n            \"TextBody\": \"This is the Plain Text Body of my message.\",\r\n            \"HtmlBody\": \"<html>This is the Html Body of my message.</html>\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://inject.socketlabs.com/api/v1/email"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"Success\",\n    \"MessageResults\": [],\n    \"TransactionReceipt\": \"null\"\n}"},{"id":"19846906-980c-4887-87cb-479f8c4c24b8","name":"Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"serverId\": YOUR-SERVER-ID,\r\n    \"Messages\": [\r\n        {\r\n            \"To\": [\r\n                {\r\n                    \"emailAddress\": \"recipient1@example.com\"\r\n                }\r\n            ],\r\n            \"From\": {\r\n                \"emailAddress\": \"from@example.com\"\r\n            },\r\n            \"Subject\": \"Sending a Basic Message\",\r\n            \"TextBody\": \"This is the Plain Text Body of my message.\",\r\n            \"HtmlBody\": \"<html>This is the Html Body of my message.</html>\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://inject.socketlabs.com/api/v1/email"},"status":"Bad Request","code":400,"_postman_previewlanguage":"Text","header":["",{"key":"Content-Type","value":"application/json","description":""}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"\n{\n    \"errorCode\": \"Warning\",\n    \"transactionReceipt\": \"abcdefghijklmnop1234567890\",\n    \"messageResults\": [\n        {\n            \"index\": 0,\n            \"errorCode\":  \"Warning\",\n            \"addressResults\": [\n            {\n                \"EmailAddress\": \"invalid-email-address\",\n                \"Accepted\": false,\n                \"ErrorCode\": \"InvalidAddress\"\n            }\n            ]\n        },\n        {\n            \"index\": 1,\n            \"errorCode\": \"NoValidBodyParts\",\n            \"addressResults\": null\n        }\n    ]\n}\n"}],"_postman_id":"d1205ac9-14cd-4b0e-81a3-99bbed513f70"}],"id":"b11506e2-a47c-484f-a0ee-5b4471905196","description":"<h1 id=\"getting-started-create-an-api-key\">Getting Started: Create an API Key</h1>\n<p>For Complex Sender and Simple Sender, regardless of version, an API key must be created on the <a href=\"https://desktop.postman.com/?desktopVersion=10.15.0&amp;webVersion=10.15.1-ui-230614-0648&amp;userId=1818005&amp;teamId=278446\">API Key Management</a> page in your SocketLabs account. Be sure to choose the `Injection Api` API Access option so your API key will have the correct access.</p>\n<p>It is important to keep your API key secure because it can be used to modify features for your SocketLabs account.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>All calls to the SocketLabs API are authenticated using the API key that you generated. Authenticate your calls to the SocketLabs API using the <code>Authorization</code> header with the <code>Bearer</code> authentication scheme.</p>\n<h3 id=\"example-bearer-authorization-header\">Example Bearer authorization header:</h3>\n<p><code>Authorization: Bearer YOUR-API-KEY</code></p>\n<p>If your application or system does not support the <code>Bearer</code> authentication scheme, you may also use the <code>Basic</code> scheme. If using the <code>Basic</code> scheme, you may use any string as the username and then your API key as the password. More information about <code>Basic</code> authentication can be found <a href=\"https://desktop.postman.com/?desktopVersion=10.15.0&amp;webVersion=10.15.1-ui-230614-0648&amp;userId=1818005&amp;teamId=278446\">here</a>.</p>\n<h3 id=\"example-basic-authorization-header\">Example Basic authorization header:</h3>\n<p><code>Authorization: Basic YOUR-API-KEY</code></p>\n<h2 id=\"error-handling\">Error Handling</h2>\n<p>Your application should be designed to gracefully handle failure conditions and connectivity issues such as receiving no response or an error response from our API. The Injection API has several restrictions in place to prevent too great of an email volume from being injected in a single outbound message.</p>\n<h2 id=\"browser-applications\">Browser Applications</h2>\n<p>For security reasons, the Injection API does not work directly from browser-based applications. If you attempt to access the API from the browser you will receive a CORS error such as:</p>\n<p><em>Access to XMLHttpRequest at ‘</em><a href=\"https://api.example.com/%E2%80%99\"><i>https://api.example.com/’</i></a> <em>from origin ‘</em><a href=\"https://customerexample.com%E2%80%99\"><i>https://customerexample.com’</i></a> <em>has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.</em></p>\n<p>In order to use the Injection API with your browser-based application, you must use an intermediary server to handle calls to the Injection API. This allows you to keep your API key secure. More information about this can be found in <a href=\"https://www.socketlabs.com/blog/keeping-your-api-keys-secure-in-browser-applications/\">our blog</a>.</p>\n<h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>The specific restrictions regarding the properties of an individual injection request are as follows:</p>\n<p>No more than ten (10) outbound messages in a single injection request.</p>\n<p>No more than five hundred (500) recipients among all outbound messages in a single injection request. This means that there can be no more than fifty (50) recipients if the maximum number of ten (10) messages is being injected at once.</p>\n<p>An individual outbound message may have no more than fifty (50) recipients regardless of other restrictions.</p>\n<p>The sum of all outbound messages in a single injection request can be no more than 25MB in size.</p>\n<p>In addition to the above restrictions on content, the following throttling rules apply to this API:</p>\n<p>We allow up to five (5) injection requests per API key (or IP Address) per second.</p>\n<p>We allow up to five (5) authentication failures within a two (2) minute window per API key (or IP address). When this limit is reached, additional injection requests are blocked for the remainder of the two (2) minute window.</p>\n<p>Current restrictions with all aspects of the API may change to allow greater volume and speed in the future.</p>\n<p>In order to make it easy to get started with the Injection API we provide client libraries in several different programming languages. When configuring the Injection API you can choose one of these languages to get a quick start with the library for your chosen language.</p>\n<p>We also maintain GitHub repositories for each of the client libraries. These repositories contain the full source code for the library, as well as detailed examples for many different use cases. We encourage you to take a look at these examples when getting started with the libary.</p>\n<p>We provide client libraries for the following languages:</p>\n<ul>\n<li><a href=\"https://github.com/socketlabs/socketlabs-csharp\">C#</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-go\">Go</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-java\">Java</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-nodejs\">Node.js</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-php\">PHP</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-powershell\">PowerShell</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-python\">Python</a></li>\n<li><a href=\"https://github.com/socketlabs/socketlabs-ruby\">Ruby</a></li>\n</ul>\n<p>The Injection API is a versatile and malleable tool that can be used to send messages in a variety of fashions. This section will briefly go over the different types or way you can configure the JSON request to fulfill the needs of the messages you are sending.</p>\n<h4 id=\"basic-send\">Basic Send</h4>\n<p>A basic send is the simplest way to send a message through the Injection API. The most simple explanantion would be sending messages in this fashion would be similar to creating and sending a message through a common user-friendly program or application such as Outlook or Apple Mail. You add the content of a message and the To, From, CC and BCC recipients to the message and you can send it out. This method is basic in that you would generally only be sending the content of a single message to a single or a few recipients. It is important to note that If you plan on doing a basic send you will either need to have the PerMessage array set to null or not in the JSON at all. Please be aware that using the MergeData and PerMessage arrays our system disables the CC and BCC fields as they are redundant and not needed. Please see JSON samples for an example.</p>\n<h4 id=\"bulk-send\">Bulk Send</h4>\n<p>A bulk send is utilizing the Injection API to send a the content of a single message to mutliple recipients in such a manner that each recipient will receive the same message, but unlike with a message being sent from something like Outlook, each recipient will only see that the message was delivered to them. This sending method takes advantage of our MergeData and PerMessage arrays. This way you can customize a message for each recipient and by using our placeholder syntax in the To field ( %%DeliveryAddress%%) our system will recognize this placeholder and replace it with the address of each recipient defined in the PerMessage section of the JSON. This allows the API to build individual messages for each recipient keeping each message isolated from each other. Please see JSON Samples for an example.</p>\n<h4 id=\"customizing-messages\">Customizing Messages</h4>\n<p>With the use of our MergeData and PerMessage arrays you can define additional placeholder fields in the Content of your messgaes and any of the other Field:Value pairs within the JSON. By setting the Value of a Field to a %%FieldName%% and then defining that in the PerMessage array for each recipient, it will be replaced by that value for each recipipent. This allows you to customize messages for each recipient.</p>\n<h4 id=\"attachments\">Attachments</h4>\n<p>The Injection API supports the use of attachments of any kind. The only real requirement is that when defining the content of the attachment in the Content field, it must be a base64 encoded string. Anything else will result in an invalid data error being returned by our system.</p>\n<h2 id=\"api-templates\">API Templates</h2>\n<p>SocketLabs API Templates allow software developers to programmatically send email content which is easily created in our <a href=\"http://www.socketlabs.com/blog/introducing-new-email-designer/\">new email designer</a>. By separating the email content and design from the code, marketers and designers have full visibility into and control of the email content, design, and branding. Furthermore, email content can be updated without having to get developers involved, and without requiring changes to code or software deployments.</p>\n<p>To get started, first log into the <a href=\"https://cp.socketlabs.com/\">SocketLabs On-Demand Control Panel</a> and create some content. You may use our new drag and drop editor to create and save your content quickly and easily or you can create and save raw HTML and/or plain text content. Once you save your content, simply hover over its thumbnail in the Content Manager to get the associated API Template ID. Once you have the Template ID, this value is what you will provide in the “ApiTemplate” field in the JSON or XML that you pass with your API call. Please note that if you are using the “ApiTemplate” field, you’ll need to omit the “TextBody” and “HtmlBody” fields or your API call will result in a “MessageBodyConflict” error.</p>\n<p>You can also use our mail merging functionality in combination with the API Templates feature. Merge fields in your email content are declared using a ##FieldName## placeholder syntax, and any merge data included in your API call will replace the (matching named) placeholder text with the specified value. Any merge fields that are declared in your email content but do not have matching data in your API call will be left blank in the resulting message.</p>\n<p>Please see <a href=\"https://www.socketlabs.com/blog/unleash-power-merge-fields/\">this blog article</a> for a best example of using this feature.</p>\n<h2 id=\"delivery-return-codes\">Delivery Return Codes</h2>\n<p>The following failure codes may be returned from the outbound email injection request inside of the PostResponse return object.</p>\n<p>Return codes within the PostResponse object, specifying the status of the injection request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Success - No error.\nWarning – There were one or more failed messages and/or recipients.\nAccountDisabled - The account has been disabled.\nInternalError - Internal server error. (Please report to SocketLabs\n                support if encountered.)\nInvalidAuthentication - The ServerId/ApiKey combination is invalid.\nInvalidData - PostBody parameter does not have a valid structure, or\n              contains invalid or missing data.\nNoMessages - There were no messages to inject included in the request.\nEmptyMessage - One or more messages have insufficient content to process.\nOverQuota - Rate limit exceeded.\nTooManyErrors - Authentication error limit exceeded.\nTooManyMessages - Too many messages in a single request.\nTooManyRecipients - Too many recipients in a single message.\nNoValidRecipients - A merge was attempted, but there were no valid recipients.\n\n</code></pre><p>Return codes within the MessageResult object, specifying the status of a specific message:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Warning - The message has one or more bad recipients.\nInvalidAttachment - The message has one or more invalid attachments.\nMessageTooLarge - The message was larger than the allowed size.\nEmptySubject - This message contained an empty subject line, which is not allowed.\nEmptyToAddress - This message does not contain a To address.\nInvalidFromAddress - This message does not contain a valid From address.\nNoValidBodyParts - This message does not have a valid text HTML body specified.\nNoValidRecipients - There are no valid addresses specified as message recipients.\nInvalidMergeData - The included merge data does not follow the API specification.\nInvalidTemplateId - The selected API Template does not exist.\nMessageBodyConflict - The Html Body and Text Body cannot be set when also specifying an API Template ID.\nMetadataOrTagsAreTooLarge - Metadata and tags exceed 12.5KB\n\n</code></pre><p>Return codes within the AddressResult object, specifying the status of a specific recipient:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>InvalidAddress - The address did not meet specification requirements.\n\n</code></pre><h1 id=\"data-models\">Data Models</h1>\n<h2 id=\"injectionapipostbody\">InjectionApiPostBody</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>serverId</td>\n<td>string</td>\n<td>The numeric id of the virtual server being used.</td>\n</tr>\n<tr>\n<td>APIKey</td>\n<td>string</td>\n<td>The per-server API key used to authenticate.</td>\n</tr>\n<tr>\n<td>Messages</td>\n<td>array[EmailMessage]</td>\n<td>An array of one (1) or more EmailMessage instances.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"emailmessage\">EmailMessage</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>To</td>\n<td>array[Recipient]</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the recipients of an email message.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>From</td>\n<td>Recipient</td>\n<td>The EmailAddress/FriendlyName value pair for the sender of the message.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>ReplyTo</td>\n<td>Recipient</td>\n<td>The EmailAddress/FriendlyName value pair for the sender of the message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Subject</td>\n<td>string</td>\n<td>The subject line of the email address.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>TextBody</td>\n<td>string</td>\n<td>Body of text that would be the content of the message this or HTML required</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>HtmlBody</td>\n<td>string</td>\n<td>Body of HTML that would be the content of the message this or text required</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>AmpBody</td>\n<td>string</td>\n<td>body portion</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ApiTemplate</td>\n<td>string</td>\n<td>An integer ID referencing content from the Email Content Manager in the SocketLabs Control Panel.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MessageId</td>\n<td>string</td>\n<td>SocketLabs header used to tag individual messages.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MailingId</td>\n<td>string</td>\n<td>SocketLabs header used to track batches of messages.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Charset</td>\n<td>string</td>\n<td>The charset name to be used when creating the message. Default is UTF8.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CustomHeaders</td>\n<td>array[CustomHeader]</td>\n<td>An array of header field data stored in Name/Value pairs.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CC</td>\n<td>array[Recipient]</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the CC’d recipients of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>BCC</td>\n<td>array[Recipient]</td>\n<td>An array of recipient EmailAddress/FriendlyName value pairs representing the BCC’d recipients of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Attachments</td>\n<td>array[Attachment]</td>\n<td>An array of attached content blobs, such as images, documents, and other binary files.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>MergeData</td>\n<td>MergeData</td>\n<td>Data storage for the inline Merge feature.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Meta</td>\n<td>array[Key, Value]</td>\n<td>An array of key value pairs of meta data. Total byte size of tags and metadata combined must be under 12.5 kb</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Tags</td>\n<td>array[string]</td>\n<td>An array of Tag strings. Total byte size of tags and metadata combined must be under 12.5 kb</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"recipient\">Recipient</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>emailAddress</td>\n<td>string</td>\n<td>An email address string such as ‘<a href=\"https://mailto:foo@example.com\">foo@example.com</a>’.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>friendlyName</td>\n<td>string</td>\n<td>An alias for an email address.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"custom-headers\">Custom Headers</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>The name of the header field to be added, such as ‘Content-Type’.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>string</td>\n<td>The value of the header field to be added, such as ‘application/json’.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"attachment\">Attachment</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>The Name of the attachment file.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Content</td>\n<td>string</td>\n<td>The BASE64 encoded string containing the contents of an attachment.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentId</td>\n<td>string</td>\n<td>When set, used to embed an image within the body of an email message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>ContentType</td>\n<td>string</td>\n<td>The MIME type of an attachment.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>CustomHeaders</td>\n<td>array[CustomHeaders]</td>\n<td>An array of header field data stored in Name/Value pairs.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"mergedata\">MergeData</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PerMessage</td>\n<td>array[array[MergeValueData]]</td>\n<td>An two dimensional (2D) array of Field/Value pairs, used to define merge field data for each message. Variables can be freely named, with the exception of a single reserved word, ‘DeliveryAddress‘, which defines the recipient of the current message.</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Global</td>\n<td>array[MergeValueData]</td>\n<td>A array of Field:Value pairs that will be applied globally to all recipients.</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"mergevaluedata\">MergeValueData</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Field</td>\n<td>string</td>\n<td>optional</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>string</td>\n<td>optional</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"d91bc091-d84d-4dde-b41f-ec71bf33c57e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c13b68a8-0e29-4a70-a728-f6ce43b6c9bf","type":"text/javascript","exec":[""]}}],"_postman_id":"b11506e2-a47c-484f-a0ee-5b4471905196"}],"id":"c524a539-04bd-4d61-9b6c-ac968f09bc90","auth":{"type":"noauth","isInherited":false},"_postman_id":"c524a539-04bd-4d61-9b6c-ac968f09bc90","description":""},{"name":"Changelog","item":[],"id":"e9e7daf9-49f3-41aa-961c-8631e692e006","description":"<h1 id=\"socketlabs-api\">SocketLabs API</h1>\n<h1 id=\"1037668-2025-10-08\">[1.0.37668] 2025-10-08</h1>\n<h2 id=\"added\">Added</h2>\n<h3 id=\"complex-sender-features\">Complex Sender Features</h3>\n<ul>\n<li><p>Email Relay - Adding new relay types for Email Relay IP Pools</p>\n</li>\n<li><p>Reporting Connectors - Adding new connector type for Reporting Subaccounts</p>\n</li>\n</ul>\n<h1 id=\"1035103-2025-06-19\">[1.0.35103] 2025-06-19</h1>\n<h2 id=\"added-1\">Added</h2>\n<h3 id=\"complex-sender-features-1\">Complex Sender Features</h3>\n<ul>\n<li>Email Relay (Beta) - Ability to forward email to an SMTP</li>\n</ul>\n<h1 id=\"1034555-2025-05-28\">[1.0.34555] 2025-05-28</h1>\n<h2 id=\"changed\">Changed</h2>\n<h3 id=\"all-account-types\">All Account Types</h3>\n<ul>\n<li><p>Reports</p>\n<ul>\n<li><p>Aggregate Reports - Adding the ability to specify up to 2 aggregate types.</p>\n</li>\n<li><p>All Reports - Adding additional filter capabilities for additional and/or comparisons with miltiple condition groupings</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1033925-2025-04-30\">[1.0.33925] 2025-04-30</h2>\n<h3 id=\"added-2\">Added</h3>\n<p>Complex Sender Features</p>\n<ul>\n<li>Reporting Connectors - Adding new connector type for Reporting Subaccounts</li>\n</ul>\n<h2 id=\"1032950-2025-03-26\">[1.0.32950] 2025-03-26</h2>\n<h3 id=\"added-3\">Added</h3>\n<p>All Account Types</p>\n<ul>\n<li><p>Reports</p>\n<ul>\n<li>All message detail reports are adding a new column named ProcessedTime. Shows the time the at which the message was either delivered or failed.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1030056-2024-10-23\">[1.0.30056] 2024-10-23</h2>\n<h2 id=\"added-4\">Added</h2>\n<h3 id=\"all-account-types-1\">All Account Types</h3>\n<ul>\n<li><p>User Notifications</p>\n<ul>\n<li><p>Account Admin and Billing roles are enrolled to receive Critical Billing and Suspension notifications.</p>\n</li>\n<li><p>Account Point of Contacts are enrolled to receive Critical Billing and Suspension notifications.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"self-serve-features\">Self Serve Features</h3>\n<ul>\n<li>Servers<ul>\n<li>Added Multi-SuperTag maintenance</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"complex-sender-features-2\">Complex Sender Features</h3>\n<ul>\n<li><p>Connectors</p>\n<ul>\n<li>Added Multi-SuperTag maintenance for a Reporting Subaccount</li>\n</ul>\n</li>\n<li><p>Reporting Subaccounts</p>\n<ul>\n<li>Added Multi-SuperTag maintenance</li>\n</ul>\n</li>\n<li><p>Advanced Authentication</p>\n<ul>\n<li>Added ability to assign a DKIM record as an Identity DKIM on an IP Pool</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"changed-1\">Changed</h2>\n<h3 id=\"self-serve-features-1\">Self Serve Features</h3>\n<ul>\n<li>Servers<ul>\n<li>Removing single SuperTag Key from Server Config</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"complex-sender-features-3\">Complex Sender Features</h3>\n<ul>\n<li>Connectors<ul>\n<li>Removing single SuperTag Key from Connector Config</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1028248-2024-08-22\">[1.0.28248] 2024-08-22</h2>\n<h2 id=\"added-5\">Added</h2>\n<h3 id=\"all-account-types-2\">All Account Types</h3>\n<ul>\n<li><p>Reports</p>\n<ul>\n<li><p>Added Event Date based reporting to all reports. Feature not available for all plans.</p>\n</li>\n<li><p>Added SuperTag as an aggregate type in all aggregate reports</p>\n</li>\n</ul>\n</li>\n<li><p>User Management - Ability to modify two factor authentication on behalf of a user by an Account Admin or a User Admin</p>\n</li>\n</ul>\n<h3 id=\"complex-sender-features-4\">Complex Sender Features</h3>\n<ul>\n<li><p>Advanced Authentication - Adding assignment of DKIM and Bounce Domains to Subaccounts from the Account.</p>\n</li>\n<li><p>Rule Engine - Adding new rule types, Metadata, Tags, SuperTag.</p>\n</li>\n<li><p>Domain Management - Adding optional sending domain restrictions. Feature not available for all plans.</p>\n</li>\n</ul>\n<h2 id=\"changed-2\">Changed</h2>\n<h3 id=\"all-account-types-3\">All Account Types</h3>\n<ul>\n<li>Reports - Added Event Date based reporting to all reports. Feature not available for all plans.</li>\n</ul>\n<h2 id=\"1027085-2024-07-18\">[1.0.27085] 2024-07-18</h2>\n<h2 id=\"added-6\">Added</h2>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li>Reports - Added Tag Filter - filter applies to all overview and aggregate reports.</li>\n</ul>\n<h2 id=\"changed-3\">Changed</h2>\n<h3 id=\"complex-sender-features-5\">Complex Sender Features</h3>\n<ul>\n<li>Subaccount Management - Adding SuperTag Key Management - Adds a new aggregate type in all aggregate reports</li>\n</ul>\n<h3 id=\"simple-sender-features\">Simple Sender Features</h3>\n<ul>\n<li>Server Management - Adding SuperTag Key Management - Adds a new aggregate type in all aggregate reports</li>\n</ul>\n<h2 id=\"1026034-2024-06-06\">[1.0.26034] 2024-06-06</h2>\n<h3 id=\"changed-4\">Changed</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li><p>Reporting</p>\n<ul>\n<li><p>added functionality to support usage reporting</p>\n</li>\n<li><p>Fixed Message Detail Report filter errors for SystemMessageID</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1021140-2024-05-08\">[1.0.21140] 2024-05-08</h2>\n<h3 id=\"changed-5\">Changed</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li>Event Webhooks - modified Test Post examples to include the response from the webhook Url</li>\n</ul>\n<h2 id=\"1025130-2024-05-03\">[1.0.25130] 2024-05-03</h2>\n<h3 id=\"changed-6\">Changed</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li>Reporting - Added additional performance enhancements</li>\n</ul>\n<h3 id=\"added-7\">Added</h3>\n<p><strong>Complex Sender Features</strong></p>\n<ul>\n<li>Subaccount StreamMonitor - Added Report by Sending Domain and SuperTag</li>\n</ul>\n<h2 id=\"1021140-2024-01-10\">[1.0.21140] 2024-01-10</h2>\n<h3 id=\"changed-7\">Changed</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li>Reports - added 500,000 limits to cvs downloads</li>\n</ul>\n<h3 id=\"added-8\">Added</h3>\n<p><strong>Complex Sender Features</strong></p>\n<ul>\n<li>Reporting Connectors - Adding connectors for Reporting Subaccounts</li>\n</ul>\n<h2 id=\"1019528-2023-11-06\">[1.0.19528] 2023-11-06</h2>\n<h3 id=\"added-9\">Added</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li>Inbound Webhooks - Adding endpoints to add inbound webhooks on Servers and Subaccounts</li>\n</ul>\n<h2 id=\"1019104-2022-11-06\">[1.0.19104] 2022-11-06</h2>\n<h3 id=\"changed-8\">Changed</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li>Reports - Added additional Detail types to message detail reports</li>\n</ul>\n<h2 id=\"1018656-2022-10-25\">[1.0.18656] 2022-10-25</h2>\n<h3 id=\"changed-9\">Changed</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li>Reports - Additional performance enhancements and bugfixes</li>\n</ul>\n<h3 id=\"added-10\">Added</h3>\n<p><strong>Complex Sender Features</strong></p>\n<ul>\n<li>IP Pool Queue - Count, Detail, Pause &amp; Purge functions</li>\n</ul>\n<h2 id=\"1014432-2022-05-10\">[1.0.14432] 2022-05-10</h2>\n<h3 id=\"added-11\">Added</h3>\n<p><strong>Simple Sender Features</strong></p>\n<ul>\n<li>Reports - Adding Hourly Aggregate to all reports</li>\n</ul>\n<p><strong>Complex Sender Features</strong></p>\n<ul>\n<li>Reports - Adding Hourly Aggregate to Sending Overview</li>\n</ul>\n<h3 id=\"changed-10\">Changed</h3>\n<p><strong>All Account Types</strong></p>\n<ul>\n<li><p>User Management</p>\n<ul>\n<li><p>Add, Edit, Delete User</p>\n</li>\n<li><p>Update User Preferences</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1014006-2022-04-26\">[1.0.14006] 2022-04-26</h2>\n<h3 id=\"added-12\">Added</h3>\n<p><strong>Simple Sender Features</strong></p>\n<ul>\n<li>Server: Sending IP List</li>\n</ul>\n<p><strong>Complex Sender Features</strong></p>\n<ul>\n<li><p>Subaccount: Sending IP List</p>\n</li>\n<li><p>IP Pool</p>\n<ul>\n<li><p>Sending IP List</p>\n</li>\n<li><p>Adding Count of Subaccounts processed to IP Pool Response</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1012509-2022-3-8\">[1.0.12509] 2022-3-8</h2>\n<h3 id=\"added-13\">Added</h3>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li><p>Account Engagement Tracking Domains</p>\n</li>\n<li><p>Account Bounce Domains</p>\n</li>\n<li><p>Account DKIM Identity Domains</p>\n</li>\n<li><p>StreamMonitor Top Insights Reports</p>\n<ul>\n<li><p>List Hygiene</p>\n</li>\n<li><p>Recipient Frequency</p>\n</li>\n<li><p>Sign-up Policies</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"changed-11\">Changed</h3>\n<p><strong>Simple Sender Features:</strong></p>\n<ul>\n<li><p>Server Reports - Added Mailing Names from Marketing Mailings to reports</p>\n<ul>\n<li><p>Delivered Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Engagement Tracking Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Complaints Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Failed Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Inbound Parse Reports (Overview &amp; Detail)</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1012004-2022-2-15\">[1.0.12004] 2022-2-15</h2>\n<h3 id=\"added-14\">Added</h3>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li>StreamMonitor - IPPool Reports</li>\n</ul>\n<h3 id=\"changed-12\">Changed</h3>\n<p><strong>Simple Sender Features:</strong></p>\n<ul>\n<li>Server - Engagement Tracking Default Settings Updates</li>\n</ul>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li>Subaccount - Engagement Tracking Default Settings Updates</li>\n</ul>\n<h2 id=\"1011605-2022-2-1\">[1.0.11605] 2022-2-1</h2>\n<h3 id=\"changed-13\">Changed</h3>\n<p><strong>Simple Sender Features:</strong></p>\n<ul>\n<li><p>Server Reports - General Maintenance</p>\n<ul>\n<li><p>Delivered Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Engagement Tracking Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Complaints Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Failed Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Inbound Parse Reports (Overview &amp; Detail)</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li><p>Subaccount Reports - General Maintenance</p>\n<ul>\n<li><p>Delivered Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Engagement Tracking Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Complaints Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Failed Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Inbound Parse Reports (Overview &amp; Detail)</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"1010864-2022-12-22\">[1.0.10864] 2022-12-22</h2>\n<h3 id=\"added-15\">Added</h3>\n<p><strong>Simple Sender Features:</strong></p>\n<ul>\n<li><p>Server Reports</p>\n<ul>\n<li><p>Delivered Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Inbound Parse Reports (Overview &amp; Detail)</p>\n</li>\n</ul>\n</li>\n<li><p>Marketing Api Credentials</p>\n</li>\n</ul>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li><p>Subaccount Reports</p>\n<ul>\n<li>Delivered Messages Reports (Overview, Aggregates, &amp; Detail)</li>\n</ul>\n</li>\n<li><p>Rule Engine</p>\n</li>\n</ul>\n<h2 id=\"1010113-2022-11-15\">[1.0.10113] 2022-11-15</h2>\n<h3 id=\"added-16\">Added</h3>\n<p><strong>Simple Sender Features:</strong></p>\n<ul>\n<li><p>User Management</p>\n</li>\n<li><p>Server Reports</p>\n<ul>\n<li><p>Recipient Search</p>\n</li>\n<li><p>Engagement Tracking Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Complaints Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Failed Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li><p>Subaccount Reports</p>\n<ul>\n<li><p>Recipient Search</p>\n</li>\n<li><p>Engagement Tracking Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Complaints Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Failed Messages Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"changed-14\">Changed</h3>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li>StreamMonitor (Performance Enhancements and data additions)</li>\n</ul>\n<h2 id=\"109394-2022-10-13\">[1.0.9394] 2022-10-13</h2>\n<h3 id=\"added-17\">Added</h3>\n<p><strong>Simple Sender Features:</strong></p>\n<ul>\n<li>Server Credentials</li>\n</ul>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li><p>Subaccount Credentials</p>\n</li>\n<li><p>Message Reports (Overview, Aggregates, &amp; Detail)</p>\n</li>\n<li><p>Account Api Credentials</p>\n</li>\n</ul>\n<h3 id=\"changed-15\">Changed</h3>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li>StreamMonitor (Performance Enhancements and data additions)</li>\n</ul>\n<h2 id=\"108847-2022-09-22\">[1.0.8847] 2022-09-22</h2>\n<h3 id=\"added-18\">Added</h3>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li><p>Message Overview Reports</p>\n</li>\n<li><p>Account Level Suppressions</p>\n</li>\n<li><p>Account Level Webhooks</p>\n</li>\n</ul>\n<h2 id=\"108204-2022-09-01\">[1.0.8204] 2022-09-01</h2>\n<h3 id=\"added-19\">Added</h3>\n<p><strong>Complex Sender Features:</strong></p>\n<ul>\n<li><p>IP Pool</p>\n</li>\n<li><p>Subaccount</p>\n</li>\n<li><p>IP Allocation</p>\n</li>\n<li><p>Suppression List (formerly Suppression API)</p>\n</li>\n<li><p>Event Webhook (formerly Notification API)</p>\n</li>\n<li><p>Existing Management API endpoints upgraded as v2 with response types upgraded to v2 response types.</p>\n</li>\n<li><p>Bounce Domain</p>\n</li>\n<li><p>DKIM</p>\n</li>\n<li><p>CName DKIM</p>\n</li>\n<li><p>Tracking Domain</p>\n</li>\n<li><p>Encrypted Tracking Domain</p>\n</li>\n<li><p>Sending Domain</p>\n</li>\n<li><p>Event Search</p>\n</li>\n</ul>\n<h3 id=\"changed-16\">Changed</h3>\n<p><strong>Simple Sender Features:</strong></p>\n<ul>\n<li><p>Existing Management API endpoints upgraded as v1.</p>\n</li>\n<li><p>Bounce Domain</p>\n</li>\n<li><p>DKIM</p>\n</li>\n<li><p>CName DKIM</p>\n</li>\n<li><p>Tracking Domain</p>\n</li>\n<li><p>Encrypted Tracking Domain</p>\n</li>\n<li><p>Sending Domain</p>\n</li>\n<li><p>Event Search</p>\n</li>\n</ul>\n<h1 id=\"management-api\">Management API</h1>\n<p>As of 2022-09-01 the Management is being deprecated. All existing functions still exist under v1 of the SocketLabs API.</p>\n<h2 id=\"10484-2022-05-17\">[1.0.484] 2022-05-17</h2>\n<h3 id=\"added-20\">Added</h3>\n<ul>\n<li>CName DKIM</li>\n</ul>\n<h2 id=\"10459-2022-04-12\">[1.0.459] 2022-04-12</h2>\n<h3 id=\"added-21\">Added</h3>\n<ul>\n<li>Sandbox Restrictions</li>\n</ul>\n<h2 id=\"10438-2022-03-08\">[1.0.438] 2022-03-08</h2>\n<h3 id=\"added-22\">Added</h3>\n<ul>\n<li><p>Sending Domain</p>\n</li>\n<li><p>Domain Verification</p>\n</li>\n</ul>\n<h2 id=\"10431-2021-09-16\">[1.0.431] 2021-09-16</h2>\n<h3 id=\"added-23\">Added</h3>\n<ul>\n<li>Event Search</li>\n</ul>\n<h2 id=\"10424-2021-08-25\">[1.0.424] 2021-08-25</h2>\n<h3 id=\"added-24\">Added</h3>\n<ul>\n<li>CRM Integration</li>\n</ul>\n<h2 id=\"10413-2021-05-15\">[1.0.413] 2021-05-15</h2>\n<p>Initial Release</p>\n<h3 id=\"added-25\">Added</h3>\n<ul>\n<li><p>Bounce Domain</p>\n</li>\n<li><p>DKIM</p>\n</li>\n<li><p>Tracking Domain</p>\n</li>\n<li><p>Encrypted Tracking Domain</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6d009f23-9f32-4936-9e34-1f609bdcf063","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b7b29da3-3690-4f20-83e1-fe19572c51ac","type":"text/javascript","exec":[""]}}],"_postman_id":"e9e7daf9-49f3-41aa-961c-8631e692e006"}],"auth":{"type":"bearer","bearer":{"token":"<token>"}},"event":[{"listen":"prerequest","script":{"id":"d1f97de5-5279-418b-9a5b-67b4033c3c43","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1ade5c70-dea0-4698-9148-a7eb30eac6e4","type":"text/javascript","exec":[""]}}],"variable":[{"id":"0ee9b433-c668-4e5d-b727-405c877d60f6","key":"baseUrl","value":"/","type":"string"}]}