{"info":{"_postman_id":"55703b6b-e8ef-c8d5-1cad-a41c1b076d53","name":"Newsletter2Go API","description":"Welcome and thanks for using Newsletter2Go.\n\nThese API docs can be easily made interactive by clicking the `Run in Postman` button on the top right of this site.\n\nIf you don't have an account yet, visit [https://ui.newsletter2go.com/register](https://ui.newsletter2go.com/register) to create a new account.\n\nOnce you have an account, log in and grab your API credentials from [https://ui.newsletter2go.com/api-client](https://ui.newsletter2go.com/api-client).\n\n_Legal Notice:_  \nThis documentation is provided as is by  \nSendinblue GmbH, Köpenicker Str. 126, 10179 Berlin, Germany  \nFull imprint and contact options can be found [here](https://www.newsletter2go.com/imprint)\n\n# Getting Started\n\n1. Download the free [Postman app](https://www.getpostman.com/apps).\n2. Click the `Run in Postman` button on the top right of this site.\n3. Make sure to select the `Newsletter2Go API` environment on the top right in Postman.\n4. Add your [user credentials](https://ui.newsletter2go.com/api-client) to the environment variables\n5. Run the first `Authentication` request. (Your `access token` will be automatically stored within the environment variables)\n6. Make any other subsequent call that you like.\n7. Improve and extend the Postman collection and share your results by creating a pull request in our [Postman collection repository](https://github.com/newsletter2go/api-docs).\n8. You can also watch this [crash course video](https://www.youtube.com/watch?v=Z3n3djbTfSg) on how to get started with our API using Postman.\n    \n\n# Additional Information\n\nFor simplicity’s sake, we have only documented the most important API calls on this page. If you cannot find a call that you need or expect to be there, make sure to monitor the network tab when navigating our [user interface](https://ui.newsletter2go.com). Most likely you will find it there.\n\nIf you found a bug or would like to improve our Postman collection, please create a pull request in our [Github repository](https://github.com/newsletter2go/api-docs).\n\nLast but not least, you can always check our [help docs](https://help.newsletter2go.com) or contact our \\[technical support team\\]([https://mailto:support@newsletter2go.com?subject=Newsletter2Go](https://mailto:support@newsletter2go.com?subject=Newsletter2Go) API documentation).\n\n# JSON First\n\nOur REST API exchanges data in the `JSON` data format. Every parameter / payload you pass (with very few exceptions, e.g., when you upload files) should therefore be formatted in `JSON` and our API will always return results in `JSON` as well.  \nEven though we expect you to send `JSON` payloads, please make sure to use `Content-Type: application/json` in your header when making calls.\n\n# RESTful Principles\n\nOur API follows a very RESTful approach.  \nMost importantly, we support the four standard request methods for `CRUD` operations:\n\n| Method | Description |\n| --- | --- |\n| `POST` | Create a new record |\n| `GET` | Retrieve / read records without changing anything |\n| `PATCH` | Update an existing record |\n| `DELETE` | Delete one or more records |\n\n# HTTP Status Codes\n\nWe follow the most common HTTP status codes when outputting the API response:\n\n## Successful Requests `2xx`\n\n| Response Code | Description |\n| --- | --- |\n| `200` | `OK` Successful request |\n| `201` | `Created` New resource has been created |\n\n## Client Errors `4xx`\n\n| Response Code | Description |\n| --- | --- |\n| `400` | `Bad Request` Inspect the body for detailed information about what went wrong. The most common error is \"code\":1062, which means that a unique constraint was hit. For example, if the name of the group is already in use. |\n| `401` | `Unauthorized` Invalid access_token. Check if the access_token has expired or is incorrect. |\n| `403` | `Forbidden` Access to this resource is denied for this user |\n| `404` | `Not Found` Resource / endpoint is not available |\n\n## Server Error `5xx`\n\nIf you receive a HTTP status code that starts with 5 there's something wrong on our side. Sorry :)  \nPlease contact \\[our support\\]([https://mailto:support@newsletter2go.com?subject=Newsletter2Go](https://mailto:support@newsletter2go.com?subject=Newsletter2Go) API documentation) and we'll try to fix it asap.\n\n# Response Format\n\n``` json\n{\n   \"info\":{\n      \"count\":1\n   },\n   \"value\":[\n      {\n         \"{{key}}\":\"{{value}}\"\n      },\n      ...\n   ]\n}\n\n ```\n\nThe API always returns a `JSON` object with the properties `info` and `value`:\n\n| Property | Description |\n| --- | --- |\n| `info` | Contains the number of results `count` and additional information depending on the resource |\n| `value` | Contains an array of result objects that each can have different keys and values depending on the resource |\n\n# Common `GET` Parameters\n\nThe following parameters are all optional and can be used in every call in order to filter or limit the result sets.\n\n| Parameter | Description |\n| --- | --- |\n| `_filter` | A [complex filter](#filter-language) for filtering the result set based on [FIQL](https://tools.ietf.org/html/draft-nottingham-atompub-fiql-00) |\n| `_limit` | The maximum number of records returned |\n| `_offset` | Pagination for the result set |\n| `_expand` | Submit true to get all default fields for the resource |\n| `_fields` | A comma-separated list of case-sensitive field names to get the values of these fields in the response |\n\n_Example:_\n\n```\nhttps://api.newsletter2go.com/lists/{{list_id}}/recipients?_expand=false&_fields=email,first_name,last_name&_filter=email=LIKE=\"%yahoo%\"&_limit=10&_offset=0\n\n ```\n\n# Filter Language\n\nThe filter language for filtering results is based on [FIQL](https://tools.ietf.org/html/draft-nottingham-atompub-fiql-00).\n\nComparison values have to be \"enquoted\", e.g., \\`first_name==\"Max\"\\`.  \nOtherwise they will be interpreted as attributes themselves, e.g. \\`first_name==last_name\\`\n\nThe following operators are supported:\n\n| Operator | Description | Example |\n| --- | --- | --- |\n| `==` | equals | `age==\"27\"` |\n| `=ne=` | does not equal | `gender=ne=\"m\"` |\n| `=gt=` | greater than | `last_name=gt=\"g\"` |\n| `=ge=` | greater than or equal to | `rating=ge=\"2\"` |\n| `=lt=` | less than | `statistic_mails_clicked=lt=\"5\"` |\n| `=le=` | less than or equal to | `DATE_FORMAT(created_at,\"Y-m-d\")=le=\"2017-09-06\"` |\n| `=like=` | like - use `%` as wildcard | `email=like=\"%yahoo.com\"` |\n| `=nlike=` | not like - use `%` as wildcard | `phone=nlike=\"\"` |\n| `=contains=` | _array_ contains _an element_ | `group_ids=contains=\"rarr38sz\"` |\n| `=ncontains=` | _array_ does not contain _an element_ | `group_ids=ncontains=\"rarr38sz\"` |\n| `=in=` | _an element_ is in _an array_ | `\"rarr38sz\"=in=group_ids` |\n| `=nin=` | _an element_ is not in _an array_ | `\"rarr38sz\"=nin=group_ids` |\n| `;` | logical \"and\" - connect multiple filters | `birthday=ge=\"1979-12-31\";gender==\"f\"` |\n| `,` | logical \"or\" - connect multiple filters | `(group_ids=contains=\"rarr38sz\",group_ids=CONTAINS=\"5cj9y8ub\")` |\n\nMake sure to `urlencode` the `_filter` parameter values when making a request.\n\n_Example:_\n\n```\nhttps://api.newsletter2go.com/lists/{{list_id}}/recipients?_filter=email=LIKE=\"%yahoo%\"\n\n ```\n\n# Transactional Mailings\n\nA transactional mailing is a type of mailing that is highly customized, sent to a single individual at a custom time mostly through the system and triggered by an API call.  \nSome examples of transactional mailings are:\n\n- order confirmations\n- password change requests\n- registration emails\n- shipping confirmation\n    \n\nOne, if not _the most important_ purpose, of using the Newsletter2Go API is to send transactional emails.  \nOver the last couple of years we have optimized this process in order to offer this very powerful feature to single developers as well as professional teams.\n\nIt is very important to understand the following concept in order for you to take full advantage of our personalization features and our detailed reports when sending transactional emails. **So please read carefully**\n\n#### Step 1\n\nCreate a transactional mailing (we recommend using our UI for that) but [you can also use the API](#a8f42b89-ab89-4ebe-8e5c-8dfe2307341a)\n\n#### Step 2\n\nMake sure the mailing is active (`state==\"active\"`) and copy the `newsletter_id` from the URL. [You can retrieve these values with this endpoint.](#75083638-39a1-4cdf-a307-4e7708e8da76)\n\n#### Step 3\n\nSend the mailing [to a contact in your list or any email address that you pass in the payload of the request](#d39fb18d-bf1f-4255-be78-36f327023b0a)\n\nFirst, you will have to create a new mailing. We recommend that you create that mailing through our [UI](https://ui.newsletter2go.com) in order to take full advantage of our powerful newsletter builder. This way, we will automatically create cross-client optimized and responsive `HTML`. Yet another advantage lies in the possibility for other users (e.g., the marketing team) to change the layout or the content of the mailing without having to contact the developer (you).\n\nLet the marketing team take care of design and content. All you need is the `ID` of the transaction mailing. You will never have to change any code.\n\nOf course, it is also possible to create a mailing entirely through the API. When doing so, you can take advantage of our cross-client optimized responsive auto-generated `HTML` by using our `JSON`/`YAML` based Newsletter2Go Markup Language.\n\nNo matter how you create the mailing, try to create one reusable template. You can customize individual emails by inserting placeholders for personalized fields such as name, products or other information that will be filled through an API call when sending.\n\nBy only creating one template, you can take advantage of our full reporting since all emails will be treated part of a single _campaign_. When you or a team member changes that template, we will create a new version of the mailing in the background and you will be able to see the difference in performance in the reports. This is particularly useful when you are trying to test and optimize different versions of transactional emails such as a sign-up email.\n\nAfter creating a mailing, you will have access to its `ID`. Use that `ID` to actually send the email in the next step.\n\nWhen sending an email, you have to pass the newsletter `ID` and information about the recipient. Either pass the recipient `ID` or pass all the recipient's data (including the email-address) as `JSON`.\n\nIf you only pass the recipient `ID`, we will use his or her data from your list to personalize the mailing. If you pass full recipient data as `JSON`, we will try to merge the data with existing data from your list.\n\nYou can also pass additional data such as product data that is not saved in your list. Just make sure that the placeholders in the source of the mailing correspond to the parameters that you are passing.  \nThis way you can also create for-loops, which can be useful if you pass different amounts of data for each recipient (e.g., a purchase confirmation where you want to list all the products that were just bought).\n\n# Trying It Out (Postman + Open Source Wrappers)\n\nWe highly recommend using our Postman collection to develop our API. Just click the `Run in Postman` button on the top right to get started. Once the collection loads, make sure to fill the environment variables with your credentials.  \nPostman will allow you to execute calls immediately or generate code in every major programming language.\n\nNewsletter2Go also offers some open source wrappers [that can be downloaded here](https://www.newsletter2go.com/features/api-example-implementations/)\n\n# API Reference","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Authentication","item":[{"name":"OAuth Login / Retrieve Access Token","event":[{"listen":"prerequest","script":{"id":"09627554-64a7-4c1a-b0e4-6c75af3c9835","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a5c0916c-aea6-4b52-8f71-b9319e36bd3a","type":"text/javascript","exec":[""]}}],"id":"fcc16cf4-7bb7-3d4b-f37b-78e00171f6c3","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic {{auth_key_base64}}"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"{{username}}\",\r\n  \"password\": \"{{password}}\",\r\n  \"grant_type\": \"https://nl2go.com/jwt\"\r\n}"},"url":"https://api.newsletter2go.com/oauth/v2/token","description":"In order to retrieve the `access_token` that you will need to send with each consecutive call, you have to authenticate once.\n\n[Grab your credentials](https://ui.newsletter2go.com/api-client) and make sure that you [base64 encode](https://www.base64encode.net/) your `auth key` before you send it in the `Authorization` header prepended by `Basic `.\nSend your `username` and `password` in the JSON payload of the `POST` request. Also we require you to send along the `grant_type` `https://nl2go.com/jwt`.\n\nStore the `access_token` and the `refresh_token` in the response for the use in consecutive calls. The `access_token` expires after 2 hours. You can always re-authenticate with your user credentials or refresh the `access_token` by calling the oauth endpoint with the `refresh_token`, which is valid for 1 month."},"response":[{"id":"22550a8a-4c03-4592-b5c9-c73c23755f50","name":"OAuth Login / Retrieve Access Token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic {{auth_key_base64}}"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"{{username}}\",\r\n  \"password\": \"{{password}}\",\r\n  \"grant_type\": \"https://nl2go.com/jwt\"\r\n}"},"url":"https://api.newsletter2go.com/oauth/v2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 09 Aug 2018 14:29:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.5.6:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"access_token\":\"__eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJfXy5haWQiOjgzLCJfXy5lbnZpcm9ubWVudCI6InByb2R1Y3Rpb24iLCJfXy5leHBpcmVzQXQiOjE1MzM4MzIxNTEsIl9fLnNjb3BlIjoiIiwiX18uY2lkIjoiMTEzOTFfbUE2VkdQX1F0UFFwU19ac0t4TkVxVF9hUUhzbzNVRnduIiwiX18ucmQxIjo4ODA5MSwiX18ucmQyIjo5OTEzM30.aXsdQt2NwZBlsLz_6EwArMIeG01nBJpGIasBMJnuDCw\",\"expires_in\":7200,\"token_type\":\"bearer\",\"scope\":null,\"refresh_token\":\"__eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJfXy5haWQiOjgzLCJfXy5lbnZpcm9ubWVudCI6InByb2R1Y3Rpb24iLCJfXy5leHBpcmVzQXQiOjE1MzY0MTY5NTEsIl9fLnNjb3BlIjoiIiwiX18uY2lkIjoiMTEzOTFfbUE2VkdQX1F0UFFwU19ac0t4TkVxVF9hUUhzbzNVRnduIiwiX18ucmQxIjo1OTAyLCJfXy5yZDIiOjM4Mzc1LCJfXy5yZWZyZXNoIjp0cnVlfQ.1YfNt1fY-5Q9u1cZF8BhLetWIireq98spTyAspsDAuA\",\"account_id\":\"awtfn5jn\",\"type\":\"user\"}"}],"_postman_id":"fcc16cf4-7bb7-3d4b-f37b-78e00171f6c3"},{"name":"OAuth Refresh Access Token","event":[{"listen":"prerequest","script":{"id":"6a43e9fa-8a6f-4075-bab4-1c8da6faa503","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9eb47064-e1e9-4438-a27f-d0b21c941611","type":"text/javascript","exec":[""]}}],"id":"db2b80e2-f37f-4d4d-80ee-a072aae691a9","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic {{auth_key_base64}}"}],"body":{"mode":"raw","raw":"{\r\n  \"refresh_token\": \"{{refresh_token}}\",\r\n  \"grant_type\": \"https://nl2go.com/jwt\"\r\n}"},"url":"https://api.newsletter2go.com/oauth/v2/token","description":"If you want to renew your `access_token`, pass the `refresh_token` in the JSON payload. Make sure to [base64 encode](https://www.base64encode.net/) your `auth key` in the `Basic Authorization` header.\n\nThe `refresh_token` is valid for 1 month."},"response":[{"id":"6775c2d8-a899-42b8-88e2-e60d6438cd4b","name":"OAuth Refresh Access Token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Basic {{auth_key_base64}}","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"refresh_token\": \"{{refresh_token}}\",\r\n  \"grant_type\": \"https://nl2go.com/jwt\"\r\n}"},"url":"https://api.newsletter2go.com/oauth/v2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 09 Aug 2018 14:34:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.60:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"access_token\":\"__eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJfXy5haWQiOjgzLCJfXy5lbnZpcm9ubWVudCI6InByb2R1Y3Rpb24iLCJfXy5leHBpcmVzQXQiOjE1MzM4MzI0NzcsIl9fLnNjb3BlIjoiIiwiX18uY2lkIjoiMTEzOTFfbUE2VkdQX1F0UFFwU19ac0t4TkVxVF9hUUhzbzNVRnduIiwiX18ucmQxIjoyOTg3NCwiX18ucmQyIjoyOTExMn0.FR6df4_RrzTp5E7G-mQreXu51EwC4scics36k2mbsz4\",\"expires_in\":7200,\"token_type\":\"bearer\",\"scope\":null,\"refresh_token\":\"__eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJfXy5haWQiOjgzLCJfXy5lbnZpcm9ubWVudCI6InByb2R1Y3Rpb24iLCJfXy5leHBpcmVzQXQiOjE1MzY0MTcyNzcsIl9fLnNjb3BlIjoiIiwiX18uY2lkIjoiMTEzOTFfbUE2VkdQX1F0UFFwU19ac0t4TkVxVF9hUUhzbzNVRnduIiwiX18ucmQxIjo5NTA3MSwiX18ucmQyIjo5MTIyMCwiX18ucmVmcmVzaCI6dHJ1ZX0.fQAkmHZHRtTLets3JrJD5LhAeCIhtX-_GBO6CgejRu8\",\"account_id\":\"awtfn5jn\",\"type\":\"user\"}"}],"_postman_id":"db2b80e2-f37f-4d4d-80ee-a072aae691a9"}],"id":"b136221c-ab6b-011a-6644-d14ccaa2c5c5","description":"#### Step 1  \r\nAuthenticate and acquire an access token by [calling our OAuth endpoint](#fcc16cf4-7bb7-3d4b-f37b-78e00171f6c3)\r\n\r\n#### Step 2  \r\nStore the `access_token` from the response (in our Postman collection we save it automatically in an environment variable)\r\n\r\n#### Step 3  \r\nPass the `access_token` in the `Authorization` header in each request as a `Bearer`\r\n\r\n\r\nYou will need your `user name`, your `password` and your `auth key`, which you can find in [your account](https://ui.newsletter2go.com/api-client).\r\n\r\n<div class=\"alert alert-info\">We recommend creating a dedicated API user before you get started. This way, you can better manage permissions and do not have to worry about password changes.</div>\r\n\r\nThe Newsletter2Go API uses [OAuth 2.0 bearer tokens](https://tools.ietf.org/html/rfc6750) to authenticate your requests.\r\n\r\nThat means, that you will have to acquire a valid access token first by making a `POST` call to our `/oauth/v2/token` endpoint. [More information on the authentication endpoint.](#fcc16cf4-7bb7-3d4b-f37b-78e00171f6c3)\r\n \r\nIf the authentication was successful, you will receive an `access_token` in the `JSON` response. It expires automatically after 2 hours ([you can use the `refresh_token` to renew your session](#db2b80e2-f37f-4d4d-80ee-a072aae691a9)).\r\n\r\nStore the `access_token` in a safe place and add it in each consecutive request in the `Authorization` header.  ","auth":{"type":"noauth"},"event":[{"listen":"prerequest","script":{"id":"86715b3e-d96d-46a6-baf1-400bdcd8e9a0","type":"text/javascript","exec":["postman.setEnvironmentVariable(\"auth_key_base64\", btoa(postman.getEnvironmentVariable(\"auth_key\")));","postman.setEnvironmentVariable(\"auth_key_part_username\", postman.getEnvironmentVariable(\"auth_key\").split(\":\")[0]);","postman.setEnvironmentVariable(\"auth_key_part_password\", postman.getEnvironmentVariable(\"auth_key\").split(\":\")[1]);"]}},{"listen":"test","script":{"id":"0b477191-594b-498e-87ca-ec8f85b18887","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"access_token\", jsonData.access_token);","postman.setEnvironmentVariable(\"refresh_token\", jsonData.refresh_token);"]}}],"_postman_id":"b136221c-ab6b-011a-6644-d14ccaa2c5c5"},{"name":"Lists","item":[{"name":"Get All Lists","id":"5552d812-59b0-4831-9771-a4ea91a8e552","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists","description":"Get all lists in your account"},"response":[{"id":"7ad69f9e-394f-43c1-ba0f-725e3fc4ffb6","name":"Get all Lists","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 09 Aug 2018 14:27:08 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https://api.newsletter2go.com/lists?_limit=50&_offset=0\"\n        },\n        \"count\": 6\n    },\n    \"value\": [\n        {\n            \"_href\": \"https://api.newsletter2go.com/lists/om355owj\",\n            \"id\": \"om355owj\"\n        },\n        {\n            \"_href\": \"https://api.newsletter2go.com/lists/5oca6p1j\",\n            \"id\": \"5oca6p1j\"\n        },\n        {\n            \"_href\": \"https://api.newsletter2go.com/lists/7bjaj1wj\",\n            \"id\": \"7bjaj1wj\"\n        },\n        {\n            \"_href\": \"https://api.newsletter2go.com/lists/if30v113\",\n            \"id\": \"if30v113\"\n        },\n        {\n            \"_href\": \"https://api.newsletter2go.com/lists/irxvxj5v\",\n            \"id\": \"irxvxj5v\"\n        },\n        {\n            \"_href\": \"https://api.newsletter2go.com/lists/yd93awl3\",\n            \"id\": \"yd93awl3\"\n        }\n    ]\n}"},{"id":"f2acbf14-42bf-4825-9671-85c4e8f00401","name":"Get all Lists with Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://api.newsletter2go.com/lists?_expand=true","protocol":"https","host":["api","newsletter2go","com"],"path":["lists"],"query":[{"key":"_expand","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 09 Aug 2018 14:35:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.90.166:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists?_limit=50&_offset=0&_expand=true\"\n        },\n        \"count\": 6\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\",\n            \"id\": \"om355owj\",\n            \"company_id\": \"3kf9rpeb\",\n            \"created_at\": \"2016-04-06T11:27:31+0000\",\n            \"modified_at\": \"2018-05-18T12:40:33+0000\",\n            \"name\": \"Default\",\n            \"is_disabled\": false,\n            \"uses_econda\": false,\n            \"uses_googleanalytics\": false,\n            \"has_opentracking\": true,\n            \"has_clicktracking\": true,\n            \"has_conversiontracking\": true,\n            \"header_from_email\": \"support@newsletter2go.com\",\n            \"header_from_name\": \"support@newsletter2go.com\",\n            \"header_reply_email\": \"support@newsletter2go.com\",\n            \"use_ecg_list\": true\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/5oca6p1j\",\n            \"id\": \"5oca6p1j\",\n            \"company_id\": \"3kf9rpeb\",\n            \"created_at\": \"2016-08-15T06:40:32+0000\",\n            \"modified_at\": \"2016-08-15T06:40:32+0000\",\n            \"name\": \"W\\u00f6chentliches Update\",\n            \"is_disabled\": false,\n            \"uses_econda\": false,\n            \"uses_googleanalytics\": false,\n            \"has_opentracking\": true,\n            \"has_clicktracking\": true,\n            \"has_conversiontracking\": true,\n            \"use_ecg_list\": false\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/7bjaj1wj\",\n            \"id\": \"7bjaj1wj\",\n            \"company_id\": \"3kf9rpeb\",\n            \"created_at\": \"2016-08-15T06:40:39+0000\",\n            \"modified_at\": \"2016-08-15T06:40:39+0000\",\n            \"name\": \"Produktneuheiten\",\n            \"is_disabled\": false,\n            \"uses_econda\": false,\n            \"uses_googleanalytics\": false,\n            \"has_opentracking\": true,\n            \"has_clicktracking\": true,\n            \"has_conversiontracking\": true,\n            \"use_ecg_list\": false\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/if30v113\",\n            \"id\": \"if30v113\",\n            \"company_id\": \"3kf9rpeb\",\n            \"created_at\": \"2017-03-10T16:09:19+0000\",\n            \"modified_at\": \"2018-08-06T12:38:45+0000\",\n            \"name\": \"My updated List\",\n            \"is_disabled\": false,\n            \"uses_econda\": false,\n            \"uses_googleanalytics\": true,\n            \"has_opentracking\": true,\n            \"has_clicktracking\": true,\n            \"has_conversiontracking\": false,\n            \"imprint\": \"http:\\/\\/example.org\\/imprint\",\n            \"header_from_email\": \"from@example.org\",\n            \"header_from_name\": \"From Name\",\n            \"header_reply_email\": \"reply@example.org\",\n            \"header_reply_name\": \"Reply Name\",\n            \"use_ecg_list\": false\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/irxvxj5v\",\n            \"id\": \"irxvxj5v\",\n            \"company_id\": \"3kf9rpeb\",\n            \"created_at\": \"2017-10-10T07:24:23+0000\",\n            \"modified_at\": \"2017-10-10T07:24:23+0000\",\n            \"name\": \"test export\",\n            \"is_disabled\": false,\n            \"uses_econda\": false,\n            \"uses_googleanalytics\": false,\n            \"has_opentracking\": true,\n            \"has_clicktracking\": true,\n            \"has_conversiontracking\": true,\n            \"use_ecg_list\": false\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/yd93awl3\",\n            \"id\": \"yd93awl3\",\n            \"company_id\": \"3kf9rpeb\",\n            \"created_at\": \"2018-08-06T12:31:29+0000\",\n            \"modified_at\": \"2018-08-06T12:31:29+0000\",\n            \"name\": \"My new List\",\n            \"is_disabled\": false,\n            \"uses_econda\": false,\n            \"uses_googleanalytics\": true,\n            \"has_opentracking\": true,\n            \"has_clicktracking\": true,\n            \"has_conversiontracking\": false,\n            \"imprint\": \"http:\\/\\/example.org\\/imprint\",\n            \"header_from_email\": \"from@example.org\",\n            \"header_from_name\": \"From Name\",\n            \"header_reply_email\": \"reply@example.org\",\n            \"header_reply_name\": \"Reply Name\",\n            \"use_ecg_list\": true\n        }\n    ]\n}"}],"_postman_id":"5552d812-59b0-4831-9771-a4ea91a8e552"},{"name":"Get List Details","id":"2b0496e8-e75a-48d5-a8e4-2baff95af7bf","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}","description":"Get all information for one specific list."},"response":[{"id":"5d7a81c5-5eb2-42d6-a5b8-7d1583c1af80","name":"Get List Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 09 Aug 2018 14:42:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.171.185:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"_href\": \"https://api.newsletter2go.com/lists/om355owj\",\n            \"id\": \"om355owj\",\n            \"company_id\": \"3kf9rpeb\",\n            \"created_at\": \"2016-04-06T11:27:31+0000\",\n            \"modified_at\": \"2018-05-18T12:40:33+0000\",\n            \"name\": \"Default\",\n            \"is_disabled\": false,\n            \"uses_econda\": false,\n            \"uses_googleanalytics\": false,\n            \"has_opentracking\": true,\n            \"has_clicktracking\": true,\n            \"has_conversiontracking\": true,\n            \"landingpage\": \"http://landingpage.org\",\n            \"header_from_email\": \"support@newsletter2go.com\",\n            \"header_from_name\": \"support@newsletter2go.com\",\n            \"header_reply_email\": \"support@newsletter2go.com\",\n            \"use_ecg_list\": true\n        }\n    ]\n}"}],"_postman_id":"2b0496e8-e75a-48d5-a8e4-2baff95af7bf"},{"name":"Create List","id":"364131ba-fd20-444a-b029-e53a5a89546d","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"My new List\",\r\n  \"uses_econda\": false,\r\n  \"uses_googleanalytics\": true,\r\n  \"has_opentracking\": true,\r\n  \"has_clicktracking\": true,\r\n  \"has_conversiontracking\": false,\r\n  \"imprint\": \"http://example.org/imprint\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\",\r\n  \"tracking_url\": null,\r\n  \"landingpage\": \"http://example.org/unsubscribe-landingpage\",\r\n  \"use_ecg_list\": false\r\n}"},"url":"https://api.newsletter2go.com/lists","description":"Create a new list.  \nIf you want to set this list as the default list, use the [company endpoint](#193e9341-33d4-45aa-9cb3-e933d1a52c4c) and pass the `list_id`"},"response":[{"id":"652d70db-3903-43a7-9b25-d9b98bcaee15","name":"Create List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"My new List\",\r\n  \"uses_econda\": false,\r\n  \"uses_googleanalytics\": true,\r\n  \"has_opentracking\": true,\r\n  \"has_clicktracking\": true,\r\n  \"has_conversiontracking\": false,\r\n  \"imprint\": \"http://example.org/imprint\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\",\r\n  \"tracking_url\": null,\r\n  \"landingpage\": \"http://example.org/unsubscribe-landingpage\",\r\n  \"use_ecg_list\": false\r\n}"},"url":"https://api.newsletter2go.com/lists"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 09 Aug 2018 15:29:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.171.185:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/us12cr7n\",\n            \"id\": \"us12cr7n\"\n        }\n    ]\n}"}],"_postman_id":"364131ba-fd20-444a-b029-e53a5a89546d"},{"name":"Update List","id":"80247ee2-dda3-4793-b15a-905af57af154","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"My updated List\",\r\n  \"uses_econda\": false,\r\n  \"uses_googleanalytics\": true,\r\n  \"has_opentracking\": true,\r\n  \"has_clicktracking\": true,\r\n  \"has_conversiontracking\": false,\r\n  \"imprint\": \"http://example.org/imprint\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\",\r\n  \"tracking_url\": null,\r\n  \"landingpage\": \"http://example.org/unsubscribe-landingpage\",\r\n  \"use_ecg_list\": false\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}","description":"Update an existing list.  \nIf you want to set this list as the default list, use the [company endpoint](#193e9341-33d4-45aa-9cb3-e933d1a52c4c) and pass the `list_id`"},"response":[{"id":"188c749a-8a69-4a38-bd86-1c73f56fe2d2","name":"Update List","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"My updated List\",\r\n  \"uses_econda\": false,\r\n  \"uses_googleanalytics\": true,\r\n  \"has_opentracking\": true,\r\n  \"has_clicktracking\": true,\r\n  \"has_conversiontracking\": false,\r\n  \"imprint\": \"http://example.org/imprint\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\",\r\n  \"tracking_url\": null,\r\n  \"landingpage\": \"http://example.org/unsubscribe-landingpage\",\r\n  \"use_ecg_list\": false\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 09 Aug 2018 15:32:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.95.25:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"80247ee2-dda3-4793-b15a-905af57af154"},{"name":"Delete List","id":"ef5f6c3e-4a7a-4b31-8b29-57775feff3fa","request":{"auth":{"type":"noauth"},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}","description":"Delete a specific list.  \n<div class=\"alert alert-info\">Be careful! You're irrevocably deleting the entire list with all campaigns and contacts.</div>"},"response":[],"_postman_id":"ef5f6c3e-4a7a-4b31-8b29-57775feff3fa"}],"id":"06014fbe-a579-47e3-81c9-74a25b700cf7","description":"With Newsletter2Go you can manage multiple contact lists. Each list can contain campaigns, contacts, segments and attributes.  \n\n<div class=\"alert alert-info\">Contacts can subscribe and unsubscribe from lists independently. If you don't know if you should use another list, ask yourself the question if the recipients should be able to unsubscribe from each list individually</div>\n\nThe purpose of lists is to separate concerns. You can manage different contacts in different states (active, unsubscribed) with different attributes in different lists. A typical application is to use lists for separate mailing types; e.g. one contact list to send out product news to prospects and one list to send regular information to existing customers.  \n\n## `List` Parameters\n\n| Parameter | Type      | Description |\n|-----------|-----------|-----------|\n| `id` | `string` | The id of the list |\n| `name` | `string` | The name of the list |\n| `uses_econda` | `boolean` defaults to `0` | Automatically rewrite links to use Econda tracking parameters |\n| `uses_googleanalytics` | `boolean` defaults to `0` | Automatically rewrite links to use Google Analytics tracking parameters |\n| `has_opentracking` | `boolean` defaults to `1` | Whether mailings in this list will use open tracking by default |\n| `has_clicktracking` | `boolean` defaults to `1` | Whether mailings in this list will use link tracking by default |\n| `has_conversiontracking` | `boolean` defaults to `0` | Whether mailings in this list will use conversion tracking by default |\n| `imprint` | `url` | The link to your legal notice |\n| `header_from_email` | `email` | The default from email address (e.g., info@mybusiness.tld) for your mailings |\n| `header_from_name` | `string` | The default from sender name (e.g., \"My Business\") for your mailings |\n| `header_reply_email` | `email` | The default reply-to email address (e.g., info@mybusiness.tld) for your mailings |\n| `header_reply_name` | `string` | The default reply-to sender name (e.g., \"My Business\") for your mailings |\n| `landingpage` | `url` | The default landing page after the recipient unsubscribes |\n| `tracking_url` | `url` | A custom tracking url to use with link tracking. Make sure to set it up before |\n| `use_ecg_list` | `boolean` defaults to `0` | Whether the list should sync daily with the Austrian ECG blacklist |","event":[{"listen":"prerequest","script":{"id":"a0cfdf57-b282-44ab-9f4c-ca0d96a3bb8a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"99a1348c-dc22-4efd-b201-f03f423b23e3","type":"text/javascript","exec":[""]}}],"_postman_id":"06014fbe-a579-47e3-81c9-74a25b700cf7"},{"name":"Contacts","item":[{"name":"Get Recipients","id":"c97c941a-267c-4afb-80e9-d45b0572b19d","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"url":"https://api.newsletter2go.com/recipients/global","description":"Get recipients from any list.\n\n_Remember: You can use the [common GET parameters](#common-get-parameters) to control the result sets from the API._"},"response":[{"id":"b942c909-ffad-4035-aea4-cbd4c8bad2ba","name":"Get Recipients","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"url":"https://api.newsletter2go.com/recipients/global"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 10 Aug 2018 07:33:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients?_limit=50&_offset=0\"\n        },\n        \"count\": 5,\n        \"additional\": {\n            \"active\": 0\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/e76chulj\",\n            \"id\": \"e76chulj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/itwd21o3\",\n            \"id\": \"itwd21o3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/52x6v6ee\",\n            \"id\": \"52x6v6ee\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/y2n9bqcz\",\n            \"id\": \"y2n9bqcz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/g783na13\",\n            \"id\": \"g783na13\"\n        }\n    ]\n}"}],"_postman_id":"c97c941a-267c-4afb-80e9-d45b0572b19d"},{"name":"Get Recipients From List","id":"e5050ccd-0f51-4ac6-8c92-e9b88e2ecbd0","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients","description":"Get recipients from a specific list.\n\n_Remember: You can use the [common GET parameters](#common-get-parameters) to control the result sets from the API._"},"response":[{"id":"8d1b5fa0-79bc-4e7c-aa64-da8a14b7dad6","name":"Get Recipients from List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 10 Aug 2018 07:34:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/recipients?_limit=50&_offset=0\"\n        },\n        \"count\": 5,\n        \"additional\": {\n            \"active\": 5\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/g783na13\",\n            \"id\": \"g783na13\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/y2n9bqcz\",\n            \"id\": \"y2n9bqcz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/e76chulj\",\n            \"id\": \"e76chulj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/52x6v6ee\",\n            \"id\": \"52x6v6ee\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/itwd21o3\",\n            \"id\": \"itwd21o3\"\n        }\n    ]\n}"}],"_postman_id":"e5050ccd-0f51-4ac6-8c92-e9b88e2ecbd0"},{"name":"Get Recipients Details from List","id":"da371f3a-692c-4840-815b-f92bbb2e80a2","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/{{recipient_id}}?_fields=email,first_name,{{attribute_name}}","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","recipients","{{recipient_id}}"],"query":[{"key":"_fields","value":"email,first_name,{{attribute_name}}"}]},"description":"Get the details of one recipient in a specific list.\n\n_Remember: You can use the [common GET parameters](#common-get-parameters) to control the result sets from the API._"},"response":[{"id":"bd0335a9-1e43-462b-8d30-3d55ecb4ff5f","name":"Get Recipients Details from List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/{{recipient_id}}?_fields=email,first_name,{{attribute_name}}","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","recipients","{{recipient_id}}"],"query":[{"key":"_fields","value":"email,first_name,{{attribute_name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 13 Aug 2018 13:29:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.95.25:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1,\n        \"additional\": {\n            \"active\": 1\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/itwd21o3\",\n            \"id\": \"itwd21o3\",\n            \"email\": \"email@example.tld\",\n            \"first_name\": \"John\",\n            \"New_Attribute\": \"attribute value\"\n        }\n    ]\n}"}],"_postman_id":"da371f3a-692c-4840-815b-f92bbb2e80a2"},{"name":"Create or Update Recipient(s)","id":"9eb0eccc-8c3c-4a59-90e5-547031fe55a2","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"list_id\": \"{{list_id}}\",\r\n  \"email\": \"email@example.tld\",\r\n  \"phone\": \"+49123456789\",\r\n  \"gender\": \"m\",\r\n  \"first_name\": \"John\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"attribute value\"\r\n}"},"url":"https://api.newsletter2go.com/recipients","description":"Create one or more recipients.  \nIf you want to create multiple recipients at the same time, submit multiple recipient objects as a json array. In this case all objects must share the same attributes.  \nIf the email address already exists, the existing recipient will get updated."},"response":[{"id":"24195987-7207-4556-a788-30f33a76acff","name":"Create multiple Recipients","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"[{\r\n  \"list_id\": \"{{list_id}}\",\r\n  \"email\": \"email@example.tld\",\r\n  \"phone\": \"+49123456789\",\r\n  \"gender\": \"m\",\r\n  \"first_name\": \"John\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"attribute value\"\r\n},\r\n{\r\n  \"list_id\": \"{{list_id}}\",\r\n  \"email\": \"email2@example.tld\",\r\n  \"phone\": \"+49123456789\",\r\n  \"gender\": \"f\",\r\n  \"first_name\": \"Jane\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"attribute value 2\"\r\n}]"},"url":"https://api.newsletter2go.com/recipients"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 11:02:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 2,\n        \"additional\": {\n            \"invalid_recipients\": []\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/itwd21o3\",\n            \"id\": \"itwd21o3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/7fhf8w06\",\n            \"id\": \"7fhf8w06\"\n        }\n    ]\n}"},{"id":"2c8b611e-fa47-4e0f-b90d-82980aa99910","name":"Create one Recipient","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"list_id\": \"{{list_id}}\",\r\n  \"email\": \"email@example.tld\",\r\n  \"phone\": \"+49123456789\",\r\n  \"gender\": \"m\",\r\n  \"first_name\": \"John\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"attribute value\"\r\n}"},"url":"https://api.newsletter2go.com/recipients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 10 Aug 2018 07:08:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"138.201.29.81:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1,\n        \"additional\": {\n            \"invalid_recipients\": []\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/itwd21o3\",\n            \"id\": \"itwd21o3\"\n        }\n    ]\n}"}],"_postman_id":"9eb0eccc-8c3c-4a59-90e5-547031fe55a2"},{"name":"Delete One Recipient From List","id":"b84956c5-93ef-48a4-9e1d-7f13306dbffd","request":{"auth":{"type":"noauth"},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/{{recipient_id}}"},"response":[{"id":"764c9bba-9c3a-44c6-a864-ae18b8306ea0","name":"Delete one Recipient from List","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/{{recipient_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 11:03:52 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.90.166:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"b84956c5-93ef-48a4-9e1d-7f13306dbffd"},{"name":"Delete multiple Recipients from List","id":"08f94f86-eab1-4b57-aca4-5f4c8d9e8317","request":{"auth":{"type":"noauth"},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]},"description":"Delete multiple / all recipients in one list. \n\n<div class=\"alert alert-info\">Be careful. If you don't pass a <code>_filter</code>, all your recipients will be deleted irrevocably from the list.</div>"},"response":[{"id":"bfc4ac11-41df-4dcd-b766-b3897017bbc0","name":"Delete multiple Recipients from List","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 11:04:24 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"08f94f86-eab1-4b57-aca4-5f4c8d9e8317"},{"name":"Update one Recipient","id":"6f4acfc5-649a-4345-9456-6cad24fa9fee","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"email@example.tld\",\r\n  \"phone\": \"+499876543210\",\r\n  \"gender\": \"f\",\r\n  \"first_name\": \"Jane\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"other attribute value\"\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/{{recipient_id}}"},"response":[{"id":"53041107-45f3-4360-8b2a-d998fea542f2","name":"Update one Recipient","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"email@example.tld\",\r\n  \"phone\": \"+499876543210\",\r\n  \"gender\": \"f\",\r\n  \"first_name\": \"Jane\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"other attribute value\"\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/{{recipient_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 11:12:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"6f4acfc5-649a-4345-9456-6cad24fa9fee"},{"name":"Update multiple Recipients","id":"b16f71d0-0d63-4df0-a750-7dc4e8515bcc","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"new_email@example.tld\",\r\n  \"phone\": \"+499876543210\",\r\n  \"gender\": \"f\",\r\n  \"first_name\": \"Jane\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"other attribute value\"\r\n}"},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]},"description":"Update multiple / all recipients in one list. \n\n<div class=\"alert alert-info\">Be careful. If you don't pass a <code>_filter</code>, all your recipients in the list will be updated.</div>"},"response":[{"id":"396735bf-e1db-4e7a-a7db-a280849d84a1","name":"Update multiple Recipients","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"new_email@example.tld\",\r\n  \"phone\": \"+499876543210\",\r\n  \"gender\": \"f\",\r\n  \"first_name\": \"Jane\",\r\n  \"last_name\": \"Doe\",\r\n  \"is_unsubscribed\": false,\r\n  \"is_blacklisted\": false,\r\n  \"{{attribute_name}}\": \"other attribute value\"\r\n}"},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 11:14:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.134.120:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"b16f71d0-0d63-4df0-a750-7dc4e8515bcc"},{"name":"Import Recipients - Upload File","event":[{"listen":"test","script":{"id":"d8f17b5c-7fb8-4515-9be6-b600c5b6f306","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"file_id\", jsonData.file);"],"type":"text/javascript"}}],"id":"126f937f-ae5e-402f-ac30-ab2a7f0cc327","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","sessionValue":{"0":{}},"type":"file","value":null}]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/import/init","description":"If you want to import large amounts of recipients asynchronously, you can upload a csv, ods, xls, xlsx file to our API.  \nThe import is divided into 3 steps: \n1. Upload a csv, ods, xls, xlsx file to the `import/init` end point. Store the `file` from the response.\n2. Match the attributes with the columns in the uploaded file and start the import in the `import/save` call.\n3. Get infos on the import status in the `import/{{import_id}}/info` call.\n\n<div class=\"alert alert-info\">This call expects a csv, ods, xls, xlsx file in the payload instead of JSON.</div>"},"response":[{"id":"e5bc773f-1c72-4d0f-93b4-7c80d9cf13ac","name":"Import Recipients - Upload File","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[{"key":"file","value":null,"sessionValue":{"0":{}},"type":"file"}]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/import/init"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 11:56:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"file","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"138.201.29.81:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"file\":\"pklmo3pz\"}"}],"_postman_id":"126f937f-ae5e-402f-ac30-ab2a7f0cc327"},{"name":"Import Recipients - Match columns and start Import","event":[{"listen":"test","script":{"id":"881abbd7-aec0-49d0-9671-e50b8d890311","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.value[0] && jsonData.value[0].id){","    postman.setEnvironmentVariable(\"import_id\", jsonData.value[0].id);","}"],"type":"text/javascript"}}],"id":"21c9e82c-66ec-4773-aba9-243b0ef45010","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"file\": \"{{file_id}}\",\n    \"associations\": {\n        \"0\": \"email\",\n        \"1\": \"first_name\",\n        \"2\": \"last_name\",\n        \"3\": \"{{attribute_name}}\"\n    },\n    \"groupId\": \"{{group_id}}\",\n    \"emptyBeforeImport\": false,\n    \"doi_form_id\": \"{{doi_form_id}}\",\n    \"insertIntoFormLists\": false\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/import/save","description":"In this call, you match the columns of the uploaded file to the attributes in your account.  \nMake sure to pass the right amount of `associations`.  \nDepending on the size of your file, the import might take some time. Make sure to store the import `id` that is returned in order to check the import status with the `import/{{import_id}}/info` call.\n\n`groupId` is an optional param. Set this parameter to an existing `group_id` to import all recipients into a specifc group.\n\n`emptyBeforeImport` is an optional param. Set this parameter to `true` to remove all recipients from the group or list before the import starts.\n\n`doi_form_id` is an optional param. Set this parameter to an existing `doi_form_id` to import recipients with a Double Opt In mailing configured in the form. Ensure that the Double Opt In Mailing is active.\n\n`insertIntoFormLists` is an optional param. Set this parameter to `true` to import all DOI recipients into the list linked to the form instead of the current list."},"response":[{"id":"51b4a59c-58bd-49fc-81af-80e1e7342c10","name":"Import Recipients - Match columns and start Import","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"file\": \"{{file_id}}\",\n\t\"associations\": {\n\t\t\"0\": \"email\",\n\t\t\"1\": \"first_name\",\n\t\t\"2\": \"last_name\", \n\t\t\"3\": \"{{attribute_name}}\"\n\t}\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/recipients/import/save"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 11:57:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"file","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.99.90:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"id\": \"pklmo3pz\"\n        }\n    ]\n}"}],"_postman_id":"21c9e82c-66ec-4773-aba9-243b0ef45010"},{"name":"Import Recipients - Get Infos on import status","event":[{"listen":"test","script":{"id":"71c3fb14-6344-4e1a-b4b6-b91d1b4abffd","type":"text/javascript","exec":[""]}}],"id":"d7aba723-6eb5-441a-b898-1f9624896f87","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\n\t\"file\": \"{{file_id}}\",\n\t\"associations\": {\n\t\t\"0\": \"email\",\n\t\t\"1\": \"first_name\",\n\t\t\"2\": \"last_name\", \n\t\t\"3\": \"{{attribute_name}}\"\n\t}\n}"},"url":"https://api.newsletter2go.com/import/{{import_id}}/info","description":"Returns the status of the import with additional information such as the amount of newly created recipients `count_inserted`, the amount of updated recipients `count_updated`, the amount of illegal recipients `count_failed` and arrays recipients that could not be imported `duplicate_recipients` and `invalid_recipients`."},"response":[{"id":"1ae5d6c2-7c4e-4bc4-8470-486a109714cb","name":"Import Recipients - Get Infos on import status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"url":"https://api.newsletter2go.com/import/{{import_id}}/info"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 12:08:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.171.185:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"count_inserted\": 0,\n            \"count_updated\": 2,\n            \"count_failed\": 3,\n            \"duplicate_recipients\": [\n            \t{\n                    \"email\": \"some.duplicate@email.de\",\n                    \"last_name\": \"Duplicate\"\n                },\n                {\n                    \"email\": \"some.duplicate2@email.com\",\n                    \"last_name\": \"Duplicate 2\"\n                }\n            ],\n            \"invalid_recipients\": [\n            \t{\n                    \"email\": \"some.invalid@email\",\n                    \"last_name\": \"Invalid\"\n                }\n            ],\n            \"file\": \"import.csv\"\n        }\n    ]\n}"}],"_postman_id":"d7aba723-6eb5-441a-b898-1f9624896f87"}],"id":"0559b63a-004d-4db8-908c-ce3266547fd0","description":"# Contacts parameters\n\n| Parameter | Type      | Description |\n|-----------|-----------|-----------|\n| `email` | `email` | The email address of the contact |\n| `first_name` | `string` | The first name of the contact |\n| `last_name` | `string` | The last name of the contact |\n| `gender` | `enum` `f` or `m` | The gender of the contact |\n| `phone` | `string` | The phone number of the contact |\n| `created_at` | `date` ISO-8601 format | The date the contact was created |\n| `rating` | `enum` 0 to 5 | The contact's activity rating calculated by N2G |\n| `is_unsubscribed` | `boolean` | Whether the contact has unsubscribed from the current list |\n| `is_bounced` | `boolean` | Whether the contact has bounced from the current list |\n| `is_blacklisted` | `boolean` | Whether the contact is blacklisted in the current list |\n| `statistic_mails_received` | `integer` | The amount of emails the contact received |\n| `statistic_mails_opened` | `integer` | The amount of emails opened by this contact  |\n| `statistic_mails_unique_opened` | `integer` | The amount of emails uniquely opened by this contact |\n| `statistic_mails_clicked` | `integer` | The amount of emails clicked by this contact |\n| `statistic_mails_unique_clicked` | `integer` | The amount of emails uniquely clicked by this contact |\n| `statistic_conversions` | `integer` | The amount of conversions triggered by this contact |\n| `statistic_last_mail_action` | `date` ISO-8601 format | The date of the last action (open, click, conversion) the contact performed |\n| `statistic_last_country_code` | `string` ISO ALPHA-2 Code | The country code of the last location the contact was tracked in |\n| `statistic_last_city` | `string` | The last city that contact was tracked in |\n| `group_ids` | `array` of `string` | An array of `group_ids` that the contact is part of |\n| `list_ids` | `array` of `string` | An array of `list_ids` that the contact is part of |\n| `{{attribute_name}}` | `any` | Custom attributes and its value for the current contact |","event":[{"listen":"prerequest","script":{"id":"7946a966-f17f-45cf-a601-6e21cf088f0f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"58b9f2e1-a79d-4434-949e-e95ed2c79741","type":"text/javascript","exec":[""]}}],"_postman_id":"0559b63a-004d-4db8-908c-ce3266547fd0"},{"name":"Segments","item":[{"name":"Get Segments in List","id":"bef8c5b0-c961-41d8-9a77-2d6eb0ea526e","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/groups"},"response":[{"id":"97978c30-5ea3-467e-8708-aff4410265d7","name":"Get Segments in List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:36:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.95.25:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/yd93awl3\\/groups?_limit=50&_offset=0\"\n        },\n        \"count\": 2\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/groups\\/y9bjc5pj\",\n            \"id\": \"y9bjc5pj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/groups\\/4e0ugfvb\",\n            \"id\": \"4e0ugfvb\"\n        }\n    ]\n}"}],"_postman_id":"bef8c5b0-c961-41d8-9a77-2d6eb0ea526e"},{"name":"Create Segment","id":"170ef0ae-10c5-4bc1-a658-750dad70c452","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\n\t\"list_id\": \"{{list_id}}\",\n\t\"name\": \"New regular Segment\",\n\t\"is_dynamic\": false\n}"},"url":"https://api.newsletter2go.com/groups"},"response":[{"id":"f9452e68-f854-4e98-8d58-56e8489ba518","name":"Create Segment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"list_id\": \"{{list_id}}\",\n\t\"name\": \"New regular Segment\",\n\t\"is_dynamic\": false\n}"},"url":"https://api.newsletter2go.com/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:34:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.171.185:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/groups\\/y9bjc5pj\",\n            \"id\": \"y9bjc5pj\"\n        }\n    ]\n}"}],"_postman_id":"170ef0ae-10c5-4bc1-a658-750dad70c452"},{"name":"Create Auto-Update Segment","id":"9e4c105f-23de-4fc0-8ebd-da2a4e8c1998","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\n\t\"list_id\": \"{{list_id}}\",\n\t\"name\": \"New group Segment like example\",\n\t\"filter\": \"email=LIKE=\\\"%example%\\\"\",\n\t\"is_dynamic\": true\n}"},"url":"https://api.newsletter2go.com/groups","description":"The attribute `filter` should be the conditions upon which the auto-update action is executed. \n\nThe attribute `is_dynamic` defines wether the segment will auto-update or not. "},"response":[{"id":"be663b7e-394c-4815-b175-68a3af324daf","name":"Create Auto-Update Segment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"list_id\": \"{{list_id}}\",\n\t\"name\": \"New group Segment like example\",\n\t\"filter\": \"email=LIKE=\\\"%example%\\\"\",\n\t\"is_dynamic\": true\n}"},"url":"https://api.newsletter2go.com/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:34:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/groups\\/4e0ugfvb\",\n            \"id\": \"4e0ugfvb\"\n        }\n    ]\n}"}],"_postman_id":"9e4c105f-23de-4fc0-8ebd-da2a4e8c1998"},{"name":"Update Segment","id":"dc96fd1b-9664-4bf9-8f03-891216999de1","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"A new Segment Name\"\n}"},"url":"https://api.newsletter2go.com/groups/{{group_id}}"},"response":[{"id":"3d6ca106-2488-47b1-a9c9-bb3a44a38a4f","name":"Update Segment","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"A new Segment Name\"\n}"},"url":"https://api.newsletter2go.com/groups/{{group_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:35:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.5.6:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"dc96fd1b-9664-4bf9-8f03-891216999de1"},{"name":"Delete Segment","id":"c28c7c5b-f3d0-4d35-be6e-eacd6b83495c","request":{"auth":{"type":"noauth"},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/groups/{{group_id}}"},"response":[{"id":"95945018-6bb9-40c0-b52a-d9c6530a8727","name":"Delete Segment","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/groups/{{group_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:37:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.53.59:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"c28c7c5b-f3d0-4d35-be6e-eacd6b83495c"},{"name":"Get Recipient from Segment","id":"0f795e20-e225-4633-81cb-8c0165dea3e3","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients"},"response":[{"id":"323f7898-852c-40cf-ab9c-af91ec972a62","name":"Get Recipient from Segment","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:48:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.90.166:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/groups\\/6646sguf\\/recipients?_limit=50&_offset=0\"\n        },\n        \"count\": 4,\n        \"additional\": {\n            \"active\": 4\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/g783na13\",\n            \"id\": \"g783na13\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/y2n9bqcz\",\n            \"id\": \"y2n9bqcz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/cxrzhkyr\",\n            \"id\": \"cxrzhkyr\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/recipients\\/gs6qc2iv\",\n            \"id\": \"gs6qc2iv\"\n        }\n    ]\n}"}],"_postman_id":"0f795e20-e225-4633-81cb-8c0165dea3e3"},{"name":"Add one Recipient to Segment","id":"e2b73d08-b635-4028-8397-9687f32e2be2","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients/{{recipient_id}}","description":"Recipients can only be added to regular segments (non auto-update)"},"response":[{"id":"4886b974-9c1d-4196-9630-05556aa9beda","name":"Add one Recipient to Segment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients/{{recipient_id}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:38:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.53.59:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"e2b73d08-b635-4028-8397-9687f32e2be2"},{"name":"Add multiple Recipients to Segment","id":"35077232-fdc7-4a30-8ef2-a45f5341fb07","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","groups","{{group_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]},"description":"Add all Recipients to the given segment. This will \nonly work with regular groups (non auto-update)\n\n<div class=\"alert alert-info\">\nPay attention to the filter, if you forget to submit it, all recipients of the current list will be added to the group. </div>\n"},"response":[{"id":"6cd70bd3-109d-4eb8-b531-6225e6055e7d","name":"Add multiple Recipients to Segment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","groups","{{group_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:48:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.171.185:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 2\n    },\n    \"value\": []\n}"}],"_postman_id":"35077232-fdc7-4a30-8ef2-a45f5341fb07"},{"name":"Delete Recipients from Segment","id":"d9e629cc-aa41-45b3-83a9-f99756f606a3","request":{"auth":{"type":"noauth"},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","groups","{{group_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]},"description":"Delete multiple / all recipients from a regular (not auto-update) group. \n\n<div class=\"alert alert-info\">Be careful. If you don't pass a <code>_filter</code>, all your recipients will be deleted from the group irrevocably.</div>"},"response":[{"id":"2aa9a996-2019-4f09-ab07-ab4dd34902de","name":"Delete Recipients from Segment","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.newsletter2go.com/lists/{{list_id}}/groups/{{group_id}}/recipients?_filter=email%3DLIKE%3D%22%example%25%22","protocol":"https","host":["api","newsletter2go","com"],"path":["lists","{{list_id}}","groups","{{group_id}}","recipients"],"query":[{"key":"_filter","value":"email%3DLIKE%3D%22%example%25%22"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:50:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.99.90:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 2\n    },\n    \"value\": []\n}"}],"_postman_id":"d9e629cc-aa41-45b3-83a9-f99756f606a3"}],"id":"21056689-a283-4b42-be23-7e23b4b9026e","_postman_id":"21056689-a283-4b42-be23-7e23b4b9026e"},{"name":"Attributes","item":[{"name":"Get Attributes from List","id":"186844bb-9313-4935-96f8-9336f654aaf7","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/attributes"},"response":[{"id":"42b860fa-a313-4529-bff2-b95c261a010f","name":"Get Attributes from List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:51:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.5.6:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/attributes?_limit=50&_offset=0\"\n        },\n        \"count\": 20\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/cnxun8wj\",\n            \"id\": \"cnxun8wj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/91pt19av\",\n            \"id\": \"91pt19av\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/jcnm7ks3\",\n            \"id\": \"jcnm7ks3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/tzf44guv\",\n            \"id\": \"tzf44guv\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/jkjs21xz\",\n            \"id\": \"jkjs21xz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/cg1968o3\",\n            \"id\": \"cg1968o3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/axse6xrn\",\n            \"id\": \"axse6xrn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/yac6xvbr\",\n            \"id\": \"yac6xvbr\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/e85q32t3\",\n            \"id\": \"e85q32t3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/f8nsxi6b\",\n            \"id\": \"f8nsxi6b\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/e779lnbn\",\n            \"id\": \"e779lnbn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/cg1qmsb7\",\n            \"id\": \"cg1qmsb7\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/grwmd8lv\",\n            \"id\": \"grwmd8lv\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/wl5o0irb\",\n            \"id\": \"wl5o0irb\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/3pc9xfmv\",\n            \"id\": \"3pc9xfmv\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/d6p7g28n\",\n            \"id\": \"d6p7g28n\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/if43pq03\",\n            \"id\": \"if43pq03\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/7bkvcy1z\",\n            \"id\": \"7bkvcy1z\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/76lmsk4z\",\n            \"id\": \"76lmsk4z\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/ewuoch8j\",\n            \"id\": \"ewuoch8j\"\n        }\n    ]\n}"}],"_postman_id":"186844bb-9313-4935-96f8-9336f654aaf7"},{"name":"Get Attribute Details","id":"b8a4f83b-1e17-4f6c-922e-afcdadc3dd2d","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/attributes/{{attribute_id}}"},"response":[{"id":"ee1d1798-1126-4f24-8521-894e7b66aae4","name":"Get Attribute Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/attributes/{{attribute_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:51:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.53.59:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/jkjs21xz\",\n            \"id\": \"jkjs21xz\",\n            \"company_id\": \"3kf9rpeb\",\n            \"name\": \"auswahl\",\n            \"display\": \"all\",\n            \"type\": \"text\",\n            \"sub_type\": \"text\",\n            \"is_enum\": true,\n            \"is_public\": false,\n            \"is_multiselect\": false,\n            \"html_element_type\": \"input\",\n            \"is_global\": false,\n            \"default_value\": \"\"\n        }\n    ]\n}"}],"_postman_id":"b8a4f83b-1e17-4f6c-922e-afcdadc3dd2d"},{"name":"Create Attribute","id":"19dfd182-e8b2-4561-91fe-a4d1a31b11dc","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"list_ids\": [\r\n    \"{{list_id}}\"\r\n  ],\r\n    \"name\": \"New_Attribute\",\r\n    \"display\": \"all\",\r\n    \"type\": \"text\",\r\n    \"sub_type\": \"text\",\r\n    \"is_enum\": false,\r\n    \"is_public\": false,\r\n    \"is_multiselect\": false,\r\n    \"html_element_type\": \"input\",\r\n    \"is_global\": false,\r\n    \"default_value\": \"\"\r\n}"},"url":"https://api.newsletter2go.com/attributes","description":"<div class=\"alert alert-info\">Attribute names may only contain letters, numbers and underscores or as a REGEX `[0-9a-zA-Z_]+`</div>"},"response":[{"id":"96181c0b-4c9a-4237-8086-6a76a5f54fec","name":"Create Attribute","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"list_ids\": [\r\n    \"{{list_id}}\"\r\n  ],\r\n    \"name\": \"New_Attribute\",\r\n    \"display\": \"all\",\r\n    \"type\": \"text\",\r\n    \"sub_type\": \"text\",\r\n    \"is_enum\": false,\r\n    \"is_public\": false,\r\n    \"is_multiselect\": false,\r\n    \"html_element_type\": \"input\",\r\n    \"is_global\": false,\r\n    \"default_value\": \"\"\r\n}"},"url":"https://api.newsletter2go.com/attributes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:52:08 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.134.120:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/attribute\\/m87mylb7\",\n            \"id\": \"m87mylb7\"\n        }\n    ]\n}"}],"_postman_id":"19dfd182-e8b2-4561-91fe-a4d1a31b11dc"},{"name":"Update Attribute","id":"23e37d1d-f8aa-48a1-9093-b9f29195085d","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"list_ids\": [\r\n    \"{{list_id}}\"\r\n  ],\r\n  \"name\": \"New_Name\"\r\n}"},"url":"https://api.newsletter2go.com/attributes/{{attribute_id}}"},"response":[{"id":"d977b8d1-f17c-48d6-84c3-8a9fd9b0637a","name":"Update Attribute","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"list_ids\": [\r\n    \"{{list_id}}\"\r\n  ],\r\n  \"name\": \"New_Name\"\r\n}"},"url":"https://api.newsletter2go.com/attributes/{{attribute_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:53:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.171.185:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"23e37d1d-f8aa-48a1-9093-b9f29195085d"},{"name":"Delete Attribute","id":"ccc3735c-106a-4c47-9725-2ed6302ac10a","request":{"auth":{"type":"noauth"},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/attributes/{{attribute_id}}"},"response":[{"id":"a1a0e9f2-5ff8-4e4e-a057-be694031ae88","name":"Delete Attribute","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/attributes/{{attribute_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 13:53:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.95.25:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"ccc3735c-106a-4c47-9725-2ed6302ac10a"}],"id":"9fa4c904-5bc0-41f5-8c70-11ec428d8c75","_postman_id":"9fa4c904-5bc0-41f5-8c70-11ec428d8c75"},{"name":"Campaigns","item":[{"name":"Get Mailings from List","id":"d45a8153-1081-4ee6-a779-6a245d484746","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters"},"response":[{"id":"747bdeaa-5417-400a-8b51-070c5e679527","name":"Get Mailings from List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:06:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/newsletters?_limit=50&_offset=0\",\n            \"_next\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/newsletters?_limit=50&_offset=50\",\n            \"_last\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/newsletters?_limit=50&_offset=25\"\n        },\n        \"count\": 75,\n        \"additional\": {\n            \"overall\": {\n                \"mail_count\": 1589,\n                \"ave_mail_count\": 10.7365,\n                \"hard_bounces\": 962,\n                \"soft_bounces\": 14,\n                \"spam_bounces\": 0,\n                \"opens\": 263,\n                \"unique_opens\": 183,\n                \"clicks\": 35,\n                \"unique_clicks\": 28,\n                \"conversions\": 0,\n                \"sum_conversions\": 0,\n                \"unsubscribes\": 13,\n                \"complaints\": 0\n            },\n            \"filtered\": {\n                \"mail_count\": 1589,\n                \"ave_mail_count\": 10.7365,\n                \"hard_bounces\": 962,\n                \"soft_bounces\": 14,\n                \"spam_bounces\": 0,\n                \"opens\": 263,\n                \"unique_opens\": 183,\n                \"clicks\": 35,\n                \"unique_clicks\": 28,\n                \"conversions\": 0,\n                \"sum_conversions\": 0,\n                \"unsubscribes\": 13,\n                \"complaints\": 0\n            },\n            \"counts\": {\n                \"draft\": 53,\n                \"progress\": 3,\n                \"sent\": 19,\n                \"active\": 12,\n                \"inactive\": 10\n            }\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/8tt4s7rn\",\n            \"id\": \"8tt4s7rn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/imz3fgwn\",\n            \"id\": \"imz3fgwn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/7fhw3khf\",\n            \"id\": \"7fhw3khf\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/ij2rniw3\",\n            \"id\": \"ij2rniw3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/m87pghnb\",\n            \"id\": \"m87pghnb\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/uu00t8wz\",\n            \"id\": \"uu00t8wz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/y9c0c7s3\",\n            \"id\": \"y9c0c7s3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/3t99m4sj\",\n            \"id\": \"3t99m4sj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/pugs5yon\",\n            \"id\": \"pugs5yon\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/yl69ueoz\",\n            \"id\": \"yl69ueoz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/up3mnrsn\",\n            \"id\": \"up3mnrsn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/856fkk7b\",\n            \"id\": \"856fkk7b\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/dfjtm9gj\",\n            \"id\": \"dfjtm9gj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/9va5fe53\",\n            \"id\": \"9va5fe53\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/raq1qt43\",\n            \"id\": \"raq1qt43\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/wh841t9j\",\n            \"id\": \"wh841t9j\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/uyypkj1j\",\n            \"id\": \"uyypkj1j\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/6e1el8zr\",\n            \"id\": \"6e1el8zr\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/h1sxwmh3\",\n            \"id\": \"h1sxwmh3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/bnfblsh3\",\n            \"id\": \"bnfblsh3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/szxo726b\",\n            \"id\": \"szxo726b\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/bkhsxomv\",\n            \"id\": \"bkhsxomv\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/ppi6r5gj\",\n            \"id\": \"ppi6r5gj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/gztu05pj\",\n            \"id\": \"gztu05pj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/us262cqf\",\n            \"id\": \"us262cqf\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/f2rtkhkj\",\n            \"id\": \"f2rtkhkj\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/m1b2ykmf\",\n            \"id\": \"m1b2ykmf\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/szxlemlf\",\n            \"id\": \"szxlemlf\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/ki27lmxv\",\n            \"id\": \"ki27lmxv\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/ig34haav\",\n            \"id\": \"ig34haav\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/nqh23eir\",\n            \"id\": \"nqh23eir\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/gpyr2nkz\",\n            \"id\": \"gpyr2nkz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/wm40xqyr\",\n            \"id\": \"wm40xqyr\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/gwvcidtf\",\n            \"id\": \"gwvcidtf\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/6e1dgwo7\",\n            \"id\": \"6e1dgwo7\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/7z87t4df\",\n            \"id\": \"7z87t4df\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/rlkpqw8z\",\n            \"id\": \"rlkpqw8z\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/a27bqxd3\",\n            \"id\": \"a27bqxd3\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/goy4g0kn\",\n            \"id\": \"goy4g0kn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/884c5etz\",\n            \"id\": \"884c5etz\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/s8j9xiqf\",\n            \"id\": \"s8j9xiqf\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/tzo771g7\",\n            \"id\": \"tzo771g7\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/xkw9p1r7\",\n            \"id\": \"xkw9p1r7\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/9nf4xywn\",\n            \"id\": \"9nf4xywn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/nqgzac3r\",\n            \"id\": \"nqgzac3r\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/gwu8lcjn\",\n            \"id\": \"gwu8lcjn\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/sggg66f7\",\n            \"id\": \"sggg66f7\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/845pxrlf\",\n            \"id\": \"845pxrlf\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/im1cqy1z\",\n            \"id\": \"im1cqy1z\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/ij1kxu0z\",\n            \"id\": \"ij1kxu0z\"\n        }\n    ]\n}"}],"_postman_id":"d45a8153-1081-4ee6-a779-6a245d484746"},{"name":"Get one Mailing","id":"75083638-39a1-4cdf-a307-4e7708e8da76","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}"},"response":[{"id":"25590bcc-bfd0-498f-901c-200b973fc790","name":"Get one Mailing","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:07:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.53.59:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1,\n        \"additional\": {}\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/jlrcgyer\",\n            \"id\": \"jlrcgyer\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-08-09T13:01:41+0000\",\n            \"created_at\": \"2018-08-08T15:13:48+0000\",\n            \"type\": \"transaction\",\n            \"name\": \"Other name\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 4,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-08-08T15:24:02+0000\",\n            \"statistic_mail_count\": 4,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 2,\n            \"statistic_unique_opens\": 2,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 0,\n            \"statistic_complaints\": 0\n        }\n    ]\n}"}],"_postman_id":"75083638-39a1-4cdf-a307-4e7708e8da76"},{"name":"Get saved Versions of a Mailing","id":"3bfd595a-d46c-4695-9681-aea918f22e9a","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/versions","description":"Use the `_filter` to get a specific version."},"response":[{"id":"6f3882f5-1fb9-4fd1-97ee-a9090db68216","name":"Get saved Versions of a Mailing","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/versions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:07:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.53.59:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/jlrcgyer\\/versions?_limit=50&_offset=0\"\n        },\n        \"count\": 8\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"kswzu92e\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"j9oneycm\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"vix083qa\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"wditjjv6\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"7atovtdv\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"6dafunqv\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"y0pns60m\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletter\\/jlrcgyer\\/version\",\n            \"id\": \"fkj6p2ua\"\n        }\n    ]\n}"}],"_postman_id":"3bfd595a-d46c-4695-9681-aea918f22e9a"},{"name":"Create Mailing","id":"b6908876-23a9-4edc-a15f-edf5d9337085","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"type\": \"default\",\r\n  \"name\": \"New Mailing Name\",\r\n  \"has_open_tracking\": true,\r\n  \"has_click_tracking\": true,\r\n  \"has_conversion_tracking\": true,\r\n  \"subject\": \"Subject\",\r\n  \"preheader\": \"Pre header\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\"\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters","description":"If your list has default values for `header_from_email`, `header_from_name`, `header_reply_email` and/or `header_reply_name`, those will be used in case you don't pass them in this call.\n\n`JSON` will be documented in a separate document shortly using the Newsletter2Go Markup Language (NML)"},"response":[{"id":"11ba0364-9dda-46a9-a58b-b319dc77f27c","name":"Create Mailing","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"type\": \"default\",\r\n  \"name\": \"New Mailing Name\",\r\n  \"has_open_tracking\": true,\r\n  \"has_click_tracking\": true,\r\n  \"has_conversion_tracking\": true,\r\n  \"subject\": \"Subject\",\r\n  \"preheader\": \"Pre header\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\"\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:07:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.60:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1,\n        \"additional\": {}\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/9qe97zyr\",\n            \"id\": \"9qe97zyr\"\n        }\n    ]\n}"}],"_postman_id":"b6908876-23a9-4edc-a15f-edf5d9337085"},{"name":"Create transactional Mailing","id":"a8f42b89-ab89-4ebe-8e5c-8dfe2307341a","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"type\": \"transaction\",\r\n  \"name\": \"New Transactional Mailing Name\",\r\n  \"has_open_tracking\": true,\r\n  \"has_click_tracking\": true,\r\n  \"has_conversion_tracking\": true,\r\n  \"subject\": \"Subject\",\r\n  \"preheader\": \"Pre header\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\"\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters","description":"Make sure to understand [how transactional mailings work](#transactional-mailings) first. \n\nIf your list has default values for `header_from_email`, `header_from_name`, `header_reply_email` and/or `header_reply_name`, those will be used in case you don't pass them in this call.\n\njson should be documented in a separate document for the Newsletter2Go Markup Language (NML)"},"response":[{"id":"e475c638-66a1-4887-ad33-b875037f92d4","name":"Create transactional Mailing","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"type\": \"transaction\",\r\n  \"name\": \"New Transactional Mailing Name\",\r\n  \"has_open_tracking\": true,\r\n  \"has_click_tracking\": true,\r\n  \"has_conversion_tracking\": true,\r\n  \"subject\": \"Subject\",\r\n  \"preheader\": \"Pre header\",\r\n  \"header_from_email\": \"from@example.org\",\r\n  \"header_from_name\": \"From Name\",\r\n  \"header_reply_email\": \"reply@example.org\",\r\n  \"header_reply_name\": \"Reply Name\"\r\n}"},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:08:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"info\": {\n        \"count\": 1,\n        \"additional\": {}\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/newsletters\\/bjh6gb8j\",\n            \"id\": \"bjh6gb8j\"\n        }\n    ]\n}"}],"_postman_id":"a8f42b89-ab89-4ebe-8e5c-8dfe2307341a"},{"name":"Send Test","id":"1df37c76-18ee-434f-bb1c-445a7e2f872f","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"contexts\": [\r\n  \t\t{\r\n  \t\t\"recipient\": {\r\n  \t\t\t\"email\": \"email@example.org\" }\r\n  \t\t}\r\n  \t]\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/sendtest","description":"This will send a test but leave the mailing status untouched.   \nBe aware that the subject line will be prepended by `[TEST] `."},"response":[{"id":"d0e27b7e-987a-42b1-9d93-a7257e42fd71","name":"Send Test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"contexts\": [\r\n  \t\t{\r\n  \t\t\"recipient\": {\r\n  \t\t\t\"email\": \"email@example.org\" }\r\n  \t\t}\r\n  \t]\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/sendtest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:08:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.5.6:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"message\": \"send test-mail to 1 recipients\"\n        }\n    ]\n}"}],"_postman_id":"1df37c76-18ee-434f-bb1c-445a7e2f872f"},{"name":"Send one-time Mailing","id":"ba16af5b-06fa-4c10-94cd-8f54cec5a316","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"scheduled\": \"2018-08-08T17:02:12+0200\",\r\n\t\"group_ids\": [\r\n\t\t\"{{group_id}}\"\r\n\t],\r\n\t\"recipient_ids\": [\r\n\t\t\"{{recipient_id}}\"\r\n\t],\r\n\t\"list_id\": \"{{list_id}}\",\r\n\t\"list_selected\": false\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/send","description":"There are different ways to address a mailing. \n * to the whole contac list by using the `list_id`, \n * to single segments (using the `group_ids` field), \n * to single recipients only (by using the `recipient_ids` together with the `list_selected` field set to *false*) and \n * a combination of the above.\n\n**Important**: Please take into account, that you have to set the `list_selected` field to *false*, if you like to send to single recipients only or together with segments. This makes clear that the newsletter will not be sent to the whole contact list."},"response":[{"id":"9af937b4-d55a-42a9-8961-0054661d7e63","name":"Send one-time Mailing","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n\t\"scheduled\": \"2018-08-08T17:02:12+0200\",\r\n\t\"group_ids\": [\r\n\t\t\"{{group_id}}\"\r\n\t],\r\n\t\"recipient_ids\": [\r\n\t\t\"{{recipient_id}}\"\r\n\t]\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/send"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:12:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"138.201.29.81:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"success\": true\n        }\n    ]\n}"}],"_postman_id":"ba16af5b-06fa-4c10-94cd-8f54cec5a316"},{"name":"Send transactional Mailing","id":"d39fb18d-bf1f-4255-be78-36f327023b0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n    \"scheduled\": \"2018-07-27T16:58:12+0200\",\r\n    \"contexts\": [\r\n        {\r\n            \"recipient\": {\r\n                \"email\": \"email@example.org\"\r\n            },\r\n            \"attachments\": [\r\n                {\r\n                    \"id\": \"{{file_id}}\",\r\n                    \"filename\": \"{{file_name}}\",\r\n                    \"type\": \"url\",\r\n                    \"url\": \"{{file_url}}\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/send","description":"Make sure to understand [how transactional mailings work](#transactional-mailings) first.  \nYou can pass other data fields (such as `first_name` or custom attributes) in the `recipient` object as well and reference them in the body of the email.  \nIf you want to send a transactional mailing to multiple contacts at the same time, just add another `recipient` object to the `contexts` array."},"response":[{"id":"16941141-ee96-4158-b828-ccfaea083de9","name":"Send transactional Mailing","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"scheduled\": \"2018-07-27T16:58:12+0200\",\r\n  \"contexts\": [\r\n  \t\t{\r\n  \t\t\"recipient\": {\r\n  \t\t\t\"email\": \"email@example.org\" }\r\n  \t\t}\r\n  \t]\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/send"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:15:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.134.120:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"success\": true\n        }\n    ]\n}"},{"id":"377f6d64-42dc-4541-8c92-532ff4f298df","name":"Send transactional Mailing to multiple Contacts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\r\n  \"scheduled\": \"2018-07-27T16:58:12+0200\",\r\n  \"contexts\": [\r\n  \t\t{\r\n  \t\t\"recipient\": {\r\n  \t\t\t\"email\": \"email@example.org\" }\r\n  \t\t},\r\n  \t\t{\r\n  \t\t\"recipient\": {\r\n  \t\t\t\"email\": \"otheremail@example.org\" }\r\n  \t\t}\r\n  \t]\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/send"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 09 Oct 2018 11:41:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from"},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1"},{"key":"X-Fpm","value":"default"},{"key":"X-Upstream","value":"88.99.90.166:8200"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"success\": true\n        }\n    ]\n}"},{"id":"bcac6fd7-3d9b-40bf-bac3-35745bb1f9f5","name":"Send transactional Mailing by id (exisiting recipient)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"scheduled\": \"2018-07-27T16:58:12+0200\",\r\n  \"contexts\": [\r\n  \t\t{\r\n  \t\t\"recipient\": {\r\n  \t\t\t\"id\": \"eqwb9z0j\" }\r\n  \t\t}\r\n  \t]\r\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/send"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 17 Aug 2018 14:25:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.90.166:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"success\": true\n        }\n    ]\n}"}],"_postman_id":"d39fb18d-bf1f-4255-be78-36f327023b0a"},{"name":"Update one Mailing","id":"76993cf1-63df-4bb9-89ee-393d2e8593f3","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Other Name\",\n    \"is_deleted\": false,\n    \"has_open_tracking\": true,\n    \"has_click_tracking\": true,\n    \"has_conversion_tracking\": true,\n    \"has_google_analytics_tracking\": false,\n    \"has_econda_tracking\": false,\n    \"has_custom_tracking\": false,\n    \"state\": \"active\"\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}","description":"If you want to be able to trigger automated mailings, make sure that the state is set to `active`.  \nUse `list_selected: true` to send to the whole list, pass an array of group ids in the `group_ids` or send to individual contacts by passing an array in the `recipient_ids` parameter.  \nUse the `html` or `json` parameters to set the contents of the mailing."},"response":[{"id":"e3acab6b-b346-44e0-b0c8-d42a0393ba10","name":"Update one Mailing","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Other Name\",\n    \"is_deleted\": false,\n    \"has_open_tracking\": true,\n    \"has_click_tracking\": true,\n    \"has_conversion_tracking\": true,\n    \"has_google_analytics_tracking\": false,\n    \"has_econda_tracking\": false,\n    \"has_custom_tracking\": false,\n    \"state\": \"active\"\n}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:15:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.134.120:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"76993cf1-63df-4bb9-89ee-393d2e8593f3"},{"name":"Add Attachments to a Mailing","id":"53c1e0e6-4714-47b3-9b1a-e2236dabd2b5","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"attachments\":[{\"id\":\"{{file_id}}\",\"filename\":\"{{file_name}}\",\"type\":\"url\",\"url\":\"{{file_url}}\"}]}"},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/variants","description":"To attach a file to a mailing, you [must first upload the file](https://docs.newsletter2go.com/#9a2453f5-5e60-4106-8624-f75154c7ee85).\nSet `file_id`, `file_name` (containing a file prefix) and `file_url`, which contains the file path and the file name."},"response":[],"_postman_id":"53c1e0e6-4714-47b3-9b1a-e2236dabd2b5"},{"name":"Get specific Mailing Reports","id":"6d5ffa40-7180-4646-b92b-59baf1c94d1f","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports"},"response":[{"id":"e18c22f8-759c-4177-99a2-fc4ff4434e10","name":"Get specific Mailing Reports","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:16:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.5.6:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"unsubscribes\": [\n                {\n                    \"count\": 0\n                }\n            ],\n            \"complaints\": [\n                {\n                    \"count\": 0\n                }\n            ],\n            \"bounces\": [\n                {\n                    \"count\": 0\n                }\n            ],\n            \"open\": {\n                \"unique_open_rate\": 0,\n                \"open_rate\": 0,\n                \"unique_opens\": 0,\n                \"opens\": 0,\n                \"opens_per_opener\": 0,\n                \"devices\": [],\n                \"families\": [],\n                \"useragents\": []\n            },\n            \"click\": {\n                \"unique_click_rate\": 0,\n                \"click_rate\": 0,\n                \"ctr\": 0,\n                \"unique_clicks\": 0,\n                \"clicks\": 0,\n                \"clicks_per_clicker\": 0,\n                \"links\": []\n            },\n            \"conversion\": {\n                \"unique_conversion_rate\": 0,\n                \"conversion_rate\": 0,\n                \"ctr\": 0,\n                \"unique_ctr\": 0,\n                \"unique_conversions\": 0,\n                \"conversions\": 0,\n                \"conversions_per_recipient\": 0,\n                \"products\": [],\n                \"links\": [],\n                \"amount\": 0,\n                \"amount_per_conversion\": 0\n            },\n            \"receivers\": 0,\n            \"name\": \"Other Name\",\n            \"subject\": \"Subject\",\n            \"header_from_email\": \"from@example.org\",\n            \"header_from_name\": \"From Name\",\n            \"thumbnail_big_url\": \"\\/\\/files.newsletter2go.com\\/jcnmuslf\\/s_3kf9rpeb\\/newsletter\\/bjh6gb8j\\/j3r3d74y\\/thumbnail_big.png\",\n            \"header_reply_email\": \"reply@example.org\",\n            \"header_reply_name\": \"Reply Name\",\n            \"header_to_email\": null,\n            \"header_to_name\": null,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"tracking_parameter\": null,\n            \"tracking_url\": null,\n            \"tags\": []\n        }\n    ]\n}"}],"_postman_id":"6d5ffa40-7180-4646-b92b-59baf1c94d1f"},{"name":"Get specific Mailing Reports Recipient Information","id":"c0af7251-3532-4db0-9e1a-8671ede275de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{}},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","type":"text"}],"url":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients","description":"Add a `_filter` to the endpoint in order to query for specific actions:  \n`received_newsletter` for contacts that received the mailing  \n`opened_newsletter` for contacts that opened the mailing  \n`clicked_newsletter` for contacts that clicked the mailing  \n`unsubscribed_newsletter` for contacts that unsubscribed from the mailing  \n`bounced_newsletter` for contacts that clicked the mailing  \n\nCheck out the examples requests on the right for more information."},"response":[{"id":"4845442c-a786-4bc0-806b-a88cd876409a","name":"Bounces","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","type":"text"}],"url":{"raw":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_limit=10&_offset=0&_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=bounced_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"&_expand=false","protocol":"https","host":["api","newsletter2go","com"],"path":["newsletters","{{newsletter_id}}","reports","recipients"],"query":[{"key":"_limit","value":"10"},{"key":"_offset","value":"0"},{"key":"_fields","value":"email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at"},{"key":"_filter","value":"bounced_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\""},{"key":"_expand","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https://api.newsletter2go.com/newsletters/lgw0tu7n/reports/recipients?_expand=false&_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=bounced_newsletter%3DCONTAINS%3D%22lgw0tu7n%22&_limit=10&_offset=0\"\n        },\n        \"count\": 1,\n        \"additional\": {\n            \"invalid_recipients\": []\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\n            \"id\": \"{{recipient_id}}\",\n            \"email\": \"example@newsletter2go.com\",\n            \"rating\": 3,\n            \"created_at\": \"2018-11-23T09:31:24+0000\",\n            \"urls\": [\n                \"http://www.google.com\",\n                \"http://www.google.com\"\n            ]\n        }\n    ]\n}"},{"id":"c3117904-2f17-4948-a5b3-14381dd4ef66","name":"Clickers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"url":{"raw":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=clicked_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"&_limit=10&_offset=0&_expand=false","protocol":"https","host":["api","newsletter2go","com"],"path":["newsletters","{{newsletter_id}}","reports","recipients"],"query":[{"key":"_fields","value":"email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at","description":"Define the fields you want to retrieve here"},{"key":"_filter","value":"clicked_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"","description":"Defines the filter for this endpoint. In this case searches for recipients that clicked a link in a specifc newsletter"},{"key":"_limit","value":"10"},{"key":"_offset","value":"0"},{"key":"_expand","value":"false","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"info\": {\r\n        \"links\": {\r\n            \"_href\": \"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_limit=10&_offset=0&_filter=clicked_newsletter%3DCONTAINS%3D%22{{newsletter_id}}%22&_expand=false&_fields=email%2Cfirst_name%2Clast_name%2Curls%2Cproducts%2Cunsubscription%2Cbounce%2Ccomplaints%2Cgender%2Crating%2Ccreated_at\"\r\n        },\r\n        \"count\": 1,\r\n        \"additional\": {\r\n            \"invalid_recipients\": []\r\n        }\r\n    },\r\n    \"value\": [\r\n        {\r\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\r\n            \"id\": \"{{recipient_id}}\",\r\n            \"email\": \"example@newsletter2go.com\",\r\n            \"rating\": 3,\r\n            \"created_at\": \"2018-11-23T09:31:24+0000\",\r\n            \"urls\": [\r\n                \"http://www.google.com\",\r\n                \"http://www.google.com\"\r\n            ]\r\n        }\r\n    ]\r\n}"},{"id":"cd4789dd-019d-4ba0-9e56-510b6dfac18d","name":"Buyers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"url":{"raw":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=converted_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"&_limit=10&_offset=0&_expand=false","protocol":"https","host":["api","newsletter2go","com"],"path":["newsletters","{{newsletter_id}}","reports","recipients"],"query":[{"key":"_fields","value":"email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at","description":"Define the fields you want to retrieve here"},{"key":"_filter","value":"converted_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"","description":"Defines the filter for this endpoint. In this case searches for recipients that did buy something after clicking a link in the newsletter"},{"key":"_limit","value":"10"},{"key":"_offset","value":"0"},{"key":"_expand","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n\t\t\"_href\": \"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_limit=10&_offset=0&_filter=converted_newsletter%3DCONTAINS%3D%22{{newsletter_id}}%22&_expand=false&_fields=email%2Cfirst_name%2Clast_name%2Curls%2Cproducts%2Cunsubscription%2Cbounce%2Ccomplaints%2Cgender%2Crating%2Ccreated_at\"\n        },\n        \"count\": 1,\n        \"additional\": {\n            \"invalid_recipients\": []\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\n            \"id\": \"{{recipient_id}}\",\n            \"email\": \"example@newsletter2go.com\",\n            \"rating\": 3,\n            \"created_at\": \"2018-11-23T09:31:24+0000\"\n        }\n    ]\n}"},{"id":"d822c7d1-cdce-4d5d-9d9b-7ddbc60477b0","name":"Complaints","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","type":"text"}],"url":{"raw":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_limit=10&_offset=0&_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=complained_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"&_expand=false","protocol":"https","host":["api","newsletter2go","com"],"path":["newsletters","{{newsletter_id}}","reports","recipients"],"query":[{"key":"_limit","value":"10"},{"key":"_offset","value":"0"},{"key":"_fields","value":"email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at"},{"key":"_filter","value":"complained_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\""},{"key":"_expand","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https://api.newsletter2go.com/newsletters/lgw0tu7n/reports/recipients?_expand=false&_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=complained_newsletter%3DCONTAINS%3D%22lgw0tu7n%22&_limit=10&_offset=0\"\n        },\n        \"count\": 1,\n        \"additional\": {\n            \"invalid_recipients\": []\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\n            \"id\": \"{{recipient_id}}\",\n            \"email\": \"example@newsletter2go.com\",\n            \"rating\": 3,\n            \"created_at\": \"2018-11-23T09:31:24+0000\",\n            \"urls\": [\n                \"http://www.google.com\",\n                \"http://www.google.com\"\n            ]\n        }\n    ]\n}"},{"id":"dab7c9c1-f8e8-46dd-8a3b-f2cb2aec4915","name":"Non-openers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"url":{"raw":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=opened_newsletter%3DNCONTAINS%3D\"{{newsletter_id}}\";received_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"&_limit=10&_offset=0&_expand=false","protocol":"https","host":["api","newsletter2go","com"],"path":["newsletters","{{newsletter_id}}","reports","recipients"],"query":[{"key":"_fields","value":"email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at","description":"Define the fields you want to retrieve here"},{"key":"_filter","value":"opened_newsletter%3DNCONTAINS%3D\"{{newsletter_id}}\";received_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"","description":"Defines the filter for this endpoint. In this case searches for recipients that did not open, but received a specifc newsletter"},{"key":"_limit","value":"10"},{"key":"_offset","value":"0"},{"key":"_expand","value":"false","type":"text"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"info\": {\r\n        \"links\": {\r\n\t\t\t\"_href\": \"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_limit=10&_offset=0&_filter=converted_newsletter%3DCONTAINS%3D%22{{newsletter_id}}%22&_expand=false&_fields=email%2Cfirst_name%2Clast_name%2Curls%2Cproducts%2Cunsubscription%2Cbounce%2Ccomplaints%2Cgender%2Crating%2Ccreated_at\"\r\n\r\n        },\r\n        \"count\": 1,\r\n        \"additional\": {\r\n            \"invalid_recipients\": []\r\n        }\r\n    },\r\n    \"value\": [\r\n        {\r\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\r\n            \"id\": \"{{recipient_id}}\",\r\n            \"email\": \"example@newsletter2go.com\",\r\n            \"rating\": 3,\r\n            \"created_at\": \"2018-11-23T09:31:24+0000\",\r\n            \"urls\": [\r\n                \"http://www.google.com\",\r\n                \"http://www.google.com\"\r\n            ]\r\n        }\r\n    ]\r\n}"},{"id":"e40f3cbc-db49-410b-8bfe-087e07814454","name":"Unsubscribers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"url":{"raw":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=unsubscribed_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"&_limit=10&_offset=0&_expand=false","protocol":"https","host":["api","newsletter2go","com"],"path":["newsletters","{{newsletter_id}}","reports","recipients"],"query":[{"key":"_fields","value":"email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at"},{"key":"_filter","value":"unsubscribed_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\""},{"key":"_limit","value":"10"},{"key":"_offset","value":"0"},{"key":"_expand","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_limit=10&_offset=0&_filter=unsubscribed_newsletter%3DCONTAINS%3D%22{{newsletter_id}}%22&_expand=false&_fields=email%2Cfirst_name%2Clast_name%2Curls%2Cproducts%2Cunsubscription%2Cbounce%2Ccomplaints%2Cgender%2Crating%2Ccreated_at\"\n        },\n        \"count\": 1,\n        \"additional\": {\n            \"invalid_recipients\": []\n        }\n    },\n    \"value\": [\n        {\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\n            \"id\": \"{{recipient_id}}\",\n            \"email\": \"example@newsletter2go.com\",\n            \"rating\": 3,\n            \"created_at\": \"2018-11-23T09:31:24+0000\"\n        }\n    ]\n}"},{"id":"ffa5dad9-5bf6-4c55-bc05-2d93db84bcf4","name":"Openers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"url":{"raw":"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_fields=email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at&_filter=opened_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"&_limit=10&_offset=0&_expand=false","protocol":"https","host":["api","newsletter2go","com"],"path":["newsletters","{{newsletter_id}}","reports","recipients"],"query":[{"key":"_fields","value":"email,first_name,last_name,urls,products,unsubscription,bounce,complaints,gender,rating,created_at","description":"Define the fields you want to retrieve here"},{"key":"_filter","value":"opened_newsletter%3DCONTAINS%3D\"{{newsletter_id}}\"","description":"Defines the filter for this endpoint. In this case searches for recipients that opened a specifc newsletter"},{"key":"_limit","value":"10"},{"key":"_offset","value":"0"},{"key":"_expand","value":"false","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"info\": {\r\n        \"links\": {\r\n            \"_href\": \"https://api.newsletter2go.com/newsletters/{{newsletter_id}}/reports/recipients?_limit=10&_offset=0&_filter=opened_newsletter%3DCONTAINS%3D%22{{newsletter_id}}%22&_expand=false&_fields=email%2Cfirst_name%2Clast_name%2Curls%2Cproducts%2Cunsubscription%2Cbounce%2Ccomplaints%2Cgender%2Crating%2Ccreated_at\"\r\n        },\r\n        \"count\": 2,\r\n        \"additional\": {\r\n            \"invalid_recipients\": []\r\n        }\r\n    },\r\n    \"value\": [\r\n        {\r\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\r\n            \"id\": \"{{recipient_id}}\",\r\n            \"email\": \"example@newsletter2go.com\",\r\n            \"first_name\": \"Max\",\r\n            \"last_name\": \"Mustermann\",\r\n            \"gender\": \"\",\r\n            \"rating\": 4,\r\n            \"created_at\": \"2018-11-23T09:32:32+0000\"\r\n        },\r\n        {\r\n            \"_href\": \"https://api.newsletter2go.com/recipients/{{recipient_id}}\",\r\n            \"id\": \"{{recipient_id}}\",\r\n            \"email\": \"example+1@newsletter2go.com\",\r\n            \"rating\": 3,\r\n            \"created_at\": \"2018-11-23T09:31:14+0000\",\r\n            \"urls\": [\r\n                \"http://www.google.com\",\r\n                \"http://www.google.com\"\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"c0af7251-3532-4db0-9e1a-8671ede275de"},{"name":"Get specific Mailing Reports by Day","id":"a71a25e0-8122-4f3d-a300-dbf66b2bc3e8","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters/{{newsletter_id}}/aggregations","description":"This call is useful for automated mailings that run every day since it returns the reports by day."},"response":[{"id":"0b524d48-8a69-48c1-adb5-0a3142f1566b","name":"Get specific Mailing Reports by Day","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters/{{newsletter_id}}/aggregations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:16:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.90.166:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/newsletters\\/bjh6gb8j\\/aggregations?_limit=50&_offset=0\"\n        },\n        \"count\": 0,\n        \"additional\": {\n            \"overall\": {\n                \"mail_count\": 1591,\n                \"ave_mail_count\": 10.6779,\n                \"hard_bounces\": 962,\n                \"soft_bounces\": 14,\n                \"spam_bounces\": 0,\n                \"opens\": 263,\n                \"unique_opens\": 183,\n                \"clicks\": 35,\n                \"unique_clicks\": 28,\n                \"conversions\": 0,\n                \"sum_conversions\": 0,\n                \"unsubscribes\": 13,\n                \"complaints\": 0\n            },\n            \"filtered\": {\n                \"mail_count\": 1591,\n                \"ave_mail_count\": 10.6779,\n                \"hard_bounces\": 962,\n                \"soft_bounces\": 14,\n                \"spam_bounces\": 0,\n                \"opens\": 263,\n                \"unique_opens\": 183,\n                \"clicks\": 35,\n                \"unique_clicks\": 28,\n                \"conversions\": 0,\n                \"sum_conversions\": 0,\n                \"unsubscribes\": 13,\n                \"complaints\": 0\n            }\n        }\n    },\n    \"value\": []\n}"}],"_postman_id":"a71a25e0-8122-4f3d-a300-dbf66b2bc3e8"},{"name":"Get multiple Mailing Reports by Day","id":"c9ff642d-1a33-4cb8-a9d9-f3c5896e53ed","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters/aggregations","description":"This call is useful for automated mailings that run every day since it returns the reports by day."},"response":[{"id":"e496bf59-eb3d-4d6e-b9cc-bea8d5d90eb9","name":"Get multiple Mailing Reports by Day","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/lists/{{list_id}}/newsletters/aggregations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:16:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.53.59:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/newsletters\\/aggregations?_limit=50&_offset=0\",\n            \"_next\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/newsletters\\/aggregations?_limit=50&_offset=50\",\n            \"_last\": \"https:\\/\\/api.newsletter2go.com\\/lists\\/om355owj\\/newsletters\\/aggregations?_limit=50&_offset=99\"\n        },\n        \"count\": 149,\n        \"additional\": {\n            \"overall\": {\n                \"mail_count\": 1591,\n                \"ave_mail_count\": 10.6779,\n                \"hard_bounces\": 962,\n                \"soft_bounces\": 14,\n                \"spam_bounces\": 0,\n                \"opens\": 263,\n                \"unique_opens\": 183,\n                \"clicks\": 35,\n                \"unique_clicks\": 28,\n                \"conversions\": 0,\n                \"sum_conversions\": 0,\n                \"unsubscribes\": 13,\n                \"complaints\": 0\n            },\n            \"filtered\": {\n                \"mail_count\": 1591,\n                \"ave_mail_count\": 10.6779,\n                \"hard_bounces\": 962,\n                \"soft_bounces\": 14,\n                \"spam_bounces\": 0,\n                \"opens\": 263,\n                \"unique_opens\": 183,\n                \"clicks\": 35,\n                \"unique_clicks\": 28,\n                \"conversions\": 0,\n                \"sum_conversions\": 0,\n                \"unsubscribes\": 13,\n                \"complaints\": 0\n            }\n        }\n    },\n    \"value\": [\n        {\n            \"newsletter_id\": \"imz3fgwn\",\n            \"date\": \"2016-07-07T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 6,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 1,\n            \"complaints\": 0,\n            \"id\": \"imz3fgwn\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-01-27T11:14:17+0000\",\n            \"created_at\": \"2016-07-06T13:30:51+0000\",\n            \"type\": \"default\",\n            \"sub_type\": \"default\",\n            \"name\": \"Newsletter 2016-07-06T15:30:51+02:00\",\n            \"state\": \"sent\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 1,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2016-07-07T13:59:09+0000\",\n            \"statistic_mail_count\": 1,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 1,\n            \"statistic_unique_opens\": 1,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-07-07T00:00:00+0000\",\n            \"mail_count\": 2,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 3,\n            \"unique_opens\": 2,\n            \"clicks\": 1,\n            \"unique_clicks\": 1,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-07-08T00:00:00+0000\",\n            \"mail_count\": 2,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 2,\n            \"unique_clicks\": 2,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-07-09T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 1,\n            \"unique_clicks\": 1,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-07-21T00:00:00+0000\",\n            \"mail_count\": 5,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 7,\n            \"unique_opens\": 4,\n            \"clicks\": 3,\n            \"unique_clicks\": 3,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-08-04T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 1,\n            \"unique_clicks\": 1,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 1,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-08-11T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 1,\n            \"unique_clicks\": 1,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-10-16T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-10-27T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 5,\n            \"unique_opens\": 3,\n            \"clicks\": 4,\n            \"unique_clicks\": 3,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2016-11-25T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2017-02-10T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2017-05-05T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"7fhw3khf\",\n            \"date\": \"2018-06-14T00:00:00+0000\",\n            \"mail_count\": 5,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 6,\n            \"unique_opens\": 5,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"7fhw3khf\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2018-06-14T15:15:09+0000\",\n            \"created_at\": \"2016-07-07T07:22:19+0000\",\n            \"type\": \"doi\",\n            \"sub_type\": \"doi\",\n            \"name\": \"Newsletter 2016-07-07T09:22:18+02:00\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 25,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2018-06-14T15:15:03+0000\",\n            \"statistic_mail_count\": 25,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 23,\n            \"statistic_unique_opens\": 19,\n            \"statistic_clicks\": 11,\n            \"statistic_unique_clicks\": 11,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"ij2rniw3\",\n            \"date\": \"2016-07-08T00:00:00+0000\",\n            \"mail_count\": 2,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 3,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 1,\n            \"complaints\": 0,\n            \"id\": \"ij2rniw3\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-01-27T11:14:17+0000\",\n            \"created_at\": \"2016-07-08T23:15:53+0000\",\n            \"type\": \"default\",\n            \"sub_type\": \"default\",\n            \"name\": \"test nach downgrade\",\n            \"state\": \"sent\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 3,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2016-07-08T23:19:12+0000\",\n            \"statistic_mail_count\": 2,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 2,\n            \"statistic_unique_opens\": 3,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"ij2rniw3\",\n            \"date\": \"2016-07-09T00:00:00+0000\",\n            \"mail_count\": 2,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 3,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 4,\n            \"complaints\": 0,\n            \"id\": \"ij2rniw3\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-01-27T11:14:17+0000\",\n            \"created_at\": \"2016-07-08T23:15:53+0000\",\n            \"type\": \"default\",\n            \"sub_type\": \"default\",\n            \"name\": \"test nach downgrade\",\n            \"state\": \"sent\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 3,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2016-07-08T23:19:12+0000\",\n            \"statistic_mail_count\": 2,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 2,\n            \"statistic_unique_opens\": 3,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 1,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"m87pghnb\",\n            \"date\": \"2017-07-04T00:00:00+0000\",\n            \"mail_count\": 1,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 1,\n            \"unique_clicks\": 1,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"m87pghnb\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-07-04T21:26:22+0000\",\n            \"created_at\": \"2016-07-08T23:22:30+0000\",\n            \"type\": \"default\",\n            \"sub_type\": \"default\",\n            \"name\": \"test after promotion\",\n            \"state\": \"sent\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 13,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-07-04T21:26:02+0000\",\n            \"statistic_mail_count\": 1,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 1,\n            \"statistic_unique_opens\": 2,\n            \"statistic_clicks\": 1,\n            \"statistic_unique_clicks\": 1,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 0,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"yl69ueoz\",\n            \"date\": \"2016-09-29T00:00:00+0000\",\n            \"mail_count\": 2,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 2,\n            \"unique_clicks\": 1,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"yl69ueoz\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-01-27T11:14:17+0000\",\n            \"created_at\": \"2016-09-29T07:28:12+0000\",\n            \"type\": \"default\",\n            \"sub_type\": \"default\",\n            \"name\": \"Newsletter 2016-09-29T09:28:09+02:00\",\n            \"state\": \"sent\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 0,\n            \"progress_count\": 2,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2016-09-29T07:30:05+0000\",\n            \"statistic_mail_count\": 2,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 2,\n            \"statistic_unique_opens\": 2,\n            \"statistic_clicks\": 1,\n            \"statistic_unique_clicks\": 1,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 0,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-11-25T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 9,\n            \"unique_opens\": 3,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-11-26T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-11-27T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-11-28T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 4,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-11-29T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-11-30T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-01T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 4,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-02T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 3,\n            \"unique_opens\": 3,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-03T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-04T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-05T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-06T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-07T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 3,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-08T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-09T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 5,\n            \"unique_opens\": 3,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-10T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-11T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-12T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-13T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-14T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-15T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-16T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-17T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-18T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-19T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-20T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 1,\n            \"unique_opens\": 1,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-21T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-22T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 0,\n            \"unique_opens\": 0,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-23T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 3,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-24T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-25T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 0,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-26T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 1,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        },\n        {\n            \"newsletter_id\": \"6e1el8zr\",\n            \"date\": \"2016-12-27T00:00:00+0000\",\n            \"mail_count\": 3,\n            \"hard_bounces\": 0,\n            \"soft_bounces\": 0,\n            \"spam_bounces\": 0,\n            \"opens\": 2,\n            \"unique_opens\": 2,\n            \"clicks\": 0,\n            \"unique_clicks\": 0,\n            \"conversions\": 0,\n            \"sum_conversions\": 0,\n            \"unsubscribes\": 2,\n            \"complaints\": 0,\n            \"id\": \"6e1el8zr\",\n            \"company_id\": \"3kf9rpeb\",\n            \"list_id\": \"om355owj\",\n            \"modified_at\": \"2017-02-28T08:56:45+0000\",\n            \"created_at\": \"2016-11-25T07:47:25+0000\",\n            \"type\": \"recurring\",\n            \"sub_type\": \"recurring\",\n            \"name\": \"Serienmailing Steffen prod\",\n            \"state\": \"active\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_duplicatable\": true,\n            \"is_approved\": false,\n            \"is_archived\": false,\n            \"is_anonymized\": false,\n            \"ip_class\": 100,\n            \"progress_count\": 158,\n            \"has_open_tracking\": true,\n            \"has_click_tracking\": true,\n            \"has_conversion_tracking\": true,\n            \"has_google_analytics_tracking\": false,\n            \"has_econda_tracking\": false,\n            \"has_custom_tracking\": false,\n            \"statistic_last_sent\": \"2017-02-28T08:56:45+0000\",\n            \"statistic_mail_count\": 158,\n            \"statistic_hard_bounces\": 0,\n            \"statistic_soft_bounces\": 0,\n            \"statistic_spam_bounces\": 0,\n            \"statistic_opens\": 53,\n            \"statistic_unique_opens\": 4,\n            \"statistic_clicks\": 0,\n            \"statistic_unique_clicks\": 0,\n            \"statistic_conversions\": 0,\n            \"statistic_conversions_sum\": 0,\n            \"statistic_unsubscribes\": 3,\n            \"statistic_complaints\": 0\n        }\n    ]\n}"}],"_postman_id":"c9ff642d-1a33-4cb8-a9d9-f3c5896e53ed"}],"id":"f84f1ba5-15e8-4200-aa37-fac35dec44f9","event":[{"listen":"prerequest","script":{"id":"8993102d-b96b-4309-a405-3b96512d4dc0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c86f0123-b495-4acc-9c73-6c85815b6968","type":"text/javascript","exec":[""]}}],"_postman_id":"f84f1ba5-15e8-4200-aa37-fac35dec44f9"},{"name":"Forms","item":[{"name":"Get Form","id":"4daba842-cc75-45e1-a822-05334f87ebed","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/forms/generate/{{form_id}}"},"response":[{"id":"243bf0c1-659e-4bdc-b808-cb094e06f0f0","name":"Get Form","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/forms/generate/{{form_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:21:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Cache-Status","value":"HIT","name":"X-Cache-Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"items\": [\n                {\n                    \"name\": \"email\",\n                    \"description\": null,\n                    \"is_multiselect\": false,\n                    \"default_value\": null,\n                    \"attribute_type\": \"text\",\n                    \"attribute_sub_type\": \"email\",\n                    \"label\": \"Email\",\n                    \"placeholder\": \"Email\",\n                    \"is_required\": false,\n                    \"is_multiline\": false,\n                    \"type\": \"attribute\",\n                    \"id\": \"email\"\n                },\n                {\n                    \"is_required\": true,\n                    \"type\": \"gdpr_customer\",\n                    \"content\": \"Ich best&#228;tige die <a href=\\\"https:\\/\\/www.newsletter2go.de\\/datenschutz\\/\\\" target=\\\"_blank\\\">Datenschutzbestimmung<\\/a>\",\n                    \"link\": \"https:\\/\\/www.newsletter2go.de\\/datenschutz\\/\"\n                },\n                {\n                    \"type\": \"gdpr_n2go\",\n                    \"content\": \"<div style=\\\"display: block; position: relative; padding: 10px 10px 10px 80px;\\\"><img style=\\\"width: 60px; position: absolute; left: 0px; top: 20px;\\\" src=\\\"https:\\/\\/files.newsletter2go.com\\/forms\\/gdpr\\/gdpr_lock.png\\\">Wir nutzen Newsletter2Go als Dienstleister f\\u00fcr die Versendung unserer Newsletter. Im Rahmen dieser Anmeldung erkl\\u00e4ren Sie sich einverstanden, dass Ihre eingegebenen Daten an Newsletter2Go \\u00fcbermittelt werden. Bitte beachten Sie die <a href=\\\"https:\\/\\/www.newsletter2go.de\\/datenschutz\\/\\\" target=\\\"_blank\\\">Datenschutzbestimmungen<\\/a> und <a href=\\\"https:\\/\\/www.newsletter2go.de\\/agb\\/\\\" target=\\\"_blank\\\">Allgemeinen Gesch\\u00e4ftsbedingungen<\\/a> von Newsletter2Go.<\\/div>\"\n                },\n                {\n                    \"label\": \"Adressbuchauswahl\",\n                    \"is_required\": false,\n                    \"type\": \"list\",\n                    \"values\": [\n                        {\n                            \"id\": \"om355owj\",\n                            \"label\": \"Default\",\n                            \"is_hidden\": false,\n                            \"is_preselected\": false,\n                            \"value\": \"om355owj\"\n                        },\n                        {\n                            \"id\": \"5oca6p1j\",\n                            \"label\": \"W\\u00f6chentliches Update\",\n                            \"is_hidden\": false,\n                            \"is_preselected\": false,\n                            \"value\": \"5oca6p1j\"\n                        },\n                        {\n                            \"id\": \"7bjaj1wj\",\n                            \"label\": \"Produktneuheiten\",\n                            \"is_hidden\": false,\n                            \"is_preselected\": false,\n                            \"value\": \"7bjaj1wj\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"1_bool\",\n                    \"description\": \"\",\n                    \"is_multiselect\": false,\n                    \"default_value\": \"0\",\n                    \"attribute_type\": \"boolean\",\n                    \"attribute_sub_type\": \"integer\",\n                    \"label\": \"1_bool\",\n                    \"placeholder\": \"\",\n                    \"is_required\": false,\n                    \"is_multiline\": false,\n                    \"type\": \"attribute\",\n                    \"id\": \"1_bool\"\n                },\n                {\n                    \"label\": \"Send\",\n                    \"type\": \"submit\"\n                }\n            ],\n            \"attributes\": {\n                \"1_bool\": {\n                    \"name\": \"1_bool\",\n                    \"description\": \"\",\n                    \"type\": \"boolean\",\n                    \"sub_type\": \"integer\",\n                    \"is_multiselect\": false,\n                    \"default_value\": \"0\"\n                },\n                \"email\": {\n                    \"name\": \"email\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"sub_type\": \"email\",\n                    \"is_multiselect\": false,\n                    \"default_value\": null\n                },\n                \"phone\": {\n                    \"name\": \"phone\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"sub_type\": \"text\",\n                    \"is_multiselect\": false,\n                    \"default_value\": null\n                },\n                \"birthday\": {\n                    \"name\": \"birthday\",\n                    \"description\": null,\n                    \"type\": \"date\",\n                    \"sub_type\": \"date\",\n                    \"is_multiselect\": false,\n                    \"default_value\": null\n                },\n                \"first_name\": {\n                    \"name\": \"first_name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"sub_type\": \"text\",\n                    \"is_multiselect\": false,\n                    \"default_value\": null\n                },\n                \"last_name\": {\n                    \"name\": \"last_name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"sub_type\": \"text\",\n                    \"is_multiselect\": false,\n                    \"default_value\": null\n                },\n                \"gender\": {\n                    \"name\": \"gender\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"sub_type\": \"text\",\n                    \"is_multiselect\": false,\n                    \"default_value\": null,\n                    \"values\": [\n                        {\n                            \"is_preselected\": false,\n                            \"value\": \"m\"\n                        },\n                        {\n                            \"is_preselected\": false,\n                            \"value\": \"f\"\n                        }\n                    ]\n                }\n            },\n            \"messages\": {\n                \"message_subscribe_error\": \"Unfortunately, an error has occurred. Please check your profile.\",\n                \"message_subscribe_duplicate\": \"You have already subscribed to the newsletter.\",\n                \"message_subscribe_success\": \"You have successfully subscribed to the newsletter.\",\n                \"message_subscribe_doi\": \"Thank you for subscribing. We've sent you an email with a confirmation link.\",\n                \"message_subscribe_email\": \"\",\n                \"message_expired_error\": \"Your subscription invitation has expired. Please try again.\"\n            },\n            \"url\": \"https:\\/\\/subscribe.newsletter2go.com?n2g=3kf9rpeb-g38pecar-ijw\"\n        }\n    ]\n}"}],"_postman_id":"4daba842-cc75-45e1-a822-05334f87ebed"},{"name":"Submit Form / Subscribe Contact","id":"46cc4c57-dc6e-440c-83ec-f214f9d24a1a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\t\"recipient\": {\r            \"email\": \"email@example.org\",\r            \"first_name\": \"John\",\r            \"last_name\": \"Doe\",\r            \"{{attribute_name}}\": \"Attribute Value\"\r        }\r}"},"url":"https://api.newsletter2go.com/forms/submit/{{form_id}}","description":"This call can be used to trigger a double opt in process through the API.  \nThe contact will only be added to your list once he / she has clicked the confirmation link in the email."},"response":[{"id":"46eee8c5-b460-4e37-b3cd-9ebe149f20bf","name":"Submit Form / Subscribe Contact","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\r\t\"recipient\": {\r            \"email\": \"email@example.org\",\r            \"first_name\": \"John\",\r            \"last_name\": \"Doe\",\r            \"{{attribute_name}}\": \"attribute value\"\r        }\r}"},"url":"https://api.newsletter2go.com/forms/submit/{{form_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:21:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.58:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 0\n    },\n    \"value\": [\n        {\n            \"result\": {\n                \"success\": {\n                    \"inserted\": 0,\n                    \"updated\": 0\n                },\n                \"error\": {\n                    \"failed\": 1,\n                    \"recipients\": {\n                        \"duplicate\": [],\n                        \"invalid\": [\n                            {\n                                \"email\": \"email@example.org\"\n                            }\n                        ]\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"46cc4c57-dc6e-440c-83ec-f214f9d24a1a"}],"id":"22cf6ae6-ae22-4cc6-8160-cded15a94fbb","description":"The forms end points offer a convenient way to retrieve subscribe, profile and unsubscribe forms configured in the Newsletter2Go UI and to submit them subscribing and unsubscribing exiting recipients.\n\n<div class=\"alert alert-info\">The forms calls are public and don't need authentication. You only need your `form_id` from the Newsletter2Go UI.</div> ","auth":{"type":"noauth"},"event":[{"listen":"prerequest","script":{"id":"04419517-f797-4cdd-972a-00718ea9db34","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8a5a088f-b643-4eee-a532-779f5dcac7c5","type":"text/javascript","exec":[""]}}],"_postman_id":"22cf6ae6-ae22-4cc6-8160-cded15a94fbb"},{"name":"Company","item":[{"name":"Get Company Information","id":"d9b2e7cc-1145-4b04-be6f-ee1e88000646","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/companies"},"response":[{"id":"34c723d3-8e6b-4bb2-957a-e5470e071e6d","name":"Get Company Information","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/companies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:21:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"195.201.175.60:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/companies?_limit=50&_offset=0\"\n        },\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"id\": \"3kf9rpeb\",\n            \"modified_at\": \"2018-08-15T14:13:03+0000\",\n            \"created_at\": \"2016-04-06T11:27:31+0000\",\n            \"phone\": \"+491781843201\",\n            \"is_migrated\": false,\n            \"is_migrated_plan\": true,\n            \"priority_sending\": 0.66,\n            \"agb_accepted_at\": \"2016-10-16T12:33:13+0000\",\n            \"is_gdpr_compliant\": true,\n            \"name\": \"My Company Name\",\n            \"address\": \"asddfasdf 1\",\n            \"city\": \"Berlin\",\n            \"postcode\": \"10787\",\n            \"country\": \"DE\",\n            \"bill_name\": \"My Company Name\",\n            \"bill_first_name\": \"as\",\n            \"bill_last_name\": \"asf\",\n            \"bill_gender\": \"m\",\n            \"bill_address\": \"asddfasdf 1\",\n            \"bill_city\": \"Berlin\",\n            \"bill_postcode\": \"10787\",\n            \"bill_country\": \"DE\",\n            \"bill_email\": \"s@newsletter2go.com\",\n            \"default_list_id\": \"om355owj\",\n            \"register_tld\": \"de\",\n            \"language\": \"de\",\n            \"credits_email\": 0,\n            \"credits_freemail\": 0,\n            \"credits_abo\": 989,\n            \"uses_postpaid\": false,\n            \"state\": \"verified\",\n            \"mfa_status\": \"INACTIVE\",\n            \"mfa_method\": \"SMS\",\n            \"ekomi_done\": 0,\n            \"uses_client_testing\": true,\n            \"uses_payback\": true,\n            \"industry_id\": \"fyc983tf\",\n            \"frequency\": \"daily\",\n            \"num_recipients\": \"<1000\",\n            \"ip_class\": 0,\n            \"doubleoptout\": false,\n            \"database\": 103,\n            \"editor_version\": \"2.0\",\n            \"is_archive_active\": false,\n            \"is_archive_autoupdate\": false,\n            \"is_opentracking_allowed\": false,\n            \"is_clicktracking_allowed\": false,\n            \"is_recipienttracking_allowed\": false,\n            \"is_whitelisted\": false,\n            \"timezone\": \"Europe\\/Berlin\",\n            \"dateformat\": \"d.m.Y\",\n            \"timeformat\": \"H:i:s\",\n            \"datetimeformat\": \"d.m.Y H:i:s\",\n            \"number_format\": \".,2\",\n            \"version\": 151,\n            \"allow_support_access\": true,\n            \"lead_rating\": \"average\",\n            \"is_deleted\": false\n        }\n    ]\n}"}],"_postman_id":"d9b2e7cc-1145-4b04-be6f-ee1e88000646"},{"name":"Update Company Information","id":"f3a08c89-5f52-4b24-864f-dd86dc6e71aa","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"My Updated Company Name\"\r\n}"},"url":"https://api.newsletter2go.com/companies/{{company_id}}"},"response":[{"id":"9f286acc-e072-40a1-bd37-995b66ac910a","name":"Update Company Information","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"My Updated Company Name\"\r\n}"},"url":"https://api.newsletter2go.com/companies/{{company_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:22:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.5.6:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"f3a08c89-5f52-4b24-864f-dd86dc6e71aa"}],"id":"193e9341-33d4-45aa-9cb3-e933d1a52c4c","description":"| Parameter | Type      | Description |\r\n|-----------|-----------|-----------|\r\n| `id` | `string`<br>8-digit alphanumeric | The `id` of your company account |\r\n| `modified_at` | `date`<br>ISO-8601 format | Last date the company data was modified |\r\n| `created_at` | `date`<br>ISO-8601 format | The date your company account was created |\r\n| `phone` | `string` | The company phone number |\r\n| `agb_accepted_at` | `date`<br>ISO-8601 format | The date your company accepted the general terms and conditions |\r\n| `name` | `string` | The company name |\r\n| `address` | `string` | The company address |\r\n| `city` | `string` | The company city |\r\n| `postcode` | `string` | The company postcode |\r\n| `country` | `string`<br>ISO 3166-1 alpha-2 format | 2-digit country code of your company |\r\n| `bill_name` | `string` | The company name on your invoices |\r\n| `bill_first_name` | `string` | The first name on your invoices |\r\n| `bill_last_name` | `string` | The last name on your invoices |\r\n| `bill_gender` | `enum`<br>m, f | Gender of the person on your invoice |\r\n| `bill_address` | `string` | The company address on your invoices |\r\n| `bill_city` | `string` | The company city on your invoices |\r\n| `bill_postcode` | `string` | The company postcode on your invoices |\r\n| `bill_country` | `string`<br>ISO 3166-1 alpha-2 format | The company country on your invoices |\r\n| `bill_email` | `string`<br>RFC822 compliant email address | The email address invoices will be sent to |\r\n| `default_list_id` | `string`<br>8-digit alphanumeric | The `id` of your default list |\r\n| `credits_email` | `number`<br>non-negative integer | The amount of prepaid emails in your account |\r\n| `credits_freemail` | `number`<br>non-negative integer | The amount of free emails in your account |\r\n| `credits_abo` | `number`<br>non-negative integer | The amount of subscription emails in your account |\r\n| `state` | `enum`<br>verified, pending, declined | Whether your account has been verified for sending |\r\n| `uses_client_testing` | `boolean` | Whether the client testing is active |\r\n| `uses_payback` | `boolean` | Whether the credit payback feature is active |\r\n| `industry_id` | \"fyc983tf\" | |\r\n| `frequency` | `enum`<br>daily, weekly, monthly, quartely, sporadic | The dispatch frequency of the company |\r\n| `num_recipients` | `enum`<br><1000, 1000_5000, 5000_10000, 10000_25000, 25000_50000, >50000  | The number of recipients of the company |\r\n| `is_opentracking_allowed` | `boolean` | Whether open tracking is allowed |\r\n| `is_clicktracking_allowed` | `boolean` | Whether click / link tracking is allowed |\r\n| `is_recipienttracking_allowed` | `boolean` | Whether recipient based tracking is allowed |\r\n| `allow_support_access` | `boolean` | Whether the customer support may access your account |\r\n","event":[{"listen":"prerequest","script":{"id":"7671a527-da6c-4f49-ac74-f99f4e7db7bf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e573523f-9735-43f5-96c5-d4fb9846c298","type":"text/javascript","exec":[""]}}],"_postman_id":"193e9341-33d4-45aa-9cb3-e933d1a52c4c"},{"name":"Users","item":[{"name":"Get all Users","id":"d0c4c31f-eeca-438d-8ba1-b6a652a0fd42","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/users"},"response":[{"id":"0e6222b5-a2bd-478b-b9ab-7ee34da412a4","name":"Get all Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:22:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.134.120:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"links\": {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/users?_limit=50&_offset=0\"\n        },\n        \"count\": 3\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/users\\/cg2bf5ub\",\n            \"id\": \"cg2bf5ub\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/users\\/91orq3br\",\n            \"id\": \"91orq3br\"\n        },\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/users\\/wq24nkdz\",\n            \"id\": \"wq24nkdz\"\n        }\n    ]\n}"}],"_postman_id":"d0c4c31f-eeca-438d-8ba1-b6a652a0fd42"},{"name":"Get User Details","id":"898b1b3e-071c-4391-95ba-fb4c0f5c09b7","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/users/{{user_id}}"},"response":[{"id":"ffc0341e-e824-4346-9665-d60d56c10228","name":"Get User Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.newsletter2go.com/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:23:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"138.201.29.81:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": [\n        {\n            \"_href\": \"https:\\/\\/api.newsletter2go.com\\/users\\/cg2bf5ub\",\n            \"id\": \"cg2bf5ub\",\n            \"account_id\": \"awtfn5jn\",\n            \"company_id\": \"3kf9rpeb\",\n            \"is_developer_mode\": false,\n            \"email\": \"s@newsletter2go.com\",\n            \"modified_at\": \"2018-08-15T14:12:21+0000\",\n            \"created_at\": \"2016-04-06T11:27:31+0000\",\n            \"logged_in_at\": \"2018-08-15T14:12:21+0000\",\n            \"gender\": \"m\",\n            \"first_name\": \"asd\",\n            \"last_name\": \"asf\",\n            \"activated_at\": \"2017-01-17T16:34:41+0000\",\n            \"is_active\": true,\n            \"is_disabled\": false,\n            \"phone\": \"+491781843201\",\n            \"agb_accepted_at\": \"2016-10-16T12:33:13+0000\",\n            \"name\": \"My Updated Company Name\",\n            \"bill_name\": \"My Updated Company Name\",\n            \"address\": \"asddfasdf 1\",\n            \"city\": \"Berlin\",\n            \"postcode\": \"10787\",\n            \"country\": \"DE\",\n            \"bill_first_name\": \"as\",\n            \"bill_last_name\": \"asf\",\n            \"bill_gender\": \"m\",\n            \"bill_address\": \"asddfasdf 1\",\n            \"bill_city\": \"Berlin\",\n            \"bill_postcode\": \"10787\",\n            \"bill_country\": \"DE\",\n            \"bill_email\": \"s@newsletter2go.com\",\n            \"default_list_id\": \"om355owj\",\n            \"register_tld\": \"de\",\n            \"language\": \"de_DE\",\n            \"credits_email\": 0,\n            \"credits_freemail\": 0,\n            \"credits_abo\": 989,\n            \"password_reset_code\": \"12b4c972f409195ab808360d2188224a\",\n            \"password_reset_timestamp\": \"2018-06-20T10:20:56+0000\",\n            \"uses_postpaid\": false,\n            \"state\": \"pending\",\n            \"mfa_status\": \"INACTIVE\",\n            \"mfa_method\": \"SMS\",\n            \"ekomi_done\": 0,\n            \"uses_client_testing\": true,\n            \"industry_id\": \"fyc983tf\",\n            \"frequency\": \"daily\",\n            \"num_recipients\": \"<1000\",\n            \"ip_class\": 0,\n            \"doubleoptout\": false,\n            \"database\": 103,\n            \"editor_version\": \"2.0\",\n            \"is_archive_active\": false,\n            \"is_archive_autoupdate\": false,\n            \"is_opentracking_allowed\": false,\n            \"is_clicktracking_allowed\": false,\n            \"is_recipienttracking_allowed\": false,\n            \"is_whitelisted\": false,\n            \"timezone\": \"Europe\\/Berlin\",\n            \"dateformat\": \"d.m.Y\",\n            \"timeformat\": \"H:i:s\",\n            \"datetimeformat\": \"d.m.Y H:i:s\",\n            \"number_format\": \".,2\",\n            \"profile_image_url\": \"\\/\\/files.newsletter2go.com\\/jcnmuslf\\/s_3kf9rpeb\\/cg2bf5ub\\/profile.png?5b16868483d32\",\n            \"is_main\": true,\n            \"allow_support_access\": true,\n            \"priority_sending\": 0.66,\n            \"has_late_invoice\": false,\n            \"current_plan_name\": \"Pro\",\n            \"current_plan_volume\": 1000\n        }\n    ]\n}"}],"_postman_id":"898b1b3e-071c-4391-95ba-fb4c0f5c09b7"},{"name":"Update User Details","id":"34405c3b-57dc-4a28-9f4d-b9aa6f722cfd","request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":"{\n\t\"language\": \"en_US\"\n}"},"url":"https://api.newsletter2go.com/users/{{user_id}}"},"response":[{"id":"afdf256a-ebb0-4f23-92ef-2a9988cbf29c","name":"Update User Details","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"language\": \"en_US\"\n}"},"url":"https://api.newsletter2go.com/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:23:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"94.130.53.59:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"34405c3b-57dc-4a28-9f4d-b9aa6f722cfd"},{"name":"Delete User","id":"289f5a54-e3be-46b7-80c0-24402f8fa2a3","request":{"auth":{"type":"noauth"},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}} "}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/users/{{user_id}}"},"response":[{"id":"642e2164-81dd-4439-9690-cd92484f6cff","name":"Delete User","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}} ","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.newsletter2go.com/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"authorization, Content-Type, x-from","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS,TRACE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:24:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Fpm","value":"default","name":"X-Fpm","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Upstream","value":"88.99.90.166:8200","name":"X-Upstream","description":"Custom header"},{"key":"X-XSS-Protection","value":"1","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"expires","value":"-1","name":"expires","description":"Gives the date/time after which the response is considered stale"},{"key":"pragma","value":"no-cache","name":"pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"info\": {\n        \"count\": 1\n    },\n    \"value\": []\n}"}],"_postman_id":"289f5a54-e3be-46b7-80c0-24402f8fa2a3"}],"id":"e04bad9d-f7f1-43ab-8547-81b242686060","auth":{"type":"noauth"},"event":[{"listen":"prerequest","script":{"id":"4b525ceb-cd65-4aef-94c5-b8e821d6f007","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"991733f2-d70e-46eb-9552-edb22a6ca8a8","type":"text/javascript","exec":[""]}}],"_postman_id":"e04bad9d-f7f1-43ab-8547-81b242686060"},{"name":"Files","item":[{"name":"Create File","event":[{"listen":"test","script":{"id":"e0220539-ed0e-400c-a145-c69009b7ea29","type":"text/javascript","exec":["var data = JSON.parse(responseBody);","pm.environment.set(\"file_id\", data.value[0].id);"]}}],"id":"f5bb7b57-6dd2-4e5d-aafa-7c16dafa9c09","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"fileBase64\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAV4AAACWBAMAAABkyf1EAAAAG1BMVEXMzMyWlpbFxcWqqqqcnJyxsbG3t7e+vr6jo6OVuynYAAAACXBIWXMAAA7EAAAOxAGVKw4bAAADG0lEQVR4nO2YzW/aQBDFF2PjHBkwCUfTSOEKUaRecRpFPeKqX0eo1KZHnFx6xFWV/tud2V3DsiJEPdi+vN/BC/aL9mV2PDuLUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgP/jMkuueYhIWPCn4CZ5+4I2Jj3kIk1OS+tC+1wq1d35LXhcvSTWw7zye0JaF2uZe6TUWeU3lvH8uDg0fkvr95S0LrLk8SqjVIXjH8xGPP2dlkl6VJwbv9kzSx9OS2uiR1uZd6k6VZzWiQR7eUQb/CLjt8qBl6W10aWNrOtWTS7snZI/BDqRfTIyfgP5m9PS2tAZKXMWA3uH+uJkcERL1m/M6fOKtDY6uixxfNd9cyOmGV9zkx0TWflIUkb4c5dpvz06Im2I3oOdOF+YG5FOzmJovyzE9KZSm/oQJUekTXLGE8+3X5NnZRNaTcb6QZBxpZvvDRm/3XFUvl950gaZljxlecfZeSvexUTHhnBNaUD7BDV+zxJ+87iMHUobg3er3+blNyZSx0RIM7dgGb+h3lpuPWmTfq/l5f8wnXMeGxPh7pUaFI4fc7tDozdPNPSkTfrluMqq9/hShdA+LIel8/5XflOdKZ60MTiuC/VJcrEc+UGbkLsf2PrwRel9raX4yqrbGBZjPym5bdvshY433hNbyl8mtyWL5/Ze+oDccuXGkhYt1Qel41r58Ypqj9z+y/Wb9duovx/v5bovX/6mFZLbfx36bWN/W4/kOhn3Pusx0b2a0xTkibNdWL/fV0r3SJ60EUx0iqF5d+TbQdMV0EXpxM/41Q+l52ijP9M+y3OztlJrD5raLs2cdsf61RGVnqOF/rcr6RnRIJZlj+RycGiYUNqt2smd30L+x5wvLZwvYho+XpU8Z5Z8i+cytz6UVR05J0PgnCirHe0+fZIz6oG0IfTZfGyO5rrWuodeHfV8X2BDe74Qtu2cj/U5fiaF1ozmhL+q/M0kJ3YrbuuZKIaetDF+ZuY3mks7uj/arGWxo31Fs36DG3q38aQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4FX+AcL6c1W3I+QxAAAAAElFTkSuQmCC\",\n\t\"display_name\":\"image_name.png\",\n\t\"folder_id\":null\n}"},"url":"https://api.newsletter2go.com/files","description":"Upload a file which is [base64 encoded](https://www.base64encode.net/). \nIt is possible to pass a `folder_id` to put the file into a specific folder during upload."},"response":[],"_postman_id":"f5bb7b57-6dd2-4e5d-aafa-7c16dafa9c09"},{"name":"Get File","event":[{"listen":"test","script":{"id":"da776b83-5889-4686-bde9-a495da30d9cd","type":"text/javascript","exec":["var data = JSON.parse(responseBody);","pm.environment.set(\"file_name\", data.value[0].filename);","pm.environment.set(\"file_url\", data.value[0].path + data.value[0].filename);"]}}],"id":"d543b532-8425-48cc-a101-e8475e249699","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://api.newsletter2go.com/files/{{file_id}}","description":"Gets a file. Make clear to provide a `file_id`."},"response":[],"_postman_id":"d543b532-8425-48cc-a101-e8475e249699"},{"name":"Get All Files","id":"e79ebdd9-c2f2-43c2-820d-4239c5657910","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://api.newsletter2go.com/files","description":"Get a list of all files."},"response":[],"_postman_id":"e79ebdd9-c2f2-43c2-820d-4239c5657910"}],"id":"9a2453f5-5e60-4106-8624-f75154c7ee85","_postman_id":"9a2453f5-5e60-4106-8624-f75154c7ee85"}],"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"event":[{"listen":"prerequest","script":{"id":"a0942a54-9006-4777-8628-fc2ebc058511","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cad7a2d4-ee41-4a20-8ff6-10c3b80b8c8b","type":"text/javascript","exec":[""]}}]}