{"info":{"_postman_id":"10823ace-27fe-4b15-ae3d-cd2380aac915","name":"Alerti public API","description":"<html><head></head><body><p>The Alerti public API allows you to programmatically access data stored in your Alerti account with ease.</p>\n<p>The easiest way to get started with the API is to click the Run in Postman button present at the top of the documentation page and use the Postman App to send requests.</p>\n<h1 id=\"overview\">Overview</h1>\n<ol>\n<li>Response to every request is sent in JSON format.</li>\n<li>API has an access rate limit applied to it</li>\n<li>In case the API request results in an error, it is represented by an \"error\": {} key in the JSON response. More information about the error codes and their explaination below.</li>\n<li>The API calls will respond with appropriate HTTP status codes for all requests. A 200 OK indicates all went well, while 4XX or 5XX response codes indicate an error from the requesting client or our API servers respectively.</li>\n<li>The Alerti API will only respond to secured communication done over HTTPS. HTTP requests will be sent a 301 redirect to corresponding HTTPS resources.</li>\n<li>The Alerti public API is available at the url <code>https://publicapi.alerti.com</code></li>\n</ol>\n<h1 id=\"authentication\">Authentication</h1>\n<p>An API Token is required to be sent as part of every request to the Alerti API, in the form of the header parameter <code>X-Auth-Token</code>.</p>\n<p>To get a user token you need to be on a business or enterprise paid plan. To get the API Key go to the alerti app, account &gt; settings &gt; Api key. </p>\n<p>This token should not be shared with others, it is personal. Your user token will not expire while you are on a premium plan, but you can revoke it and regenerate a new one via the interface. If a token is expired or invalid, you will receive a <code>A0002</code> error. </p>\n<h1 id=\"versioning\">Versioning</h1>\n<p>The API is accessed by making HTTP requests to a specific version endpoint URL. Everything (methods, parameters, etc.) is fixed to a version number, and every call must contain one. In the future, different Versions could be available at different endpoint URLs. The latest version is Version 1.</p>\n<p>The stable HTTP endpoint for the latest version is: <code>https://publicapi.alerti.com/v1/</code></p>\n<h1 id=\"rate-limits\">Rate Limits</h1>\n<p>The api is rate limited to avoid misuse of the api and alerti server resources. \nRate limits are divided into 15 minute intervals. All endpoints require authentication, so there is no concept of unauthenticated calls and rate limits. Requests are limited to 180 calls every 15 minutes.</p>\n<p>In the case where you reached the limit, the api will send you a <code>429</code> http status code with a response body <code>Throttled</code> and a header with the following information:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP Header</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RateLimit-Limit</td>\n<td>Total credits that can be allocated.</td>\n</tr>\n<tr>\n<td>RateLimit-Remaining</td>\n<td>Total credits available.</td>\n</tr>\n<tr>\n<td>RateLimit-Reset</td>\n<td>Timestamp (unix epoch) for when the credits will be reset.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"your-first-api-call\">Your first api call</h1>\n<p>If you want to get the list of your alerts, you can run the following javascript code after having replaced the api key from your account</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>var xhr = new XMLHttpRequest();\nxhr.addEventListener(\"readystatechange\", function() {\n  if(this.readyState === 4) {\n    console.log(this.responseText);\n  }\n});\nxhr.open(\"GET\", \"https://publicapi.alerti.com/v1/alerts?page=1\");\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.setRequestHeader(\"X-Auth-Token\", \"&lt;MY_API_KEY_HERE&gt;\");\nxhr.send();\n</code></pre><p>or via curl it would be:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location -g --request GET 'https://publicapi.alerti.com/v1/alerts?page=1' \\\n--header 'X-Auth-Token: {{api_key}}'\n</code></pre><h1 id=\"error-codes\">Error codes</h1>\n<p>You will find here the complete list of error codes sent back by the API in case something went wrong. An error json is described with at least the information below, some errors can have more details specific to your call. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Bad Authentication Parameters\",\n    \"code\": \"A0003\",\n    \"status\": 401,\n    \"trace_id: 'RANDOM'\n  }\n}\n\n</code></pre><p>We give you here more information about each error:</p>\n<h3 id=\"a0000---internal-server-error\">A0000 - Internal Server Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Internal Server Error\",\n    \"code\": \"A0000\",\n    \"status\": 500\n  }\n}\n</code></pre><p>Well... Something has gone particularly wrong, this is our fault, we should have handled this case better. Do not hesitate to drop us an email and we will look into it.</p>\n<h3 id=\"a0001---params-validation-error\">A0001 - Params Validation Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Params Validation Error\",\n    \"code\": \"A0001\",\n    \"status\": 400,\n    \"detail\": \"login is missing\"\n  }\n}\n</code></pre><p>We could not validate the parameters you sent, a detailed message will be sent for more explanation.</p>\n<h3 id=\"a0002---unauthorized-invalid-or-expired-token\">A0002 - Unauthorized. Invalid or expired token</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Unauthorized. Invalid or expired token\",\n    \"code\": \"A0002\",\n    \"status\": 401\n  }\n}\n</code></pre><p>Be sure to pass the correct token parameter that you will find in your alerti app (see \"Authentication\" documentation section</p>\n<h3 id=\"a0003---bad-authentication-parameters\">A0003 - Bad Authentication Parameters</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Bad Authentication Parameters\",\n    \"code\": \"A0003\",\n    \"status\": 401\n  }\n}\n</code></pre><p>You did not provide the right credential to login.</p>\n<h3 id=\"a0004---params-not-exist-error\">A0004 - Params Not Exist Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Params Not Exist Error\",\n    \"code\": \"A0004\",\n    \"status\": 422,\n    \"detail\": \"entry 36104 does not exist\"\n  }\n}\n</code></pre><p>We didn't find a corresponding object in the database or you cannot access it.</p>\n<h3 id=\"a0005---permission-denied\">A0005 - Permission Denied</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Permission Denied\",\n    \"code\": \"A0005\",\n    \"status\": 403,\n    \"detail\": \"You cannot update this alert\"\n  }\n}\n</code></pre><p>You are doing something you are not authorized to do. This resource is not yours.</p>\n<h3 id=\"a0006---invalid-object-error\">A0006 - Invalid Object Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Invalid Object Error\",\n    \"code\": \"A0006\",\n    \"status\": 422,\n  }\n}\n</code></pre><p>You are trying to save an object but the validation did not pass. further detail will be displayed on the error json.</p>\n<h3 id=\"a0007---timeout-error\">A0007 - Timeout Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Timeout Error\",\n    \"code\": \"A0007\",\n    \"status\": 500,\n  }\n}\n</code></pre><p>The request took too long to proceed. Please contact the support team for more help.</p>\n<h3 id=\"a0008---need-alerts-first\">A0008 - Need Alerts First</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Need Alerts First\",\n    \"code\": \"A0009\",\n    \"status\": 404,\n    \"detail\": \"No alerts created. Please create an alert first.\"\n  }\n}\n</code></pre><p>You are performing an action but you have no alerts to perform this action on. Create your first alert !</p>\n<h3 id=\"a0009---account-upgrade-needed\">A0009 - Account Upgrade Needed</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Account Upgrade Needed\",\n    \"code\": \"A0009\",\n    \"status\": 403,\n    \"detail\": \"You are not a premium user.\"\n  }\n}\n</code></pre><p>You will need to upgrade to another plan to be able to perform this action.</p>\n<h3 id=\"a0016---action-already-done\">A0016 - Action Already Done</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Action Already Done\",\n    \"code\": \"A0016\",\n    \"status\": 403,\n    \"detail\": \"This invitation has already been accepted\"\n  }\n}\n</code></pre><p>We could not find the user with the information given.</p>\n<h3 id=\"a0018---email-already-taken\">A0018 - Email Already Taken</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Email Already Taken\",\n    \"code\": \"A0018\",\n    \"status\": 403,\n    \"detail\": \"This email has already been taken by another user. Please choose a different email address.\"\n}\n</code></pre><h3 id=\"a0019---cannot-delete-error\">A0019 - Cannot Delete Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Cannot Delete Error\",\n    \"code\": \"A0019\",\n    \"status\": 500\n}\n</code></pre><p>We didn't manage to delete the resource, This resource is yours but we had a problem, please contact the support team.</p>\n<h3 id=\"a0020---cannot-update-error\">A0020 - Cannot Update Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Cannot Update Error\",\n    \"code\": \"A0020\",\n    \"status\": ,\n    \"detail\": \"Error while updating your account\"\n}\n</code></pre><p>We didn't manage to update the resource, This resource is yours but we had a problem, please contact the support team.</p>\n<h3 id=\"a0023---tags-export-error\">A0023 - Tags Export Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Export Error\",\n    \"code\": \"A0023\",\n    \"status\": 422,\n    \"detail\": \"Alert with id 1 does not have any tags\"\n}\n</code></pre><h3 id=\"a0024---alert-not-active-error\">A0024 - Alert Not Active Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Alert Not Active Error\",\n    \"code\": \"A0024\",\n    \"status\": 403\n}\n</code></pre><p>You alert has been deactivated or deleted in the last 30 days, manually or automatically. This alert stays in our database during 30 days before being completely deleted. Be aware that a plan downgrade can deactivate some of your alerts.</p>\n<h3 id=\"a0026---cursor-based-pagination-not-supported\">A0026 - Cursor Based Pagination Not Supported</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Cursor Based Pagination Not Supported\",\n    \"code\": \"A0026\",\n    \"status\": 422,\n    \"detail\": \"you can only use cursor when sorting by date\" \n}\n</code></pre><h3 id=\"f1001---facebook-fan-page-not-found\">F1001 - Facebook Fan Page Not Found</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Facebook Fan Page Not Found\",\n    \"code\": \"F1001\",\n    \"status\": 400,\n}\n</code></pre><p>Check that the fan page you are requesting exists in your account.</p>\n<h3 id=\"f1003---facebook-statistics-never-processed\">F1003 - Facebook Statistics Never Processed</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Facebook Statistics Never Processed\",\n    \"code\": \"F1003\",\n    \"status\": 400,\n    \"detail\": \"No statistics are available yet, we are currently processing them. Please check back in a little bit\"\n}\n</code></pre><h3 id=\"f1004---facebook-dashboard-needs-admin-account\">F1004 - Facebook Dashboard Needs Admin Account</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Facebook Dashboard Needs Admin Account\",\n    \"code\": \"F1004\",\n    \"status\": 403,\n    \"detail\": \"\"\n}\n</code></pre><p>In order to access facebook stats dashboard data, you need to administer the fan page.</p>\n<h3 id=\"f1005---facebook-dashboard-unavailable\">F1005 - Facebook Dashboard Unavailable</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Facebook Dashboard Unavailable\",\n    \"code\": \"F1005\",\n    \"status\": 400,\n}\n</code></pre><p>Dashboard data are unavailable. This is usually the case when you period filter is not correct. </p>\n<h3 id=\"f1006---facebook-max-fans-count-reached\">F1006 - Facebook Max Fans Count Reached</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Facebook Max Fans Count Reached\",\n    \"code\": \"F1006\",\n    \"status\": 403,\n}\n</code></pre><p>You are trying to create/update an alert by adding a facebook fan page that has too many fans. You are allowed only a certain limit of fans across all your fans pages. Contact the support team for any help.</p>\n<h3 id=\"f1007---invalid-facebook-page-error\">F1007 - Invalid Facebook Page Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Invalid Facebook Page Error\",\n    \"code\": \"F1007\",\n    \"status\": 422,\n}\n</code></pre><p>You probably added invalid facebook fan page urls.</p>\n<h3 id=\"f1009---insufficient-permissions-facebook-error\">F1009 - Insufficient permissions Facebook Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Insufficient permissions Facebook Error\",\n    \"code\": \"F1009\",\n    \"status\": 403,\n}\n</code></pre><p>You are trying to perform an action but you don't have the sufficient permissions on facebook or you are not the admin of the fan page.</p>\n<h3 id=\"f1013---facebook-action-error\">F1013 - Facebook Action Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Facebook Action Error\",\n    \"code\": \"F1013\",\n    \"status\": 422\n}\n</code></pre><p>Usually an error with the Facebook API, please check the facebook api status page or contact the alerti support team to find help.</p>\n<h3 id=\"t0002---no-stats-data-for-period\">T0002 - No Stats Data For Period</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"No Stats Data For Period\",\n    \"code\": \"T0002\",\n    \"status\": 422,\n    \"detail\": \"'We can not yet provide you with data for this period'\"\n}\n</code></pre><p>You are trying to access twitter statistics data for a period where we do not have data. </p>\n<h3 id=\"t0003---no-twitter-users-for-alert\">T0003 - No Twitter Users For Alert</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"No Twitter Users For Alert\",\n    \"code\": \"T0003\",\n    \"status\": 422\n}\n</code></pre><p>We cannot find any Twitter user for the alert given.</p>\n<h3 id=\"t0005---invalid-or-expired-twitter-account\">T0005 - Invalid or expired Twitter Account</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Invalid or expired Twitter Account\",\n    \"code\": \"T0005\",\n    \"status\": 401\n}\n</code></pre><p>You need to edit the parameters of your alert and link your twitter account to your alert to be able to do that. If this is already done, your twitter token has been expired, and you need to update your twitter account.</p>\n<h3 id=\"t0006---direct-messages-impossible\">T0006 - Direct Messages Impossible</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Direct Messages Impossible\",\n    \"code\": \"T0006\",\n    \"status\": 401\n}\n</code></pre><p>The DM has failed because either you don't follow the Twitter user or the Twitter user does not follow your twitter account.</p>\n<h3 id=\"t0007---no-tweets-for-alert\">T0007 - No Tweets For Alert</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"No Tweets For Alert\",\n    \"code\": \"T0007\",\n    \"status\": 401\n}\n</code></pre><p>You are trying to access alert twitter statistics but the alert does not have any tweets.</p>\n<h3 id=\"t0008---insufficient-permissions-twitter-error\">T0008 - Insufficient permissions Twitter Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Insufficient permissions Twitter Error\",\n    \"code\": \"T0008\",\n    \"status\": 422\n}\n</code></pre><p>To be able to make a specific twitter action from your Alerti account you need to give to alerti write acess to your twitter account.</p>\n<h3 id=\"t0010---like-tweet-impossible\">T0010 - Like Tweet Impossible</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Like Tweet Impossible\",\n    \"code\": \"T0010\",\n    \"status\": 422\n}\n</code></pre><p>You can not like Tweets of protected users you aren't following.</p>\n<h3 id=\"i0001---instagram-business-account-not-found\">I0001 - Instagram Business Account Not Found</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Instagram Business Account Not Found\",\n    \"code\": \"I0001\",\n    \"status\": 400,\n}\n</code></pre><p>Check that the instagram account exists, it is valid and not deleted.</p>\n<h3 id=\"i0002---instagram-statistics-never-processed\">I0002 - Instagram Statistics Never Processed</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Instagram Statistics Never Processed\",\n    \"code\": \"I0002\",\n    \"status\": 400\n}\n</code></pre><p>No statistics are available yet, we are currently processing them. Please check back in a little bit</p>\n<h3 id=\"i0003---instagram-dashboard-unavailable\">I0003 - Instagram Dashboard Unavailable</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Instagram Dashboard Unavailable\",\n    \"code\": \"I0003\",\n    \"status\": 403,\n    \"detail\": \"\"\n}\n</code></pre><p>Dashboard data are unavailable. This is usually the case when you period filter is not correct. </p>\n<h3 id=\"i0004---insufficient-permissions-instagram-error\">I0004 - Insufficient permissions Instagram Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Insufficient permissions Instagram Error\",\n    \"code\": \"I0004\",\n    \"status\": 403,\n}\n</code></pre><p>The facebook account linked to instagram is deleted on alerti or not valid anymore, or it does not have the required permissions to manage instagram pages.</p>\n<h3 id=\"i0005---instagram-action-error\">I0005 - Instagram Action Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"error\": {\n    \"title\": \"Instagram Action Error\",\n    \"code\": \"I0005\",\n    \"status\": 422,\n}\n</code></pre><p>An error occured in the instagram api. Please contact support if you need any more help.</p>\n<h1 id=\"support\">Support</h1>\n<p>If you need help regarding the API, feel free to contact us via email at <a href=\"mailto:support@alerti.com\">support@alerti.com</a></p>\n<h1 id=\"terms-of-use\">Terms of Use</h1>\n<p>For information on API terms of use and privacy, refer to our policy document at <a href=\"https://en.alerti.com/terms#cgu\">https://en.alerti.com/terms#cgu</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Versioning","slug":"versioning"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"Your first api call","slug":"your-first-api-call"},{"content":"Error codes","slug":"error-codes"},{"content":"Support","slug":"support"},{"content":"Terms of Use","slug":"terms-of-use"}],"owner":"331772","collectionId":"10823ace-27fe-4b15-ae3d-cd2380aac915","publishedId":"SzRyyUZh","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-03-04T15:25:49.000Z"},"item":[{"name":"Alerts","item":[{"name":"Metrics","item":[{"name":"Get alert's entries count","id":"f7dc0f4e-5a12-4198-b36f-d3433329c53a","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/entries_count?from=01-01-2017&to=01-12-2019","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","entries_count"],"host":["{{api_host}}"],"query":[{"key":"from","value":"01-01-2017"},{"key":"to","value":"01-12-2019"}],"variable":[{"id":"3a904b93-4782-4863-88c0-ec28b2a84d91","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"e8889d50-a4d6-493b-a047-1b280d139ad1","name":"Get alert's entries count","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/entries_count?from=01-01-2017&to=01-12-2019","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","entries_count"],"query":[{"key":"from","value":"01-01-2017"},{"key":"to","value":"01-12-2019"}],"variable":[{"key":"alert_id","value":"56569"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"81"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"550f60b278af368140f71d45c705e2a2\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"44302b8e0bcdb6710e29c1e58ca86240"},{"key":"X-Runtime","value":"0.973197"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"metrics\": {\n        \"entries_count\": 464,\n        \"from_date\": \"2017-01-01\",\n        \"to_date\": \"2019-12-01\"\n    }\n}"}],"_postman_id":"f7dc0f4e-5a12-4198-b36f-d3433329c53a"},{"name":"Get alert's positive entries count","id":"05d16ddc-8547-4fe5-8f4a-ecb36a52c23d","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/positive_entries_count","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","positive_entries_count"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"a4e46e95-24d3-4d57-82b1-5558474335fc","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"381104b8-6d1d-4588-81bf-4b398d5563ff","name":"Get alert's positive entries count","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/positive_entries_count","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","positive_entries_count"],"variable":[{"key":"alert_id","value":"56569"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"73"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"16efd38b28e5c7c3a293c1743654e9bf\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"c06f7d617065584b6c6a10e3d7e3a35b"},{"key":"X-Runtime","value":"0.886051"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"metrics\": {\n        \"positive_entries_count\": 20,\n        \"from_date\": null,\n        \"to_date\": null\n    }\n}"},{"id":"45079516-047d-4f01-a058-8c8294712d9c","name":"Get alert's positive entries count","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/positive_entries_count","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","positive_entries_count"],"variable":[{"key":"alert_id","value":"56569"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"73"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"16efd38b28e5c7c3a293c1743654e9bf\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"c06f7d617065584b6c6a10e3d7e3a35b"},{"key":"X-Runtime","value":"0.886051"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"metrics\": {\n        \"positive_entries_count\": 20,\n        \"from_date\": null,\n        \"to_date\": null\n    }\n}"}],"_postman_id":"05d16ddc-8547-4fe5-8f4a-ecb36a52c23d"},{"name":"Get alert's neutral entries count","id":"b4ce664c-5e63-4dd3-aa51-5a54da5af82a","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/neutral_entries_count","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","neutral_entries_count"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"dd526e12-11c6-4ca4-9f79-4a35b4def5b0","type":"string","value":"","key":"alert_id"}]}},"response":[],"_postman_id":"b4ce664c-5e63-4dd3-aa51-5a54da5af82a"},{"name":"Get alert's negative entries count","id":"4dd9a46a-720c-4b46-a755-c0654a312bc8","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/negative_entries_count","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","negative_entries_count"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"e0895cf7-547a-4b26-a5e5-f07d87415fb9","type":"string","value":"","key":"alert_id"}]}},"response":[],"_postman_id":"4dd9a46a-720c-4b46-a755-c0654a312bc8"},{"name":"Get alert's entries statistics","id":"bbe1cb06-b05d-4a9b-ac81-fe12507fd867","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/entries_stats?to=2019-11-11&period=30days","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>period</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>1year</code>, <code>2years</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","entries_stats"],"host":["{{api_host}}"],"query":[{"key":"to","value":"2019-11-11"},{"key":"period","value":"30days"}],"variable":[{"id":"5a944cef-3da5-4b23-90e2-2fc0fb1cd81c","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"a92d3fc8-1d9b-4f04-aa95-aa790bed7e57","name":"Get alert's entries stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/entries_stats?to=2019-11-11&period=30days","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","entries_stats"],"query":[{"key":"to","value":"2019-11-11"},{"key":"period","value":"30days"}],"variable":[{"key":"alert_id","value":"56569"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"190"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"1b73b48fd16398f66a04db054eb4ddf8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"0a22ac3b384a6bdc3353ce07a3eca15b"},{"key":"X-Runtime","value":"1.466823"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"current\": {\n        \"total_entries\": 26,\n        \"positive_entries\": 1,\n        \"neutral_entries\": 22,\n        \"negative_entries\": 3\n    },\n    \"previous\": {\n        \"total_entries\": 43,\n        \"positive_entries\": 3,\n        \"neutral_entries\": 40,\n        \"negative_entries\": 0\n    }\n}"}],"_postman_id":"bbe1cb06-b05d-4a9b-ac81-fe12507fd867"},{"name":"Get alert's all languages","id":"3508ed29-6c5f-4657-9bd7-2189ec1a3608","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/all_languages","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","all_languages"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"757d5e34-e956-424d-8396-5847fd545507","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"381723d5-4227-404e-9288-904d148bdd5a","name":"Get alert's all languages","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/all_languages","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","all_languages"],"variable":[{"key":"alert_id","value":"56569"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"65"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"230d1a489d530d5fb58dabf9166974e6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"32504bb0409d54e7e696cd4e6c044863"},{"key":"X-Runtime","value":"1.304228"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"language_codes\": [\n        \"fr\",\n        \"ro\",\n        \"da\",\n        \"is\",\n        \"cy\",\n        \"cs\",\n        \"la\",\n        \"br\",\n        \"en\"\n    ]\n}"}],"_postman_id":"3508ed29-6c5f-4657-9bd7-2189ec1a3608"},{"name":"Get alert's reviews reputation","id":"a9c3899e-2ed6-4f3f-8081-2397171b4c27","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_reputation?period=30days&to=2019-11-04","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Filter by period</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>1year</code>, <code>2years</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>gsource</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>lang</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>review_filter</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>review_filter_trip_type</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter_country</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>include_history</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_reputation"],"host":["{{api_host}}"],"query":[{"key":"period","value":"30days"},{"key":"to","value":"2019-11-04"}],"variable":[{"id":"08020dec-cec7-479b-91bb-209505d11a06","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"809d1aef-023b-4a3f-9121-9c2fca747a63","name":"Get alert's reviews reputation","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_reputation?period=30days&to=2019-11-04","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_reputation"],"query":[{"key":"period","value":"30days"},{"key":"to","value":"2019-11-04"}],"variable":[{"key":"alert_id","value":"56471"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"293"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"069fe682cb2d79607286c3685165b6c5\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"2a49473cb768bbe5724f74149c5d2be5"},{"key":"X-Runtime","value":"1.083923"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"current\": {\n        \"total_reviews\": 132,\n        \"reputation_score\": 87,\n        \"sentiments_count\": {\n            \"1\": 5,\n            \"5\": 18,\n            \"9\": 109\n        },\n        \"stars_count\": {\n            \"1\": 1,\n            \"2\": 4,\n            \"3\": 18,\n            \"4\": 28,\n            \"5\": 81\n        }\n    },\n    \"previous\": {\n        \"total_reviews\": 140,\n        \"reputation_score\": 83,\n        \"sentiments_count\": {\n            \"1\": 15,\n            \"5\": 19,\n            \"9\": 106\n        },\n        \"stars_count\": {\n            \"1\": 8,\n            \"2\": 7,\n            \"3\": 19,\n            \"4\": 27,\n            \"5\": 79\n        }\n    }\n}"}],"_postman_id":"a9c3899e-2ed6-4f3f-8081-2397171b4c27"},{"name":"Get alert's reviews country statistics","id":"942519e4-4d96-41c8-b61c-9d0f8b2e26cf","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_countries?period=week&to=2019-11-04","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>1year</code>, <code>2years</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>review_filter_trip_type</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>lang</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_countries"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-11-04"}],"variable":[{"id":"67332c07-3f13-4ccb-a51b-197caffdf5e8","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"c4414aca-5bbf-4177-babc-5d8bcdd05bef","name":"Get alert's reviews country stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_countries?period=week&to=2019-11-04","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_countries"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-11-04"}],"variable":[{"key":"alert_id","value":"56595"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"974"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"d39ad8adadaf1aae9a11586e366e3725\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"58893509a754ab473e40332eeb8ab09c"},{"key":"X-Runtime","value":"1.003767"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"current\": {\n        \"US\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"CH\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"DE\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"JP\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        }\n    },\n    \"previous\": {\n        \"GB\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"IT\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"US\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"CZ\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"PR\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"SA\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"RU\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        },\n        \"IL\": {\n            \"negative_count\": 0,\n            \"neutral_count\": 0,\n            \"positive_count\": 1,\n            \"total_count\": 1\n        }\n    }\n}"}],"_postman_id":"942519e4-4d96-41c8-b61c-9d0f8b2e26cf"},{"name":"Get alert's all reviews countries","id":"bd2e2bae-4eff-422c-bed8-54a2610829cb","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/all_reviews_countries","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","all_reviews_countries"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"8be0f81a-2505-4416-b4f2-9d0e01ea44e7","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"cd101857-ffc1-46c5-8269-1abe7dae3a85","name":"Get alert's all reviews countries","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/all_reviews_countries","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","all_reviews_countries"],"variable":[{"key":"alert_id","value":"56595"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"299"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"bafbe42199ac8906ccf368537b32a992\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"31e24791f6f95c66b413e9bdf0a38ba2"},{"key":"X-Runtime","value":"1.402982"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"country_codes\": [\n        \"CN\",\n        \"ES\",\n        \"TR\",\n        \"GB\",\n        \"IT\",\n        \"RU\",\n        \"NL\",\n        \"US\",\n        \"BE\",\n        \"CH\",\n        \"SA\",\n        \"PA\",\n        \"MO\",\n        \"AU\",\n        \"KW\",\n        \"FR\",\n        \"RO\",\n        \"KR\",\n        \"DE\",\n        \"JP\",\n        \"AE\",\n        \"EG\",\n        \"MA\",\n        \"UA\",\n        \"BR\",\n        \"PT\",\n        \"SK\",\n        \"LB\",\n        \"QA\",\n        \"TW\",\n        \"MX\",\n        \"SG\",\n        \"CA\",\n        \"CZ\",\n        \"IR\",\n        \"NG\",\n        \"CI\",\n        \"LU\",\n        \"AR\",\n        \"DK\",\n        \"PF\",\n        \"VE\",\n        \"IL\",\n        \"HU\",\n        \"LY\",\n        \"FI\",\n        \"BG\",\n        \"IE\",\n        \"GT\",\n        \"TH\",\n        \"ZA\",\n        \"PR\",\n        \"NO\",\n        \"EE\",\n        \"HR\",\n        \"GE\"\n    ]\n}"}],"_postman_id":"bd2e2bae-4eff-422c-bed8-54a2610829cb"},{"name":"Get alert's reviews trip type statistics","id":"fcf9be3f-62d2-47e2-9e23-c1c41b7e0b4e","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_trip_types?period=week&to=2019-11-05","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>1year</code>, <code>2years</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>review_filter_country</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>gsource</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>lang</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_trip_types"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-11-05"}],"variable":[{"id":"9d0da015-85c1-45b3-b16c-0fb948f34f5e","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"c9e0dddf-933b-49f1-b39b-4e1922ece7fe","name":"Get alert's reviews trip type stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_trip_types?period=week&to=2019-11-05","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_trip_types"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-11-05"}],"variable":[{"key":"alert_id","value":"56595"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"123"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"d994bc5911dcf1c23babe1e18013558f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"24f9cb2a7014377e2e1233797e203135"},{"key":"X-Runtime","value":"1.010846"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"current\": {\n        \"undefined\": 2,\n        \"couple\": 3,\n        \"family\": 1\n    },\n    \"previous\": {\n        \"undefined\": 6,\n        \"business\": 1,\n        \"couple\": 4,\n        \"family\": 4,\n        \"friends\": 1\n    }\n}"}],"_postman_id":"fcf9be3f-62d2-47e2-9e23-c1c41b7e0b4e"},{"name":"Get alert's reviews languages statistics","id":"da70bc76-4d69-45d7-969a-6873af22b4ac","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_languages?period=week&to=2019-01-11","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>1year</code>, <code>2years</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>review_filter_trip_type</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter_country</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_languages"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-01-11"}],"variable":[{"id":"3694d727-257f-4675-8b53-a428f34f2bcd","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"27b390f2-f243-42ee-970d-f33b6f5ec090","name":"Get alert's reviews languages stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_languages?period=week&to=2019-01-11","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_languages"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-01-11"}],"variable":[{"key":"alert_id","value":"56595"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"121"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"ba0958e6b93010a2819453773a136cd5\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"8725c0844e5f2d2037a0b7c2276205fc"},{"key":"X-Runtime","value":"1.543127"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"lang\": \"de\",\n        \"count\": 1\n    },\n    {\n        \"lang\": \"en\",\n        \"count\": 3\n    },\n    {\n        \"lang\": \"et\",\n        \"count\": 1\n    },\n    {\n        \"lang\": \"fi\",\n        \"count\": 1\n    },\n    {\n        \"lang\": \"ro\",\n        \"count\": 1\n    }\n]"}],"_postman_id":"da70bc76-4d69-45d7-969a-6873af22b4ac"},{"name":"Get alert's reviews sources statistics","id":"9166204e-65d1-44c0-9e3d-ceec0c6fc5f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_sources?period=month&to=2019-01-11","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Filter by period</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>1year</code>, <code>2years</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>gsource</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>lang</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>review_filter</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>review_filter_trip_type</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter_country</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_sources"],"host":["{{api_host}}"],"query":[{"key":"period","value":"month"},{"key":"to","value":"2019-01-11"},{"disabled":true,"description":{"content":"<p>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</p>\n<p>Type: \nString</p>\n<p>Required:\nfalse</p>\n<p>default: \n0</p>\n<p>restricted values: \nstories, blogs, news, comments, updates, gr_videos, gr_images, all_instagram_public, web, social_network, facebook_comments, google_plus, instagram_business, all_instagram, twitter_accounts, reviews, noweb, 0, -updates</p>\n","type":"text/plain"},"key":"gsource","value":""}],"variable":[{"description":{"content":"<p>id of the alert</p>\n","type":"text/plain"},"type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"bbc87651-60d2-40f5-8ec9-a962be3ae2cc","name":"Get alert's reviews sources stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/metrics/reviews_sources?period=month&to=2019-01-11","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","metrics","reviews_sources"],"query":[{"key":"period","value":"month"},{"key":"to","value":"2019-01-11"}],"variable":[{"key":"alert_id","value":"56595"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"33"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"156165e0e1abc1c0cbec62e68c677058\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"f5b5ecea19506ecfbc356946078b37e3"},{"key":"X-Runtime","value":"1.570706"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"source\": \"booking\",\n        \"count\": 11\n    }\n]"}],"_postman_id":"9166204e-65d1-44c0-9e3d-ceec0c6fc5f7"}],"id":"6a49bc69-6d1a-46e6-9c76-2b192515ad9e","_postman_id":"6a49bc69-6d1a-46e6-9c76-2b192515ad9e","description":""},{"name":"List all alerts","id":"0f68062f-8d3e-4398-830b-e2205b2b394b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","type":"text"}],"url":"{{api_host}}/{{api_version}}/alerts?page=1","description":"<p>return list of my all my account alerts</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>start_by</td>\n<td>String</td>\n<td>Search by first letter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>created_by_me</td>\n<td>Boolean</td>\n<td>Alerts created by me</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>shared_by_me</td>\n<td>Boolean</td>\n<td>Alerts shared with collaborators</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>shared_with_me</td>\n<td>Boolean</td>\n<td>Alerts collaborators shared with me</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>includes</td>\n<td>Array</td>\n<td>includes more info in response like twitter accounts or default filters</td>\n<td>optional</td>\n<td><code>twitter_account</code>, <code>default_filter</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>q</td>\n<td>String</td>\n<td>search alert name by first letter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_type</td>\n<td>String</td>\n<td>filter by alert type</td>\n<td>optional</td>\n<td>-</td>\n<td><code>keywords</code>, <code>social</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>monitor_type</td>\n<td>String</td>\n<td>Monitor type</td>\n<td>optional</td>\n<td>-</td>\n<td><code>my_company</code>, <code>competitors</code>, <code>me</code>, <code>products</code>, <code>clients</code>, <code>suppliers</code>, <code>industry</code>, <code>place</code>, <code>event</code>, <code>celebrity</code></td>\n</tr>\n<tr>\n<td>unread_only</td>\n<td>Boolean</td>\n<td>filter alerts to get only alerts with unread results</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p>optional Integer - default: 1 - Page requested</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>optional Integer - default: 10 - restricted values: 1..100 - Items per page </p>\n","type":"text/plain"},"key":"per_page","value":"10"},{"disabled":true,"key":"unread_only","value":"false"}],"variable":[]}},"response":[{"id":"c03b7306-2c10-499e-aff2-45d45b0d6816","name":"List all alerts","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","type":"text"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts?page=1&per_page=1&unread_only=false","host":["{{api_host}}"],"path":["{{api_version}}","alerts"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"1"},{"key":"unread_only","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2095"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"13b9784d9feaab0ef32ef4408fce766b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"4f657fa43ea54340ae7dcee9153159c4"},{"key":"X-Runtime","value":"0.239233"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"per_page\": 1,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 17,\n        \"total_pages\": 17,\n        \"out_of_bounds\": false\n    },\n    \"alerts\": [\n        {\n            \"id\": 55371,\n            \"name\": \"asd\",\n            \"entries_count\": 0,\n            \"sources\": [\n                \"facebook_comments\"\n            ],\n            \"entities_enabled\": false,\n            \"alert_type\": \"social\",\n            \"is_legacy_facebook_alert\": false,\n            \"unread_count\": 0,\n            \"named_entry_filters\": [],\n            \"owned_fan_pages\": [\n                {\n                    \"id\": 3188,\n                    \"name\": \"Court metrage 3\",\n                    \"url\": \"www.facebook.com/790166657786680\",\n                    \"facebook_account_id\": 727,\n                    \"page_id\": \"790166657786680\",\n                    \"fans_count\": 0\n                }\n            ],\n            \"other_fan_pages\": [],\n            \"instagram_business_accounts\": [],\n            \"non_admin_instagram_business_accounts\": [],\n            \"twitter_accounts\": [],\n            \"non_admin_twitter_accounts\": [],\n            \"owner_id\": 37,\n            \"monitor_type\": null,\n            \"last_refresh_at\": \"2017-09-15T10:56:27+02:00\",\n            \"twitter_id\": null,\n            \"created_at\": \"2017-09-15T10:56:27+02:00\",\n            \"exclude_domain_extensions\": [],\n            \"lang\": null,\n            \"alert_query_settings\": [],\n            \"exclude_domains\": [],\n            \"exclude_twittos\": [],\n            \"tags_count\": 0,\n            \"opened_tasks_count\": 0,\n            \"favorited\": false,\n            \"folder_id\": 25,\n            \"position\": 1,\n            \"user_can_interact_with_alert_twittos\": false,\n            \"user_can_interact_with_alert_facebook_comments\": true,\n            \"sharing\": {\n                \"id\": 59434,\n                \"alert_id\": 55371,\n                \"created_by_id\": null,\n                \"manage_qualification\": true,\n                \"manage_todos\": true,\n                \"created_at\": \"2017-09-15T10:56:28+02:00\",\n                \"mail_alert\": \"none\",\n                \"favorited\": false,\n                \"share_status\": \"administrator\",\n                \"folder_id\": 25,\n                \"folder_position\": 1,\n                \"web_desktop_notification_frequency\": \"none\",\n                \"web_mobile_notification_frequency\": \"none\",\n                \"email\": \"lginoux@gmail.com\",\n                \"facebook_share_status\": \"facebook_administrator\",\n                \"instagram_share_status\": \"instagram_administrator\",\n                \"twitter_share_status\": \"twitter_administrator\",\n                \"user\": {\n                    \"id\": 37,\n                    \"first_name\": \"Loic\",\n                    \"last_name\": \"Ginoux\"\n                }\n            },\n            \"owner_name\": \"Loic Ginoux\",\n            \"current_user_is_owner\": true,\n            \"xml_sources\": [],\n            \"default_filter\": {\n                \"filter\": \"unread\",\n                \"period\": \"30days\",\n                \"order\": \"published_at\"\n            },\n            \"current_user_permissions\": {\n                \"update\": true,\n                \"read\": true,\n                \"update_entries\": true,\n                \"destroy_entries\": true,\n                \"destroy\": true,\n                \"interact_on_twitter\": true,\n                \"interact_on_facebook\": true,\n                \"read_sharings\": true,\n                \"create_sharings\": true,\n                \"destroy_non_owner_sharings\": true,\n                \"interact_on_instagram\": true\n            }\n        }\n    ]\n}"}],"_postman_id":"0f68062f-8d3e-4398-830b-e2205b2b394b"},{"name":"Get alert info","id":"da568234-54a5-4128-9f89-b7dd81ceb80b","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>includes</td>\n<td>Array</td>\n<td>includes more info in response like twitter accounts or default filters</td>\n<td>optional</td>\n<td><code>twitter_account</code>, <code>default_filter</code></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"a15178ce-34f6-4021-9ab8-d8ef01602c45","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"78600332-e7d1-4547-bb44-0fecb79e2fca","name":"Get alert info","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/alerts/55371"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1950"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"943cc6ca3b55458451e3f6e269057402\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"4b352f271701df5a526f964962080921"},{"key":"X-Runtime","value":"1.389591"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 55371,\n    \"name\": \"asd\",\n    \"entries_count\": 0,\n    \"sources\": [\n        \"facebook_comments\"\n    ],\n    \"entities_enabled\": false,\n    \"alert_type\": \"social\",\n    \"is_legacy_facebook_alert\": false,\n    \"unread_count\": 0,\n    \"named_entry_filters\": [],\n    \"owned_fan_pages\": [\n        {\n            \"id\": 3188,\n            \"name\": \"Court metrage 3\",\n            \"url\": \"www.facebook.com/790166657786680\",\n            \"facebook_account_id\": 727,\n            \"page_id\": \"790166657786680\",\n            \"fans_count\": 0\n        }\n    ],\n    \"other_fan_pages\": [],\n    \"instagram_business_accounts\": [],\n    \"non_admin_instagram_business_accounts\": [],\n    \"twitter_accounts\": [],\n    \"non_admin_twitter_accounts\": [],\n    \"owner_id\": 37,\n    \"monitor_type\": null,\n    \"last_refresh_at\": \"2017-09-15T10:56:27+02:00\",\n    \"twitter_id\": null,\n    \"created_at\": \"2017-09-15T10:56:27+02:00\",\n    \"exclude_domain_extensions\": [],\n    \"lang\": null,\n    \"alert_query_settings\": [],\n    \"exclude_domains\": [],\n    \"exclude_twittos\": [],\n    \"tags_count\": 0,\n    \"opened_tasks_count\": 0,\n    \"favorited\": false,\n    \"folder_id\": 25,\n    \"position\": 1,\n    \"user_can_interact_with_alert_twittos\": false,\n    \"user_can_interact_with_alert_facebook_comments\": true,\n    \"sharing\": {\n        \"id\": 59434,\n        \"alert_id\": 55371,\n        \"created_by_id\": null,\n        \"manage_qualification\": true,\n        \"manage_todos\": true,\n        \"created_at\": \"2017-09-15T10:56:28+02:00\",\n        \"mail_alert\": \"none\",\n        \"favorited\": false,\n        \"share_status\": \"administrator\",\n        \"folder_id\": 25,\n        \"folder_position\": 1,\n        \"web_desktop_notification_frequency\": \"none\",\n        \"web_mobile_notification_frequency\": \"none\",\n        \"email\": \"lginoux@gmail.com\",\n        \"facebook_share_status\": \"facebook_administrator\",\n        \"instagram_share_status\": \"instagram_administrator\",\n        \"twitter_share_status\": \"twitter_administrator\",\n        \"user\": {\n            \"id\": 37,\n            \"first_name\": \"Loic\",\n            \"last_name\": \"Ginoux\"\n        }\n    },\n    \"owner_name\": \"Loic Ginoux\",\n    \"current_user_is_owner\": true,\n    \"xml_sources\": [],\n    \"default_filter\": {\n        \"filter\": \"unread\",\n        \"period\": \"30days\",\n        \"order\": \"published_at\"\n    },\n    \"current_user_permissions\": {\n        \"update\": true,\n        \"read\": true,\n        \"update_entries\": true,\n        \"destroy_entries\": true,\n        \"destroy\": true,\n        \"interact_on_twitter\": true,\n        \"interact_on_facebook\": true,\n        \"read_sharings\": true,\n        \"create_sharings\": true,\n        \"destroy_non_owner_sharings\": true,\n        \"interact_on_instagram\": true\n    }\n}"}],"_postman_id":"da568234-54a5-4128-9f89-b7dd81ceb80b"},{"name":"Create an alert","id":"c8acd4ae-55c2-42b9-afe4-9293f7a07b5c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"alert\":{\n        \"name\": \"TestAlert FB\",\n        \"alert_type\":\"social\",\n        \"monitor_type\":\"my_company\",\n    \"lang\":\"en\"\n    },\n    \"my_pages\":{\n      \"730\": {\n        \"175329223140\": \"175329223140\"\n      }\n    },\n    \"other_fan_pages\": [\n      \"https://www.facebook.com/manchesterunited/\"\n    ],\n    \"instagram_business_accounts\": {\n      \"730\": [\"17841400177308672\"]\n    },\n    \"sharing\": {\n        \"mail_alert\":\"none\",\n    \"favorited\":null\n    }\n}"},"url":"{{api_host}}/{{api_version}}/alerts","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[name]</td>\n<td>String</td>\n<td>Alert name</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_type]</td>\n<td>String</td>\n<td>Alert type</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>keywords</code>, <code>social</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>alert[monitor_type]</td>\n<td>String</td>\n<td>Monitor type</td>\n<td>optional</td>\n<td>-</td>\n<td><code>my_company</code>, <code>competitors</code>, <code>me</code>, <code>products</code>, <code>clients</code>, <code>suppliers</code>, <code>industry</code>, <code>place</code>, <code>event</code>, <code>celebrity</code></td>\n</tr>\n<tr>\n<td>alert[lang]</td>\n<td>String</td>\n<td>Language</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>alert[exclude_domains]</td>\n<td>Array</td>\n<td>A list of domains to exclude from search, for example yoursite.com to exclude your website and all associated sub-domains</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[exclude_domain_extensions]</td>\n<td>Array</td>\n<td>A list of domain extensions to exclude from search, for example .net to exclude all websites ending by .net</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[exclude_twittos]</td>\n<td>Array</td>\n<td>a list of twitter users to exclude from search, without the @. e.g. alerti and not @alerti)</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[twitter_id]</td>\n<td>String</td>\n<td>To receive advanced Twitter statistics and be able to interact directly from your Alerti account, you can add a Twitter account. You pass here the twitter account's twitter id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings]</td>\n<td>Array</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][id]</td>\n<td>Integer</td>\n<td>the alert query setting id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][keywords]</td>\n<td>Array</td>\n<td>Search results will include all of these keywords, for example \"A, B\" will include A AND B</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][any_keywords]</td>\n<td>Array</td>\n<td>Search results will include at least one of these keywords, for example \"A, B\" will include A OR B</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][exclude_keywords]</td>\n<td>Array</td>\n<td>Search results with these keywords will be excluded, for example \"A, B\" will exclude A AND exclude B</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_blogs]</td>\n<td>Boolean</td>\n<td>retrieve results from source blogs</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_twitter]</td>\n<td>Boolean</td>\n<td>retrieve results from source twitter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_news]</td>\n<td>Boolean</td>\n<td>retrieve results from source news</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_google_forums]</td>\n<td>Boolean</td>\n<td>retrieve results from source google_forums</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_videos]</td>\n<td>Boolean</td>\n<td>retrieve results from source videos</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_images]</td>\n<td>Boolean</td>\n<td>retrieve results from source images</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_bing]</td>\n<td>Boolean</td>\n<td>retrieve results from source bing</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook_comments]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook_comments</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_google_plus]</td>\n<td>Boolean</td>\n<td>retrieve results from source google_plus</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook_public_posts]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook_public_posts</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_business]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_business</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_business_non_admin]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_business_non_admin</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_twitter_admin]</td>\n<td>Boolean</td>\n<td>retrieve results from source twitter_admin</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_twitter_non_admin]</td>\n<td>Boolean</td>\n<td>retrieve results from source twitter_non_admin</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_public]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_public</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_public_videos]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_public_videos</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook_reviews]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook_reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_youtube]</td>\n<td>Boolean</td>\n<td>retrieve results from source youtube</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_vimeo]</td>\n<td>Boolean</td>\n<td>retrieve results from source vimeo</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_dailymotion]</td>\n<td>Boolean</td>\n<td>retrieve results from source dailymotion</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_google_places]</td>\n<td>Boolean</td>\n<td>retrieve results from source google_places</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_opinion_assurances]</td>\n<td>Boolean</td>\n<td>retrieve results from source opinion_assurances</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_trip_advisor]</td>\n<td>Boolean</td>\n<td>retrieve results from source trip_advisor</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_booking]</td>\n<td>Boolean</td>\n<td>retrieve results from source booking</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_expedia]</td>\n<td>Boolean</td>\n<td>retrieve results from source expedia</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_agoda]</td>\n<td>Boolean</td>\n<td>retrieve results from source agoda</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_trustpilot]</td>\n<td>Boolean</td>\n<td>retrieve results from source trustpilot</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>google_my_business_locations</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>my_pages</td>\n<td>Hash</td>\n<td>a hash representing the Facebook fan page you want to monitor that one of your facebook account administer. the Hash form is as follow <code>{:facebook_account_id =&gt; {:fan_page_id =&gt; :fan_page_id}}</code>. For example: <code> \"my_pages\":{\"730\": { \"175329223140\": \"175329223140\"}}</code> means that you want to retrieve the fan page with the facebook id 175329223140, for your Facebook account with the id 730</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>instagram_business_accounts</td>\n<td>Hash</td>\n<td>a hash representing the instagram accounts you want to retrieve in the form `{:facebook_account_id =&gt; [:instragram_account_id]}. For example: <code>\"instagram_business_accounts\": {\"730\": [\"17841400177308672\"]},</code> means that you want to retrieve the instragram account with the id 17841400177308672 that is adminsiter by your Facebook account with the id 730. Important: We need additional permissions to be able to create an alert on your Instagram Business account(s) and provide you with the Instagram insights. Important : to be able to access the data, your Instagram Business account needs to be connected to one of the fan pages you manage with the Facebook account connected to your Alerti account.</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>twitter_accounts</td>\n<td>[String]</td>\n<td>A list of twitter account username (without the @). This will allow us to retrieve info from this account and display twitter statistics</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>other_fan_pages</td>\n<td>[String]</td>\n<td>A list of Facebook fan pages urls that you don't administer and that you want to monitor. ex: <code>[\"https://www.facebook.com/manchesterunited/\"]</code></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>non_admin_twitter_accounts</td>\n<td>[String]</td>\n<td>A list of Twitter account urls that you don't own but want to monitor</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>non_admin_instagram_business_accounts</td>\n<td>[String]</td>\n<td>A list of Instagram account urls that you don't own but want to monitor</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>opinion_assurances_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>trip_advisor_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>booking_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>expedia_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>agoda_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>trustpilot_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>google_places</td>\n<td>[Hash]</td>\n<td>A list of hash containing the following keys for your google place: place_id, name, description.</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources</td>\n<td>Array</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources[id]</td>\n<td>Integer</td>\n<td>Alert xml source id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources[source_url]</td>\n<td>String</td>\n<td>a valid rss feed url from which we will retrieve entries</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources[source]</td>\n<td>Integer</td>\n<td>Source in which we will classify the rss feed results. possible values: {1=&gt;\"blogs\", 2=&gt;\"news\", 10=&gt;\"forums\", 30=&gt;\"videos\", 40=&gt;\"images\", 120=&gt;\"bing\"}</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>10</code>, <code>30</code>, <code>40</code>, <code>120</code></td>\n</tr>\n<tr>\n<td>sharing</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>sharing[mail_alert]</td>\n<td>String</td>\n<td>Email frequency for new results notification</td>\n<td>optional</td>\n<td><code>none</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[push_notification_frequency]</td>\n<td>String</td>\n<td>Mobile push notification for new results notification</td>\n<td>optional</td>\n<td><code>new_articles</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[web_desktop_notification_frequency]</td>\n<td>String</td>\n<td>Desktop push notification for new results notification</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[web_mobile_notification_frequency]</td>\n<td>String</td>\n<td>Android mobile push notification for new results notification. Important : to activate Android mobile notifications you need to log into your Alerti account from the browser of your Android phone.</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[manage_qualification]</td>\n<td>Boolean</td>\n<td>The user is authorized to update and manage qualifications of entries results</td>\n<td>optional</td>\n<td><code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>sharing[manage_todos]</td>\n<td>Boolean</td>\n<td>The user is authorized to manage tasks associated to results</td>\n<td>optional</td>\n<td><code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>sharing[favorited]</td>\n<td>Boolean</td>\n<td>Add the alert to your favorites</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>includes</td>\n<td>Array</td>\n<td>includes more info in response like twitter accounts or default filters</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"8c93d7ff-358c-47f6-ae9c-4dc7048ded4b","name":"Create an alert type fan page","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"alert\":{\n        \"name\": \"TestAlert FB\",\n        \"alert_type\":\"social\",\n        \"monitor_type\":\"my_company\",\n    \"lang\":\"en\"\n    },\n    \"my_pages\":{\n      \"730\": {\n        \"175329223140\": \"175329223140\"\n      }\n    },\n    \"other_fan_pages\": [\n      \"https://www.facebook.com/manchesterunited/\"\n    ],\n    \"instagram_business_accounts\": {\n      \"730\": [\"17841400177308672\"]\n    },\n    \"sharing\": {\n        \"mail_alert\":\"none\",\n    \"favorited\":null\n    }\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/alerts","host":["{{api_host}}"],"path":["{{api_version}}","alerts"],"variable":[{"key":"version","value":""}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e9913d9e-46ca-4b2e-9202-341b9a9a8d62","name":"Create an alert type keyword","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"alert\":{\n        \"name\": \"TestAlert\",\n        \"alert_type\":\"keywords\",\n        \"alert_query_settings\": [{\n          \"any_keywords\": [\"alerti\"]\n        }]\n    },\n    \"alert_retrieving\":{\n        \"retrieve_blogs\":true\n    },\n    \"sharing\": {\n        \"mail_alert\":\"daily\",\n        \"favorited\": true\n    },\n    \"xml_sources\": [{\n      \"source_url\": \"https://www.example.com/rss.xml\",\n      \"source\": 1\n    }]\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/alerts","host":["{{api_host}}"],"path":["{{api_version}}","alerts"],"variable":[{"key":"version","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1974"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"e038c1d1d1d587bd5da8c77c7216de54\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"e4ce049f9efa41a40d71bc493277bd69"},{"key":"X-Runtime","value":"2.152885"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": {\n        \"message\": \"Alert was successfully created\"\n    },\n    \"alert\": {\n        \"id\": 55396,\n        \"name\": \"TestAlert\",\n        \"entries_count\": 0,\n        \"sources\": [\n            \"blogs\",\n            \"xml_sources\"\n        ],\n        \"entities_enabled\": false,\n        \"alert_type\": \"keywords\",\n        \"is_legacy_facebook_alert\": false,\n        \"unread_count\": 0,\n        \"named_entry_filters\": [],\n        \"owned_fan_pages\": [],\n        \"other_fan_pages\": [],\n        \"instagram_business_accounts\": [],\n        \"non_admin_instagram_business_accounts\": [],\n        \"twitter_accounts\": [],\n        \"non_admin_twitter_accounts\": [],\n        \"owner_id\": 37,\n        \"monitor_type\": null,\n        \"last_refresh_at\": \"2019-10-31T17:49:24+01:00\",\n        \"twitter_id\": null,\n        \"created_at\": \"2019-10-31T17:49:24+01:00\",\n        \"exclude_domain_extensions\": [],\n        \"lang\": null,\n        \"alert_query_settings\": [\n            {\n                \"id\": 1074,\n                \"keywords\": [],\n                \"any_keywords\": [\n                    \"alerti\"\n                ],\n                \"exclude_keywords\": []\n            }\n        ],\n        \"exclude_domains\": [],\n        \"exclude_twittos\": [],\n        \"tags_count\": 0,\n        \"opened_tasks_count\": 0,\n        \"favorited\": true,\n        \"folder_id\": 17,\n        \"position\": 18,\n        \"user_can_interact_with_alert_twittos\": false,\n        \"user_can_interact_with_alert_facebook_comments\": true,\n        \"sharing\": {\n            \"id\": 59461,\n            \"alert_id\": 55396,\n            \"created_by_id\": null,\n            \"manage_qualification\": true,\n            \"manage_todos\": true,\n            \"created_at\": \"2019-10-31T17:49:24+01:00\",\n            \"mail_alert\": \"daily\",\n            \"favorited\": true,\n            \"share_status\": \"administrator\",\n            \"folder_id\": 17,\n            \"folder_position\": 18,\n            \"web_desktop_notification_frequency\": null,\n            \"web_mobile_notification_frequency\": null,\n            \"email\": \"lginoux@gmail.com\",\n            \"facebook_share_status\": \"facebook_administrator\",\n            \"instagram_share_status\": \"instagram_administrator\",\n            \"twitter_share_status\": \"twitter_administrator\",\n            \"user\": {\n                \"id\": 37,\n                \"first_name\": \"Loic\",\n                \"last_name\": \"Ginoux\"\n            }\n        },\n        \"owner_name\": \"Loic Ginoux\",\n        \"current_user_is_owner\": true,\n        \"xml_sources\": [\n            {\n                \"id\": 44,\n                \"source\": 1,\n                \"source_url\": \"https://www.example.com/rss.xml\",\n                \"is_valid\": true,\n                \"retrieved_at\": null\n            }\n        ],\n        \"current_user_permissions\": {\n            \"update\": true,\n            \"read\": true,\n            \"update_entries\": true,\n            \"destroy_entries\": true,\n            \"destroy\": true,\n            \"interact_on_twitter\": true,\n            \"interact_on_facebook\": true,\n            \"read_sharings\": true,\n            \"create_sharings\": true,\n            \"destroy_non_owner_sharings\": true,\n            \"interact_on_instagram\": true\n        }\n    }\n}"}],"_postman_id":"c8acd4ae-55c2-42b9-afe4-9293f7a07b5c"},{"name":"Delete an alert","id":"69450418-a561-4371-b249-dbf93781b25e","request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>includes</td>\n<td>Array</td>\n<td>includes more info in response like twitter accounts or default filters</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"c316831e-954b-4e3a-a410-00d24b141229","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"ed0ecd86-d63f-41c6-b35a-9826d70bf0ac","name":"Delete an alert","originalRequest":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id"],"variable":[{"key":"alert_id","value":"55373"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1883"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"6415e42136df7023f25b6068062d73c8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"60d573dd98163177e09800b930ffb54b"},{"key":"X-Runtime","value":"0.431400"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": {\n        \"message\": \"alert has been deleted successfully\"\n    },\n    \"alert\": {\n        \"id\": 55373,\n        \"name\": \"test hollande2\",\n        \"entries_count\": 22,\n        \"sources\": [\n            \"news\"\n        ],\n        \"entities_enabled\": false,\n        \"alert_type\": \"keywords\",\n        \"is_legacy_facebook_alert\": false,\n        \"unread_count\": 22,\n        \"named_entry_filters\": [],\n        \"owned_fan_pages\": [],\n        \"other_fan_pages\": [],\n        \"instagram_business_accounts\": [],\n        \"non_admin_instagram_business_accounts\": [],\n        \"twitter_accounts\": [],\n        \"non_admin_twitter_accounts\": [],\n        \"owner_id\": 37,\n        \"monitor_type\": null,\n        \"last_refresh_at\": \"2018-01-02T12:50:46+01:00\",\n        \"twitter_id\": null,\n        \"created_at\": \"2018-01-02T12:50:25+01:00\",\n        \"exclude_domain_extensions\": [],\n        \"lang\": \"en\",\n        \"alert_query_settings\": [\n            {\n                \"id\": 1053,\n                \"keywords\": [],\n                \"any_keywords\": [\n                    \"Hollande\"\n                ],\n                \"exclude_keywords\": []\n            }\n        ],\n        \"exclude_domains\": [],\n        \"exclude_twittos\": [],\n        \"tags_count\": 0,\n        \"opened_tasks_count\": 0,\n        \"favorited\": false,\n        \"folder_id\": null,\n        \"position\": null,\n        \"user_can_interact_with_alert_twittos\": false,\n        \"user_can_interact_with_alert_facebook_comments\": true,\n        \"sharing\": {\n            \"id\": 59436,\n            \"alert_id\": 55373,\n            \"created_by_id\": null,\n            \"manage_qualification\": true,\n            \"manage_todos\": true,\n            \"created_at\": \"2018-01-02T12:50:25+01:00\",\n            \"mail_alert\": \"none\",\n            \"favorited\": false,\n            \"share_status\": \"administrator\",\n            \"folder_id\": null,\n            \"folder_position\": null,\n            \"web_desktop_notification_frequency\": \"none\",\n            \"web_mobile_notification_frequency\": \"none\",\n            \"email\": \"lginoux@gmail.com\",\n            \"facebook_share_status\": \"facebook_administrator\",\n            \"instagram_share_status\": \"instagram_administrator\",\n            \"twitter_share_status\": \"twitter_administrator\",\n            \"user\": {\n                \"id\": 37,\n                \"first_name\": \"Loic\",\n                \"last_name\": \"Ginoux\"\n            }\n        },\n        \"owner_name\": \"Loic Ginoux\",\n        \"current_user_is_owner\": true,\n        \"xml_sources\": [],\n        \"current_user_permissions\": {\n            \"update\": true,\n            \"read\": true,\n            \"update_entries\": true,\n            \"destroy_entries\": true,\n            \"destroy\": true,\n            \"interact_on_twitter\": true,\n            \"interact_on_facebook\": true,\n            \"read_sharings\": true,\n            \"create_sharings\": true,\n            \"destroy_non_owner_sharings\": true,\n            \"interact_on_instagram\": true\n        }\n    }\n}"}],"_postman_id":"69450418-a561-4371-b249-dbf93781b25e"},{"name":"Update alert","id":"0c36da30-ad40-47bf-8f86-23e3d9c159dd","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"sharing\": {\n        \"favorited\":true\n    },\n    \"alert\": {\n      \"name\": \"another name\"\n    }\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[name]</td>\n<td>String</td>\n<td>Alert name</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[monitor_type]</td>\n<td>String</td>\n<td>Monitor type</td>\n<td>optional</td>\n<td>-</td>\n<td><code>my_company</code>, <code>competitors</code>, <code>me</code>, <code>products</code>, <code>clients</code>, <code>suppliers</code>, <code>industry</code>, <code>place</code>, <code>event</code>, <code>celebrity</code></td>\n</tr>\n<tr>\n<td>alert[lang]</td>\n<td>String</td>\n<td>Language</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>alert[exclude_domains]</td>\n<td>Array</td>\n<td>A list of domains to exclude from search, for example yoursite.com to exclude your website and all associated sub-domains</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[exclude_domain_extensions]</td>\n<td>Array</td>\n<td>A list of domain extensions to exclude from search, for example .net to exclude all websites ending by .net</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[exclude_twittos]</td>\n<td>Array</td>\n<td>a list of twitter users to exclude from search, without the @. e.g. alerti and not @alerti)</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[twitter_id]</td>\n<td>String</td>\n<td>To receive advanced Twitter statistics and be able to interact directly from your Alerti account, you can add a Twitter account. You pass here the twitter account's twitter id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings]</td>\n<td>Array</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][id]</td>\n<td>Integer</td>\n<td>the alert query setting id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][keywords]</td>\n<td>Array</td>\n<td>Search results will include all of these keywords, for example \"A, B\" will include A AND B</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][any_keywords]</td>\n<td>Array</td>\n<td>Search results will include at least one of these keywords, for example \"A, B\" will include A OR B</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert[alert_query_settings][exclude_keywords]</td>\n<td>Array</td>\n<td>Search results with these keywords will be excluded, for example \"A, B\" will exclude A AND exclude B</td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_blogs]</td>\n<td>Boolean</td>\n<td>retrieve results from source blogs</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_twitter]</td>\n<td>Boolean</td>\n<td>retrieve results from source twitter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_news]</td>\n<td>Boolean</td>\n<td>retrieve results from source news</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_google_forums]</td>\n<td>Boolean</td>\n<td>retrieve results from source google_forums</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_videos]</td>\n<td>Boolean</td>\n<td>retrieve results from source videos</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_images]</td>\n<td>Boolean</td>\n<td>retrieve results from source images</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_bing]</td>\n<td>Boolean</td>\n<td>retrieve results from source bing</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook_comments]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook_comments</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_google_plus]</td>\n<td>Boolean</td>\n<td>retrieve results from source google_plus</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook_public_posts]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook_public_posts</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_business]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_business</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_business_non_admin]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_business_non_admin</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_twitter_admin]</td>\n<td>Boolean</td>\n<td>retrieve results from source twitter_admin</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_twitter_non_admin]</td>\n<td>Boolean</td>\n<td>retrieve results from source twitter_non_admin</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_public]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_public</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_instagram_public_videos]</td>\n<td>Boolean</td>\n<td>retrieve results from source instagram_public_videos</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_facebook_reviews]</td>\n<td>Boolean</td>\n<td>retrieve results from source facebook_reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_youtube]</td>\n<td>Boolean</td>\n<td>retrieve results from source youtube</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_vimeo]</td>\n<td>Boolean</td>\n<td>retrieve results from source vimeo</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_dailymotion]</td>\n<td>Boolean</td>\n<td>retrieve results from source dailymotion</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_google_places]</td>\n<td>Boolean</td>\n<td>retrieve results from source google_places</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_opinion_assurances]</td>\n<td>Boolean</td>\n<td>retrieve results from source opinion_assurances</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_trip_advisor]</td>\n<td>Boolean</td>\n<td>retrieve results from source trip_advisor</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_booking]</td>\n<td>Boolean</td>\n<td>retrieve results from source booking</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_expedia]</td>\n<td>Boolean</td>\n<td>retrieve results from source expedia</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_agoda]</td>\n<td>Boolean</td>\n<td>retrieve results from source agoda</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_retrieving[retrieve_trustpilot]</td>\n<td>Boolean</td>\n<td>retrieve results from source trustpilot</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>google_my_business_locations</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>my_pages</td>\n<td>Hash</td>\n<td>a hash representing the Facebook fan page you want to monitor that one of your facebook account administer. the Hash form is as follow <code>{:facebook_account_id =&gt; {:fan_page_id =&gt; :fan_page_id}}</code>. For example: <code> \"my_pages\":{\"730\": { \"175329223140\": \"175329223140\"}}</code> means that you want to retrieve the fan page with the facebook id 175329223140, for your Facebook account with the id 730</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>instagram_business_accounts</td>\n<td>Hash</td>\n<td>a hash representing the instagram accounts you want to retrieve in the form `{:facebook_account_id =&gt; [:instragram_account_id]}. For example: <code>\"instagram_business_accounts\": {\"730\": [\"17841400177308672\"]},</code> means that you want to retrieve the instragram account with the id 17841400177308672 that is adminsiter by your Facebook account with the id 730. Important: We need additional permissions to be able to create an alert on your Instagram Business account(s) and provide you with the Instagram insights. Important : to be able to access the data, your Instagram Business account needs to be connected to one of the fan pages you manage with the Facebook account connected to your Alerti account.</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>twitter_accounts</td>\n<td>[String]</td>\n<td>A list of twitter account username (without the @). This will allow us to retrieve info from this account and display twitter statistics</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>other_fan_pages</td>\n<td>[String]</td>\n<td>A list of Facebook fan pages urls that you don't administer and that you want to monitor. ex: <code>[\"https://www.facebook.com/manchesterunited/\"]</code></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>non_admin_twitter_accounts</td>\n<td>[String]</td>\n<td>A list of Twitter account urls that you don't own but want to monitor</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>non_admin_instagram_business_accounts</td>\n<td>[String]</td>\n<td>A list of Instagram account urls that you don't own but want to monitor</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>opinion_assurances_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>trip_advisor_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>booking_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>expedia_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>agoda_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>trustpilot_urls</td>\n<td>[String]</td>\n<td>url for retrieving the reviews</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>google_places</td>\n<td>[Hash]</td>\n<td>A list of hash containing the following keys for your google place: place_id, name, description.</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources</td>\n<td>Array</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources[id]</td>\n<td>Integer</td>\n<td>Alert xml source id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources[source_url]</td>\n<td>String</td>\n<td>a valid rss feed url from which we will retrieve entries</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>xml_sources[source]</td>\n<td>Integer</td>\n<td>Source in which we will classify the rss feed results. possible values: {1=&gt;\"blogs\", 2=&gt;\"news\", 10=&gt;\"forums\", 30=&gt;\"videos\", 40=&gt;\"images\", 120=&gt;\"bing\"}</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>10</code>, <code>30</code>, <code>40</code>, <code>120</code></td>\n</tr>\n<tr>\n<td>sharing</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>sharing[mail_alert]</td>\n<td>String</td>\n<td>Email frequency for new results notification</td>\n<td>optional</td>\n<td><code>none</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[push_notification_frequency]</td>\n<td>String</td>\n<td>Mobile push notification for new results notification</td>\n<td>optional</td>\n<td><code>new_articles</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[web_desktop_notification_frequency]</td>\n<td>String</td>\n<td>Desktop push notification for new results notification</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[web_mobile_notification_frequency]</td>\n<td>String</td>\n<td>Android mobile push notification for new results notification. Important : to activate Android mobile notifications you need to log into your Alerti account from the browser of your Android phone.</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>none</code>, <code>new_articles</code></td>\n</tr>\n<tr>\n<td>sharing[manage_qualification]</td>\n<td>Boolean</td>\n<td>The user is authorized to update and manage qualifications of entries results</td>\n<td>optional</td>\n<td><code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>sharing[manage_todos]</td>\n<td>Boolean</td>\n<td>The user is authorized to manage tasks associated to results</td>\n<td>optional</td>\n<td><code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>sharing[favorited]</td>\n<td>Boolean</td>\n<td>Add the alert to your favorites</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>includes</td>\n<td>Array</td>\n<td>includes more info in response like twitter accounts or default filters</td>\n<td>optional</td>\n<td><code>twitter_account</code>, <code>default_filter</code></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"3b871c13-2894-483f-be59-b790bf7a0b64","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"321dc87f-5166-402e-a488-619e84e4855b","name":"Update alert","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"sharing\": {\n        \"favorited\":true\n    },\n    \"alert\": {\n      \"name\": \"another name\"\n    }\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id"],"variable":[{"key":"alert_id","value":"55371"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1933"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"e2d52c8c27e0448e50ecc402fe5e94e0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"ae79804f6f74083fd757ac70a0b27328"},{"key":"X-Runtime","value":"0.166061"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"L'alerte a été mise à jour. \",\n    \"alert\": {\n        \"id\": 55371,\n        \"name\": \"another name\",\n        \"entries_count\": 0,\n        \"sources\": [\n            \"facebook_comments\"\n        ],\n        \"entities_enabled\": false,\n        \"alert_type\": \"social\",\n        \"is_legacy_facebook_alert\": false,\n        \"unread_count\": 0,\n        \"named_entry_filters\": [],\n        \"owned_fan_pages\": [\n            {\n                \"id\": 3188,\n                \"name\": \"Court metrage 3\",\n                \"url\": \"www.facebook.com/790166657786680\",\n                \"facebook_account_id\": 727,\n                \"page_id\": \"790166657786680\",\n                \"fans_count\": 0\n            }\n        ],\n        \"other_fan_pages\": [],\n        \"instagram_business_accounts\": [],\n        \"non_admin_instagram_business_accounts\": [],\n        \"twitter_accounts\": [],\n        \"non_admin_twitter_accounts\": [],\n        \"owner_id\": 37,\n        \"monitor_type\": null,\n        \"last_refresh_at\": \"2017-09-15T10:56:27+02:00\",\n        \"twitter_id\": null,\n        \"created_at\": \"2017-09-15T10:56:27+02:00\",\n        \"exclude_domain_extensions\": [],\n        \"lang\": null,\n        \"alert_query_settings\": [],\n        \"exclude_domains\": [],\n        \"exclude_twittos\": [],\n        \"tags_count\": 0,\n        \"opened_tasks_count\": 0,\n        \"favorited\": true,\n        \"folder_id\": 25,\n        \"position\": 1,\n        \"user_can_interact_with_alert_twittos\": false,\n        \"user_can_interact_with_alert_facebook_comments\": true,\n        \"sharing\": {\n            \"id\": 59434,\n            \"alert_id\": 55371,\n            \"created_by_id\": null,\n            \"manage_qualification\": true,\n            \"manage_todos\": true,\n            \"created_at\": \"2017-09-15T10:56:28+02:00\",\n            \"mail_alert\": \"none\",\n            \"favorited\": true,\n            \"share_status\": \"administrator\",\n            \"folder_id\": 25,\n            \"folder_position\": 1,\n            \"web_desktop_notification_frequency\": \"none\",\n            \"web_mobile_notification_frequency\": \"none\",\n            \"email\": \"lginoux@gmail.com\",\n            \"facebook_share_status\": \"facebook_administrator\",\n            \"instagram_share_status\": \"instagram_administrator\",\n            \"twitter_share_status\": \"twitter_administrator\",\n            \"user\": {\n                \"id\": 37,\n                \"first_name\": \"Loic\",\n                \"last_name\": \"Ginoux\"\n            }\n        },\n        \"owner_name\": \"Loic Ginoux\",\n        \"current_user_is_owner\": true,\n        \"xml_sources\": [],\n        \"current_user_permissions\": {\n            \"update\": true,\n            \"read\": true,\n            \"update_entries\": true,\n            \"destroy_entries\": true,\n            \"destroy\": true,\n            \"interact_on_twitter\": true,\n            \"interact_on_facebook\": true,\n            \"read_sharings\": true,\n            \"create_sharings\": true,\n            \"destroy_non_owner_sharings\": true,\n            \"interact_on_instagram\": true\n        }\n    }\n}"}],"_postman_id":"0c36da30-ad40-47bf-8f86-23e3d9c159dd"}],"id":"6a1c4b8a-868a-43b8-8578-6abbb3bedd04","_postman_id":"6a1c4b8a-868a-43b8-8578-6abbb3bedd04","description":""},{"name":"Entries","item":[{"name":"Get Entries","item":[{"name":"Get alert entries","id":"14a4eb66-714e-41b8-9065-d04b09ede04b","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries?after_id=270762953&count=2&includes[]=data&includes[]=pagination&includes[]=total_count_with_children","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>after_id</td>\n<td>Integer</td>\n<td>Search entries published after a given entry id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>before_id</td>\n<td>Integer</td>\n<td>Search entries published before a given entry id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>count</td>\n<td>Integer</td>\n<td>number of entries to retrieve</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>order</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td><code>similar</code>, <code>published_at</code>, <code>published_at_asc</code>, <code>facebook_count</code>, <code>twitter_count</code>, <code>gplus_count</code>, <code>linkedin_count</code>, <code>pinterest_count</code>, <code>total_count</code>, <code>alexa_rank</code></td>\n</tr>\n<tr>\n<td>includes</td>\n<td>Array</td>\n<td>Includes what optionnal objects to load in response</td>\n<td>optional</td>\n<td><code>data</code>, <code>pagination</code>, <code>total_count_with_children</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>gsource</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>filter</td>\n<td>String</td>\n<td>Entries filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>last</code>, <code>unread</code>, <code>read</code>, <code>unqualified</code>, <code>qualified</code>, <code>reviews</code>, <code>positives</code>, <code>negatives</code>, <code>neutrals</code>, <code>questions</code>, <code>suggestions</code>, <code>trash</code>, <code>irrelevant</code>, <code>sent</code>, <code>moderated</code>, <code>unmoderated</code></td>\n</tr>\n<tr>\n<td>rating</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>review_filter_stars</td>\n<td>Integer</td>\n<td>Filter by stars given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code>, <code>4</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>review_filter_trip_type</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter_country</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter_has_owner_reply</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>lang</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>entity_en_name</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entity_is_positive</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entity_is_neutral</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact_id</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Period</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>today</code>, <code>this_week</code>, <code>this_month</code>, <code>1month</code>, <code>30days</code>, <code>last_month</code>, <code>3months</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>fb_filter</td>\n<td>String</td>\n<td>Filter by type of facebook items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>comments</code>, <code>admin_posts</code>, <code>fans_posts</code>, <code>mentions</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>instagram_filter</td>\n<td>String</td>\n<td>Filter by type of Instagram items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>posts</code>, <code>comments</code>, <code>mentions</code>, <code>tagged_posts</code>, <code>stories</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>twitter_filter</td>\n<td>String</td>\n<td>Filter by type of Twitter items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>tweets</code>, <code>replies</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>review_filter</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>read</td>\n<td>Boolean</td>\n<td>filter entries by read/unread</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>default_filter</td>\n<td>Boolean</td>\n<td>use the default filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>twitto_id</td>\n<td>Integer</td>\n<td>Filter by entries twitto id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>facebook_author_id</td>\n<td>Integer</td>\n<td>Filter by entries facebook author id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>tag</td>\n<td>String</td>\n<td>Filter entries by tag</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>id_list</td>\n<td>Array</td>\n<td>retrieve specific list of entries ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries"],"host":["{{api_host}}"],"query":[{"key":"after_id","value":"270762953"},{"key":"count","value":"2"},{"key":"includes[]","value":"data"},{"key":"includes[]","value":"pagination"},{"key":"includes[]","value":"total_count_with_children"}],"variable":[{"id":"2b252eb0-389c-496e-a5cc-f07c199ea4f4","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"8fff9112-f808-4e4a-b05e-dd3f3c81fcc2","name":"Get alert entries for a specific twitter user","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/v1/alerts/102/entries?per_page=10&source=20&twitto_id=4223","host":["{{api_host}}"],"path":["v1","alerts","102","entries"],"query":[{"key":"per_page","value":"10"},{"key":"source","value":"20"},{"key":"twitto_id","value":"4223"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c276107c-7e17-4269-87cc-4f1a0d862d31","name":"Get alert entries","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries?per_page=1&includes[]=data&includes[]=pagination&includes[]=total_count_with_children","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries"],"query":[{"key":"after_id","value":"270762953","disabled":true},{"key":"per_page","value":"1"},{"key":"includes[]","value":"data"},{"key":"includes[]","value":"pagination"},{"key":"includes[]","value":"total_count_with_children"}],"variable":[{"key":"alert_id","value":"56555"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2124"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"0f88b1157d668126ce59e0b8fb35215d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"c573543e3ec3989cbb632feef6ce92f1"},{"key":"X-Runtime","value":"8.356195"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"alert\": {\n        \"id\": 56555,\n        \"name\": \"test alerti\",\n        \"entries_count\": 617,\n        \"sources\": [\n            \"blogs\",\n            \"twitter\",\n            \"news\",\n            \"google_forums\",\n            \"images\",\n            \"bing\",\n            \"facebook\",\n            \"instagram_public\",\n            \"instagram_public_videos\",\n            \"google_places\"\n        ],\n        \"entities_enabled\": false,\n        \"alert_type\": \"keywords\",\n        \"is_legacy_facebook_alert\": false,\n        \"unread_count\": 615,\n        \"named_entry_filters\": [],\n        \"owned_fan_pages\": [],\n        \"other_fan_pages\": [],\n        \"instagram_business_accounts\": [],\n        \"non_admin_instagram_business_accounts\": [],\n        \"twitter_accounts\": [],\n        \"non_admin_twitter_accounts\": [],\n        \"google_places\": [\n            {\n                \"id\": 312,\n                \"name\": \"Paris 12 Val de Marne University\",\n                \"url\": \"https://www.google.com/maps/place/?q=place_id:ChIJ9bvMoID65UcRjzwwG8EcKgY\",\n                \"place_id\": \"ChIJ9bvMoID65UcRjzwwG8EcKgY\",\n                \"description\": \"Université Paris-Est Créteil (UPEC), Avenue du Général de Gaulle, Créteil, France\"\n            }\n        ],\n        \"retrieving_first_entries\": false,\n        \"review_country_codes\": []\n    },\n    \"total_count_with_children\": 617,\n    \"paging\": {\n        \"per_page\": 1,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 532,\n        \"total_pages\": 532,\n        \"out_of_bounds\": false\n    },\n    \"entries\": [\n        {\n            \"id\": 307666563,\n            \"alert_id\": 56555,\n            \"published_at\": \"2019-11-04T09:30:00+01:00\",\n            \"period\": \"2019-11-04\",\n            \"source\": 20,\n            \"rating\": 5,\n            \"lang\": \"fr\",\n            \"author_id\": null,\n            \"question\": null,\n            \"suggestion\": null,\n            \"retrieved_at\": \"2019-11-04T09:39:53+01:00\",\n            \"parent_id\": null,\n            \"child_entries_count\": 0,\n            \"comments_count\": 0,\n            \"todos_count\": 0,\n            \"bound_tags_count\": 0,\n            \"tags_count\": 0,\n            \"parent_published_at\": \"2019-11-04T09:30:00+01:00\",\n            \"parent_period\": \"2019-11-04\",\n            \"irrelevant\": false,\n            \"moderated\": false,\n            \"trashed\": false,\n            \"replies_count\": 0,\n            \"title\": \"alerti (Alerti)\",\n            \"tags\": [],\n            \"alert_query_setting_id\": 1857,\n            \"link_domain\": \"twitter.com\",\n            \"read_by_current_user\": false,\n            \"author_name\": \"alerti (Alerti)\",\n            \"source_name\": \"twitter\",\n            \"link\": \"http://twitter.com/alerti/statuses/1191271364042350592\",\n            \"teaser\": \"Ce sont vos clients insatisfaits qui vous disruptent, pas la technologie : https://t.co/GM9nSD17z3 via @journaldunet\",\n            \"is_domain_excluded\": false,\n            \"is_domain_spam\": false,\n            \"entities\": [],\n            \"is_twitto_excluded\": false,\n            \"twitter_id\": \"alerti\",\n            \"twitto\": {\n                \"id\": 47265995,\n                \"followers_count\": 2096\n            }\n        }\n    ],\n    \"hidden_or_deleted_entries_count\": null,\n    \"old_entries_deleted\": null\n}"},{"id":"fc3b4cd8-10e8-49bf-8309-a09fea0e67d6","name":"Get entries for a specific list of entry ids","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/v1/alerts/102/entries?id_list%5B%5D=25107","host":["{{api_host}}"],"path":["v1","alerts","102","entries"],"query":[{"key":"id_list%5B%5D","value":"25107"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"14a4eb66-714e-41b8-9065-d04b09ede04b"}],"id":"d6143800-65c3-4d6a-ad3f-2f153e13052d","_postman_id":"d6143800-65c3-4d6a-ad3f-2f153e13052d","description":""},{"name":"Bulk Actions","item":[{"name":"Update entries in bulk","id":"ed0d2609-2a61-42b0-9e4e-2a359093a648","request":{"method":"PUT","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n  \"attributes\": {\n    \"rating\": 5\n  },\n  \"ids\": [1, 2]\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries","description":"<p>There are different way to update entries.</p>\n<p>You can update entries in bulk or individually.</p>\n<p>When updating only one entry, do it this way :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    PUT /entries\n    {\n      \"data\": {\n        \"id\": \"1\",\n        \"attributes\": {\n          \"rating\": 1\n        }\n      }\n    }\n</code></pre><p>by batch you can either:</p>\n<ul>\n<li>specify a list of ids: only these entries will be updated</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    PUT /entries\n    {\n      \"data\": [{\n        \"id\": \"1\",\n        \"attributes\": {\n          \"rating\": 1\n        }\n      }, {\n        \"id\": \"2\",\n        \"attributes\": {\n          \"rating\": 1\n        }\n      }]\n    }\n</code></pre><ul>\n<li>specify a search filter: all the entries in this filter will be updated</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  PUT /entries\n  {\n    \"entries_filters\": {\n      \"read\": true\n    },\n    \"attributes\": {\n      \"rating\": 1\n    }\n  }\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ids</td>\n<td>[Integer]</td>\n<td>Entry ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[gsource]</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>entries_filters[filter]</td>\n<td>String</td>\n<td>Entries filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>last</code>, <code>unread</code>, <code>read</code>, <code>unqualified</code>, <code>qualified</code>, <code>reviews</code>, <code>positives</code>, <code>negatives</code>, <code>neutrals</code>, <code>questions</code>, <code>suggestions</code>, <code>trash</code>, <code>irrelevant</code>, <code>sent</code>, <code>moderated</code>, <code>unmoderated</code></td>\n</tr>\n<tr>\n<td>entries_filters[rating]</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_stars]</td>\n<td>Integer</td>\n<td>Filter by stars given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code>, <code>4</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_trip_type]</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_country]</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_has_owner_reply]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[lang]</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>entries_filters[entity_en_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_positive]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_neutral]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[qualifiable_contact_id]</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[period]</td>\n<td>String</td>\n<td>Period</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>today</code>, <code>this_week</code>, <code>this_month</code>, <code>1month</code>, <code>30days</code>, <code>last_month</code>, <code>3months</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>entries_filters[from_date]</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[to_date]</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[fb_filter]</td>\n<td>String</td>\n<td>Filter by type of facebook items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>comments</code>, <code>admin_posts</code>, <code>fans_posts</code>, <code>mentions</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[instagram_filter]</td>\n<td>String</td>\n<td>Filter by type of Instagram items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>posts</code>, <code>comments</code>, <code>mentions</code>, <code>tagged_posts</code>, <code>stories</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[twitter_filter]</td>\n<td>String</td>\n<td>Filter by type of Twitter items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>tweets</code>, <code>replies</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter]</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[read]</td>\n<td>Boolean</td>\n<td>filter entries by read/unread</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[default_filter]</td>\n<td>Boolean</td>\n<td>use the default filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[twitto_id]</td>\n<td>Integer</td>\n<td>Filter by entries twitto id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[facebook_author_id]</td>\n<td>Integer</td>\n<td>Filter by entries facebook author id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[tag]</td>\n<td>String</td>\n<td>Filter entries by tag</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[id_list]</td>\n<td>Array</td>\n<td>retrieve specific list of entries ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>attributes</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>attributes[rating]</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"612b6249-07f5-403b-8abb-ed752ca19ed7","type":"string","value":"","key":"alert_id"}]}},"response":[],"_postman_id":"ed0d2609-2a61-42b0-9e4e-2a359093a648"},{"name":"Mark entries as read in bulk","id":"37ddfb7b-fc5e-4f53-b567-3352e6f9239c","request":{"method":"PUT","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":"{\n  \"attributes\": {\n    \"rating\": 5\n  },\n  \"ids\": [1, 2]\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/read","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert id</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>[Integer]</td>\n<td>Entry ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[gsource]</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>entries_filters[filter]</td>\n<td>String</td>\n<td>Entries filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>last</code>, <code>unread</code>, <code>read</code>, <code>unqualified</code>, <code>qualified</code>, <code>reviews</code>, <code>positives</code>, <code>negatives</code>, <code>neutrals</code>, <code>questions</code>, <code>suggestions</code>, <code>trash</code>, <code>irrelevant</code>, <code>sent</code>, <code>moderated</code>, <code>unmoderated</code></td>\n</tr>\n<tr>\n<td>entries_filters[rating]</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_stars]</td>\n<td>Integer</td>\n<td>Filter by stars given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code>, <code>4</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_trip_type]</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_country]</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_has_owner_reply]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[lang]</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>entries_filters[entity_en_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_positive]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_neutral]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[qualifiable_contact_id]</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[period]</td>\n<td>String</td>\n<td>Period</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>today</code>, <code>this_week</code>, <code>this_month</code>, <code>1month</code>, <code>30days</code>, <code>last_month</code>, <code>3months</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>entries_filters[from_date]</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[to_date]</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[fb_filter]</td>\n<td>String</td>\n<td>Filter by type of facebook items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>comments</code>, <code>admin_posts</code>, <code>fans_posts</code>, <code>mentions</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[instagram_filter]</td>\n<td>String</td>\n<td>Filter by type of Instagram items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>posts</code>, <code>comments</code>, <code>mentions</code>, <code>tagged_posts</code>, <code>stories</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[twitter_filter]</td>\n<td>String</td>\n<td>Filter by type of Twitter items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>tweets</code>, <code>replies</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter]</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[read]</td>\n<td>Boolean</td>\n<td>filter entries by read/unread</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[default_filter]</td>\n<td>Boolean</td>\n<td>use the default filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[twitto_id]</td>\n<td>Integer</td>\n<td>Filter by entries twitto id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[facebook_author_id]</td>\n<td>Integer</td>\n<td>Filter by entries facebook author id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[tag]</td>\n<td>String</td>\n<td>Filter entries by tag</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[id_list]</td>\n<td>Array</td>\n<td>retrieve specific list of entries ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries","read"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"a777cd17-8bf2-4a92-aacd-1752fe98553a","type":"string","value":"","key":"alert_id"}]}},"response":[],"_postman_id":"37ddfb7b-fc5e-4f53-b567-3352e6f9239c"},{"name":"Apply Facebook actions in bulk","id":"75c364de-142d-4e52-a851-9eb9091b6592","request":{"method":"PUT","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":"{\n  \"attributes\": {\n    \"rating\": 5\n  },\n  \"ids\": [1, 2]\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/facebook","description":"<p>You can perform actions on entries in bulk or individually. When performing actions on individual entries, do it this way : </p>\n<ul>\n<li>Update moderated state of entry</li>\n<li>Like entry on facebook</li>\n<li>Ban users from facebook page</li>\n<li>Delete comments on facebook for the post</li>\n</ul>\n<p>If apply actions on only one entry, do it like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>PUT /entries/facebook\n{\n  \"data\": {\n    \"id\": \"1\",\n    \"actions\": {\n      \"delete_comment\": true\n    }\n  }\n}\n</code></pre><p>by batch you can either:</p>\n<ul>\n<li>specify a list of ids: actions will be performed on these entries only</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>PUT /entries/facebook\n  {\n    \"data\": [{\n      \"id\": \"1\",\n      \"actions\": {\n        \"ban_user\": true\n      }\n    }, {\n      \"id\": \"2\",\n      \"actions\": {\n        \"like\": true\n      }\n    }]\n  }\n</code></pre><ul>\n<li>specify a search filter:  actions will be performed on the entries in this filter only</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>PUT /entries/facebook\n  {\n    \"entries_filters\": {\n      \"read\": true\n    },\n    \"actions\": {\n      \"like\": false\n    }\n  }\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>Array</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>data[id]</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>data[actions]</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>data[actions][moderated]</td>\n<td>Boolean</td>\n<td>Update moderated state of entry</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>data[actions][like]</td>\n<td>Boolean</td>\n<td>Like entry on facebook</td>\n<td>optional</td>\n<td>-</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td>data[actions][ban_user]</td>\n<td>Boolean</td>\n<td>Ban users from facebook page</td>\n<td>optional</td>\n<td>-</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td>data[actions][delete_comment]</td>\n<td>Boolean</td>\n<td>Delete comments on facebook for the post</td>\n<td>optional</td>\n<td>-</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td>entries_filters</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[gsource]</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>entries_filters[filter]</td>\n<td>String</td>\n<td>Entries filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>last</code>, <code>unread</code>, <code>read</code>, <code>unqualified</code>, <code>qualified</code>, <code>reviews</code>, <code>positives</code>, <code>negatives</code>, <code>neutrals</code>, <code>questions</code>, <code>suggestions</code>, <code>trash</code>, <code>irrelevant</code>, <code>sent</code>, <code>moderated</code>, <code>unmoderated</code></td>\n</tr>\n<tr>\n<td>entries_filters[rating]</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_stars]</td>\n<td>Integer</td>\n<td>Filter by stars given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code>, <code>4</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_trip_type]</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_country]</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_has_owner_reply]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[lang]</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>entries_filters[entity_en_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_positive]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_neutral]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[qualifiable_contact_id]</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[period]</td>\n<td>String</td>\n<td>Period</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>today</code>, <code>this_week</code>, <code>this_month</code>, <code>1month</code>, <code>30days</code>, <code>last_month</code>, <code>3months</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>entries_filters[from_date]</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[to_date]</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[fb_filter]</td>\n<td>String</td>\n<td>Filter by type of facebook items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>comments</code>, <code>admin_posts</code>, <code>fans_posts</code>, <code>mentions</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[instagram_filter]</td>\n<td>String</td>\n<td>Filter by type of Instagram items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>posts</code>, <code>comments</code>, <code>mentions</code>, <code>tagged_posts</code>, <code>stories</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[twitter_filter]</td>\n<td>String</td>\n<td>Filter by type of Twitter items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>tweets</code>, <code>replies</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter]</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[read]</td>\n<td>Boolean</td>\n<td>filter entries by read/unread</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[default_filter]</td>\n<td>Boolean</td>\n<td>use the default filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[twitto_id]</td>\n<td>Integer</td>\n<td>Filter by entries twitto id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[facebook_author_id]</td>\n<td>Integer</td>\n<td>Filter by entries facebook author id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[tag]</td>\n<td>String</td>\n<td>Filter entries by tag</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[id_list]</td>\n<td>Array</td>\n<td>retrieve specific list of entries ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>actions</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>actions[moderated]</td>\n<td>Boolean</td>\n<td>Update moderated state of entry</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>actions[like]</td>\n<td>Boolean</td>\n<td>Like entry on facebook</td>\n<td>optional</td>\n<td>-</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td>actions[ban_user]</td>\n<td>Boolean</td>\n<td>Ban users from facebook page</td>\n<td>optional</td>\n<td>-</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td>actions[delete_comment]</td>\n<td>Boolean</td>\n<td>Delete comments on facebook for the post</td>\n<td>optional</td>\n<td>-</td>\n<td><code>true</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries","facebook"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"141f2e45-ff86-4522-97e5-ce269b91cf41","type":"string","value":"","key":"alert_id"}]}},"response":[],"_postman_id":"75c364de-142d-4e52-a851-9eb9091b6592"},{"name":"Delete entries in bulk","id":"eb310ccc-b27b-4bd5-9b43-efd695e70ef7","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [270271759, 270271721]\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries","description":"<p>You can delete entries in bulk or individually.</p>\n<p>If deleting only one entry, do it like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  DELETE /alerts/:alert_id/entries\n  {\n    \"ids\": [1]\n  }\n</code></pre><p>by batch you can either:</p>\n<ul>\n<li>specify a list of ids: only these entries will be deleted</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    DELETE /alerts/:alert_id/entries\n    {\n      \"ids\": [1,2]\n    }\n</code></pre><ul>\n<li>specify a search filter: all the entries in this filter will be delete</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  DELETE /alerts/:alert_id/entries\n  {\n    \"entries_filters\": {\n      \"read\": true\n    }\n  }\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ids</td>\n<td>[Integer]</td>\n<td>list of entry ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters</td>\n<td>Hash</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[gsource]</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>entries_filters[filter]</td>\n<td>String</td>\n<td>Entries filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>last</code>, <code>unread</code>, <code>read</code>, <code>unqualified</code>, <code>qualified</code>, <code>reviews</code>, <code>positives</code>, <code>negatives</code>, <code>neutrals</code>, <code>questions</code>, <code>suggestions</code>, <code>trash</code>, <code>irrelevant</code>, <code>sent</code>, <code>moderated</code>, <code>unmoderated</code></td>\n</tr>\n<tr>\n<td>entries_filters[rating]</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_stars]</td>\n<td>Integer</td>\n<td>Filter by stars given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code>, <code>4</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_trip_type]</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_country]</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter_has_owner_reply]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[lang]</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>entries_filters[entity_en_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_positive]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[entity_is_neutral]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[qualifiable_contact_id]</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[period]</td>\n<td>String</td>\n<td>Period</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>today</code>, <code>this_week</code>, <code>this_month</code>, <code>1month</code>, <code>30days</code>, <code>last_month</code>, <code>3months</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>entries_filters[from_date]</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[to_date]</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[fb_filter]</td>\n<td>String</td>\n<td>Filter by type of facebook items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>comments</code>, <code>admin_posts</code>, <code>fans_posts</code>, <code>mentions</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[instagram_filter]</td>\n<td>String</td>\n<td>Filter by type of Instagram items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>posts</code>, <code>comments</code>, <code>mentions</code>, <code>tagged_posts</code>, <code>stories</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[twitter_filter]</td>\n<td>String</td>\n<td>Filter by type of Twitter items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>tweets</code>, <code>replies</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>entries_filters[review_filter]</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>entries_filters[read]</td>\n<td>Boolean</td>\n<td>filter entries by read/unread</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[default_filter]</td>\n<td>Boolean</td>\n<td>use the default filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[twitto_id]</td>\n<td>Integer</td>\n<td>Filter by entries twitto id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[facebook_author_id]</td>\n<td>Integer</td>\n<td>Filter by entries facebook author id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[tag]</td>\n<td>String</td>\n<td>Filter entries by tag</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entries_filters[id_list]</td>\n<td>Array</td>\n<td>retrieve specific list of entries ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert id</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"5a7315eb-4040-4c0e-92d4-76ea719c8192","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"3be65fdf-0c20-42ea-875a-fdc129e75fa1","name":"delete entries by ids","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/alerts/54639/entries/?token={{api_key}}","host":["{{api_host}}"],"path":["alerts","54639","entries",""],"query":[{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"107","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Dec 2016 09:22:20 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ab35e9c66f0c892dc696032d192283fe\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"e3fa2dd76a468dd51db02468fbcf315f","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.739889","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiDnJldHVybl90bwY6BkVGIl4vdjMvZmFjZWJvb2svZmFuX3BhZ2VzP3Rva2VuPTk2YTM4NDAwMzBmMTg5OTA3MWM3ZDBjNGYwNTBkMjIxN2ZiZmJkODdmODBiMWQ1NDU5NTRkMmMxZWQ4MkkiD3Nlc3Npb25faWQGOwBGSSIlMDMyYzJkOGMzZjA4MDAzNmNiYTU4YTNhZTU5NzE5NWEGOwBUSSIQX2NzcmZfdG9rZW4GOwBGSSIxMUlBcmpUbVlpNWpLVVNsS0xGLzk1dTBrSTZnK0ZpVWJYN2FBeCtiOFdmVT0GOwBG--ed1e86a85e5150167edfbbdc5bbdacc059932658","key":"_alerti_session"}],"responseTime":null,"body":"{\"deleted_count\":2,\"processed_entries\":[270762926,270765396],\"message\":\"Entries was successfully deleted.\"}"},{"id":"f9ee5bcf-5ab3-4459-904c-23ba3d0ffc64","name":"Delete entries by filters","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n  \"entries_filters\":{\n    \"from_date\": \"20/08/2015\",\n    \"to_date\": \"15/09/2015\",\n    \"gsource\": 0,\n    \"filter\": \"all\",\n    \"period\": \"custom\"\n  }\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries"],"variable":[{"key":"version","value":""},{"key":"alert_id","value":""}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"eb310ccc-b27b-4bd5-9b43-efd695e70ef7"}],"id":"bf7f1f8b-0827-4a82-a813-5542d8283b5e","event":[{"listen":"prerequest","script":{"id":"9f83ce8e-a6b1-4a09-bae1-8bbd95346702","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1efd43f9-2a26-4a00-ad4e-aa83ed2f35ed","type":"text/javascript","exec":[""]}}],"_postman_id":"bf7f1f8b-0827-4a82-a813-5542d8283b5e","description":""},{"name":"Actions on individual entries","item":[{"name":"Get entry's info","id":"c7c1911e-5681-443d-ac28-08a2773ef1e7","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"6c836934-12d4-431b-bf11-75ab2751a6cc","type":"string","value":"","key":"alert_id"},{"id":"cd6de243-fd4a-447f-85fd-b2e39f3df94f","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"58a98e76-a5c0-4adc-9e03-7a2d86a79c47","name":"Get entry's info","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id"],"variable":[{"key":"alert_id","value":"56555"},{"key":"entry_id","value":"307666563"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"994"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"5fef935eba9cd5bbecf076f410ea5cfe\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"eb6ce97f043d8240ef0ca432664aeef7"},{"key":"X-Runtime","value":"7.185604"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"id\": 307666563,\n        \"alert_id\": 56555,\n        \"published_at\": \"2019-11-04T09:30:00+01:00\",\n        \"period\": \"2019-11-04\",\n        \"source\": 20,\n        \"rating\": 5,\n        \"lang\": \"fr\",\n        \"author_id\": null,\n        \"question\": null,\n        \"suggestion\": null,\n        \"retrieved_at\": \"2019-11-04T09:39:53+01:00\",\n        \"parent_id\": null,\n        \"child_entries_count\": 0,\n        \"comments_count\": 0,\n        \"todos_count\": 0,\n        \"bound_tags_count\": 0,\n        \"tags_count\": 0,\n        \"parent_published_at\": \"2019-11-04T09:30:00+01:00\",\n        \"parent_period\": \"2019-11-04\",\n        \"irrelevant\": false,\n        \"moderated\": false,\n        \"trashed\": false,\n        \"replies_count\": 0,\n        \"title\": \"alerti (Alerti)\",\n        \"tags\": [],\n        \"alert_query_setting_id\": 1857,\n        \"link_domain\": \"twitter.com\",\n        \"read_by_current_user\": false,\n        \"author_name\": \"alerti (Alerti)\",\n        \"source_name\": \"twitter\",\n        \"link\": \"http://twitter.com/alerti/statuses/1191271364042350592\",\n        \"teaser\": \"Ce sont vos clients insatisfaits qui vous disruptent, pas la technologie : https://t.co/GM9nSD17z3 via @journaldunet\",\n        \"is_domain_excluded\": false,\n        \"is_twitto_excluded\": false,\n        \"twitter_id\": \"alerti\",\n        \"twitto\": {\n            \"id\": 47265995,\n            \"followers_count\": 2096\n        }\n    }\n}"}],"_postman_id":"c7c1911e-5681-443d-ac28-08a2773ef1e7"},{"name":"Get entrie's children","id":"9a7ec2d2-211e-41b2-9649-d7464bd226fb","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/children?page=1&per_page=10","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","children"],"host":["{{api_host}}"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"id":"fa70d4a3-5c90-4aa7-a73e-ed3991f5ab15","type":"string","value":"","key":"alert_id"},{"id":"4c7fffe8-4290-4bb3-8a2b-7b372ed92dcf","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"ab252c33-4316-48c3-bfb1-df00ae996b62","name":"Get entrie's children","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/children?page=1&per_page=10","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","children"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"key":"alert_id","value":"56555"},{"key":"entry_id","value":"307619468"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1408"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"d0cf0163c8daca6fb3ff97fc0032f88f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"01377c00136cd98d045f7aeea4ef01d0"},{"key":"X-Runtime","value":"2.624303"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"per_page\": 10,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 1,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    },\n    \"entries\": [\n        {\n            \"id\": 307630357,\n            \"alert_id\": 56555,\n            \"published_at\": \"2019-11-02T10:12:49+01:00\",\n            \"period\": \"2019-11-02\",\n            \"source\": 20,\n            \"rating\": 5,\n            \"lang\": \"fr\",\n            \"author_id\": null,\n            \"question\": null,\n            \"suggestion\": null,\n            \"retrieved_at\": \"2019-11-02T10:16:42+01:00\",\n            \"parent_id\": 307619468,\n            \"child_entries_count\": 0,\n            \"comments_count\": 0,\n            \"todos_count\": 0,\n            \"bound_tags_count\": 0,\n            \"tags_count\": 0,\n            \"parent_published_at\": \"2019-11-01T18:29:25+01:00\",\n            \"parent_period\": \"2019-11-01\",\n            \"irrelevant\": false,\n            \"moderated\": false,\n            \"trashed\": false,\n            \"replies_count\": 0,\n            \"title\": \"MisterComptable (Mister Comptable)\",\n            \"tags\": [],\n            \"alert_query_setting_id\": 1857,\n            \"link_domain\": \"twitter.com\",\n            \"read_by_current_user\": false,\n            \"author_name\": \"MisterComptable (Mister Comptable)\",\n            \"source_name\": \"twitter\",\n            \"link\": \"http://twitter.com/MisterComptable/statuses/1190557363310346240\",\n            \"teaser\": \"RT @MisterComptable: Se démarquer sur #LinkedIn c'est comme se démarquer sur #Tinder\\n➡️ Avoir une photo de profil avenante\\n➡️ Avoir une bio : cad une courte présentation de qualité \\n➡️ Être original et innovant dans son approche\\n➡️ Mettre en avant ses hobbies, voyages (pour Tinder) https://t.co/sxeVAF5Rj5\",\n            \"is_domain_excluded\": false,\n            \"is_twitto_excluded\": false,\n            \"twitter_id\": \"MisterComptable\",\n            \"twitto\": {\n                \"id\": 48010506,\n                \"followers_count\": 1265\n            }\n        }\n    ]\n}"}],"_postman_id":"9a7ec2d2-211e-41b2-9649-d7464bd226fb"},{"name":"Share entry by email with others","id":"1e9111e0-d5f1-4b03-ac94-90dd1462b656","request":{"method":"POST","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n  \"emails\": [\"test@example.com\", \"test2@example.com\"]\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/mail_share","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>emails</td>\n<td>[String]</td>\n<td>An array of emails</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>msg</td>\n<td>String</td>\n<td>a custom message to send in email</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","mail_share"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"c35cca40-78d0-4a79-a627-905e5ae048ec","type":"string","value":"","key":"alert_id"},{"id":"00ec667a-3c32-4e70-908c-0e9ef23530ef","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"5cb20699-232c-49dc-8e6d-aa9be7d39837","name":"Share entry by email with others","originalRequest":{"method":"POST","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n  \"emails\": [\"test@example.com\", \"test2@example.com\"]\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/mail_share","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","mail_share"],"variable":[{"key":"alert_id","value":"56555"},{"key":"entry_id","value":"307619468"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"81"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"151926f229519a525d0116962bab5046\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"34558c9922d09a00a2fc443781395a7a"},{"key":"X-Runtime","value":"1.607824"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Email envoyé à test@example.com, test2@example.com\"\n}"}],"_postman_id":"1e9111e0-d5f1-4b03-ac94-90dd1462b656"},{"name":"Refresh share counters for an entry","id":"0f1498dc-17cf-471f-a44d-eb92408463f5","request":{"method":"POST","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/refresh_share_count","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","refresh_share_count"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"b8bfe5ba-432e-4f04-92dd-a437b60f3c3d","type":"string","value":"","key":"alert_id"},{"id":"f4c304d0-6fef-44d4-819a-504ee7d92c66","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"0f1498dc-17cf-471f-a44d-eb92408463f5"},{"name":"Mark entry as read","id":"048f387d-fdad-42df-a73b-2d4e18ebc4a8","request":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/read","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","read"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"a337c87f-7fdf-47f5-8520-9ec9af0177ff","type":"string","value":"","key":"alert_id"},{"id":"495dd64e-bc66-4878-b8c0-3a33032ef3a6","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"cf9ed6d4-ad6e-42e9-9dae-dd6b7e03d979","name":"mark entry as read","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/alerts/1/entries/3310/unread?token={{api_key}}","host":["{{api_host}}"],"path":["alerts","1","entries","3310","unread"],"query":[{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1048","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 10:43:43 GMT","name":"Date","description":""},{"key":"ETag","value":"\"bf7a8042be12d9985087ca518d9c29b6\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"31afc27833a33bb6bd801f979bf101e8","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.074671","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiWy92My9hbGVydHMvMTc2L3RhZ3M%2FdG9rZW49MGNlN2M2MTM0MWJlMjBkOWRkMDQwZGE0ZGYyMGYwOTA4NWQ4Yjc2MDg4YjE2NTU3Mjc3MGYzZjdhZmYxSSIQX2NzcmZfdG9rZW4GOwBGSSIxNHYxT0M0UmVZdXVhMVRLMWYvSkdDTEdzdjJkYVVVa1dHdHhGMi83dGM5UT0GOwBG--6cebdc4340d362d7662a4d2c78a920cce6747548","key":"_alerti_session"}],"responseTime":null,"body":"{\"entry\":{\"id\":3310,\"alert_id\":1,\"published_at\":\"2014-09-10T13:52:13+02:00\",\"period\":\"2014-09-10\",\"source\":2,\"rating\":5,\"lang\":\"fr\",\"author_id\":null,\"question\":null,\"suggestion\":null,\"retrieved_at\":\"2014-09-10T13:52:17+02:00\",\"parent_id\":null,\"child_entries_count\":0,\"comments_count\":0,\"todos_count\":0,\"bound_tags_count\":0,\"tags_count\":7,\"is_read\":true,\"parent_published_at\":\"2014-09-10T13:52:13+02:00\",\"parent_period\":\"2014-09-10\",\"irrelevant\":false,\"moderated\":false,\"trashed\":false,\"replies_count\":0,\"title\":\"Trendle - The Fashion Social Network | Time to ... - Scoop.it\",\"author_name\":\"scoop.it\",\"source_name\":\"news\",\"link\":\"http://www.scoop.it/t/formation-2-0/p/4027620101/2014/09/08/trendle-the-fashion-social-network\",\"teaser\":\"alerti 1 \\u00b7 Allorank 1 \\u00b7 Amazon 1 \\u00b7 Analytics 47 \\u00b7 andro 1 \\u00b7 Android 414 \\u00b7 Anglais 1 \\u00b7 \",\"share_counts\":{\"facebook\":1,\"twitter\":0,\"linkedin\":1,\"pinterest\":1,\"googleplus\":5,\"total\":8,\"alexa_rank\":null,\"updated_at\":\"2016-09-19T11:37:06+02:00\"}},\"message\":\"Entry marked as unread.\"}"},{"id":"ea22394c-07e0-4a3d-8684-145acc8caa89","name":"Mark entry as read","originalRequest":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/read","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","read"],"variable":[{"key":"alert_id","value":"56555"},{"key":"entry_id","value":"307596247"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1102"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"fe90aea18d73de0d34706d71fad6ecac\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"5943ccdd5dfd7400e0ca0f3d6f5b6cda"},{"key":"X-Runtime","value":"7.104512"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"id\": 307596247,\n        \"alert_id\": 56555,\n        \"published_at\": \"2019-10-31T17:00:54+01:00\",\n        \"period\": \"2019-10-31\",\n        \"source\": 120,\n        \"rating\": 5,\n        \"lang\": \"fr\",\n        \"author_id\": null,\n        \"question\": null,\n        \"suggestion\": null,\n        \"retrieved_at\": \"2019-10-31T17:01:09+01:00\",\n        \"parent_id\": null,\n        \"child_entries_count\": 0,\n        \"comments_count\": 0,\n        \"todos_count\": 0,\n        \"bound_tags_count\": 0,\n        \"tags_count\": 0,\n        \"parent_published_at\": \"2019-10-31T17:00:54+01:00\",\n        \"parent_period\": \"2019-10-31\",\n        \"irrelevant\": false,\n        \"moderated\": false,\n        \"trashed\": false,\n        \"replies_count\": 0,\n        \"title\": \"15 Outils Indispensables Pour Gérer Vos Réseaux Sociaux\",\n        \"tags\": [],\n        \"alert_query_setting_id\": 1857,\n        \"link_domain\": \"mylittlebigweb.com\",\n        \"read_by_current_user\": true,\n        \"author_name\": \"My Little Big Web\",\n        \"source_name\": \"bing\",\n        \"link\": \"https://mylittlebigweb.com/15-outils-indispensables-du-community-manager/\",\n        \"teaser\": \"Alerti est un outil de gestion de réputation qui vous permet de suivre en temps réel ... Utiliser Alerti est un très bon moyen d'améliorer votre réputation en ligne, ...\",\n        \"is_domain_excluded\": false,\n        \"is_source_excluded\": false,\n        \"share_counts\": {}\n    },\n    \"message\": \"Entry marked as read.\"\n}"}],"_postman_id":"048f387d-fdad-42df-a73b-2d4e18ebc4a8"},{"name":"Update entry sentiment","id":"ecd214ce-e35d-4984-b0ae-d4b8c6f6dae1","request":{"method":"PUT","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n  \"attributes\": {\n    \"moderated\":\"false\",\n    \"lang\": \"fr\",\n    \"question\": false,\n    \"suggestion\": true,\n    \"rating\": 1\n  }\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>attributes[lang]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td><code>fr</code>, <code>es</code>, <code>uk</code>, <code>en</code>, <code>eu</code>, <code>ar</code></td>\n</tr>\n<tr>\n<td>attributes[moderated]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>attributes[question]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>attributes[suggestion]</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>attributes[rating]</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"bcb5e339-37ef-4a23-8675-f8c787e5f35e","type":"string","value":"","key":"alert_id"},{"id":"52362e66-bf53-4b98-b3a4-eb526764a383","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"4116c69a-8bc3-4030-8b17-34985451ef19","name":"Update entry","originalRequest":{"method":"PUT","header":[{"key":"Accept-Encoding","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n  \"attributes\": {\n    \"moderated\":\"false\",\n    \"lang\": \"fr\",\n    \"question\": false,\n    \"suggestion\": true,\n    \"rating\": 1\n  }\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id"],"variable":[{"key":"alert_id","value":"56555"},{"key":"entry_id","value":"307596247"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1096"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"0568a8517b785cdfca26c212769ebfc0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"9a55ba8f22b6aa56386fad323627b944"},{"key":"X-Runtime","value":"5.029327"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"id\": 307596247,\n        \"alert_id\": 56555,\n        \"published_at\": \"2019-10-31T17:00:54+01:00\",\n        \"period\": \"2019-10-31\",\n        \"source\": 120,\n        \"rating\": 1,\n        \"lang\": \"fr\",\n        \"author_id\": null,\n        \"question\": false,\n        \"suggestion\": true,\n        \"retrieved_at\": \"2019-10-31T17:01:09+01:00\",\n        \"parent_id\": null,\n        \"child_entries_count\": 0,\n        \"comments_count\": 0,\n        \"todos_count\": 0,\n        \"bound_tags_count\": 0,\n        \"tags_count\": 0,\n        \"parent_published_at\": \"2019-10-31T17:00:54+01:00\",\n        \"parent_period\": \"2019-10-31\",\n        \"irrelevant\": false,\n        \"moderated\": false,\n        \"trashed\": false,\n        \"replies_count\": 0,\n        \"title\": \"15 Outils Indispensables Pour Gérer Vos Réseaux Sociaux\",\n        \"tags\": [],\n        \"alert_query_setting_id\": 1857,\n        \"link_domain\": \"mylittlebigweb.com\",\n        \"read_by_current_user\": true,\n        \"author_name\": \"My Little Big Web\",\n        \"source_name\": \"bing\",\n        \"link\": \"https://mylittlebigweb.com/15-outils-indispensables-du-community-manager/\",\n        \"teaser\": \"Alerti est un outil de gestion de réputation qui vous permet de suivre en temps réel ... Utiliser Alerti est un très bon moyen d'améliorer votre réputation en ligne, ...\",\n        \"is_domain_excluded\": false,\n        \"is_source_excluded\": false,\n        \"share_counts\": {}\n    },\n    \"message\": \"Entry updated.\"\n}"}],"_postman_id":"ecd214ce-e35d-4984-b0ae-d4b8c6f6dae1"},{"name":"Restore entry from trash","id":"96913780-20c4-48f3-b8b3-60f7846a72a5","request":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/undelete","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","undelete"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"c62623e8-4f50-47d5-95ab-6d5193006283","type":"string","value":"","key":"alert_id"},{"id":"4d277a63-6884-42fb-a27e-cfca849b1abe","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"aa3cc565-2dba-4a89-bae8-e0ac0321940a","name":"undelete entry","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/alerts/1/entries/3310/undelete?token={{api_key}}","host":["{{api_host}}"],"path":["alerts","1","entries","3310","undelete"],"query":[{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1114","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 10:43:22 GMT","name":"Date","description":""},{"key":"ETag","value":"\"22da79f3d7000a98f081b26b7b50f5db\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"a485baa8d90293303dc646a9d27f7efe","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.185653","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiWy92My9hbGVydHMvMTc2L3RhZ3M%2FdG9rZW49MGNlN2M2MTM0MWJlMjBkOWRkMDQwZGE0ZGYyMGYwOTA4NWQ4Yjc2MDg4YjE2NTU3Mjc3MGYzZjdhZmYxSSIQX2NzcmZfdG9rZW4GOwBGSSIxNHYxT0M0UmVZdXVhMVRLMWYvSkdDTEdzdjJkYVVVa1dHdHhGMi83dGM5UT0GOwBG--6cebdc4340d362d7662a4d2c78a920cce6747548","key":"_alerti_session"}],"responseTime":null,"body":"{\"entry\":{\"id\":3310,\"alert_id\":1,\"published_at\":\"2014-09-10T13:52:13+02:00\",\"period\":\"2014-09-10\",\"source\":2,\"rating\":5,\"lang\":\"fr\",\"author_id\":null,\"question\":null,\"suggestion\":null,\"retrieved_at\":\"2014-09-10T13:52:17+02:00\",\"parent_id\":null,\"child_entries_count\":0,\"comments_count\":0,\"todos_count\":0,\"bound_tags_count\":0,\"tags_count\":7,\"is_read\":true,\"parent_published_at\":\"2014-09-10T13:52:13+02:00\",\"parent_period\":\"2014-09-10\",\"irrelevant\":false,\"moderated\":false,\"trashed\":true,\"replies_count\":0,\"title\":\"Trendle - The Fashion Social Network | Time to ... - Scoop.it\",\"author_name\":\"scoop.it\",\"source_name\":\"news\",\"link\":\"http://www.scoop.it/t/formation-2-0/p/4027620101/2014/09/08/trendle-the-fashion-social-network\",\"teaser\":\"alerti 1 \\u00b7 Allorank 1 \\u00b7 Amazon 1 \\u00b7 Analytics 47 \\u00b7 andro 1 \\u00b7 Android 414 \\u00b7 Anglais 1 \\u00b7 \",\"trashed_by\":24954,\"trashed_at\":\"2016-11-25T11:43:13+01:00\",\"share_counts\":{\"facebook\":1,\"twitter\":0,\"linkedin\":1,\"pinterest\":1,\"googleplus\":5,\"total\":8,\"alexa_rank\":null,\"updated_at\":\"2016-09-19T11:37:06+02:00\"}},\"message\":\"Entry was restored from trash.\"}"}],"_postman_id":"96913780-20c4-48f3-b8b3-60f7846a72a5"},{"name":"Mark entry as unread","id":"5a4027c8-004d-42a5-bf02-5ed78e873208","request":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/unread","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","unread"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"b9f6dd82-400f-47b5-8fcf-1c8f652a36bc","type":"string","value":"","key":"alert_id"},{"id":"53437e95-0726-4179-888b-1af9c9c37c3c","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"230e282c-1e52-4dab-b2ab-d48dd7c58ca0","name":"mark entry as read","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/alerts/1/entries/3310/unread?token={{api_key}}","host":["{{api_host}}"],"path":["alerts","1","entries","3310","unread"],"query":[{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1048","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 10:43:43 GMT","name":"Date","description":""},{"key":"ETag","value":"\"bf7a8042be12d9985087ca518d9c29b6\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"31afc27833a33bb6bd801f979bf101e8","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.074671","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiWy92My9hbGVydHMvMTc2L3RhZ3M%2FdG9rZW49MGNlN2M2MTM0MWJlMjBkOWRkMDQwZGE0ZGYyMGYwOTA4NWQ4Yjc2MDg4YjE2NTU3Mjc3MGYzZjdhZmYxSSIQX2NzcmZfdG9rZW4GOwBGSSIxNHYxT0M0UmVZdXVhMVRLMWYvSkdDTEdzdjJkYVVVa1dHdHhGMi83dGM5UT0GOwBG--6cebdc4340d362d7662a4d2c78a920cce6747548","key":"_alerti_session"}],"responseTime":null,"body":"{\"entry\":{\"id\":3310,\"alert_id\":1,\"published_at\":\"2014-09-10T13:52:13+02:00\",\"period\":\"2014-09-10\",\"source\":2,\"rating\":5,\"lang\":\"fr\",\"author_id\":null,\"question\":null,\"suggestion\":null,\"retrieved_at\":\"2014-09-10T13:52:17+02:00\",\"parent_id\":null,\"child_entries_count\":0,\"comments_count\":0,\"todos_count\":0,\"bound_tags_count\":0,\"tags_count\":7,\"is_read\":true,\"parent_published_at\":\"2014-09-10T13:52:13+02:00\",\"parent_period\":\"2014-09-10\",\"irrelevant\":false,\"moderated\":false,\"trashed\":false,\"replies_count\":0,\"title\":\"Trendle - The Fashion Social Network | Time to ... - Scoop.it\",\"author_name\":\"scoop.it\",\"source_name\":\"news\",\"link\":\"http://www.scoop.it/t/formation-2-0/p/4027620101/2014/09/08/trendle-the-fashion-social-network\",\"teaser\":\"alerti 1 \\u00b7 Allorank 1 \\u00b7 Amazon 1 \\u00b7 Analytics 47 \\u00b7 andro 1 \\u00b7 Android 414 \\u00b7 Anglais 1 \\u00b7 \",\"share_counts\":{\"facebook\":1,\"twitter\":0,\"linkedin\":1,\"pinterest\":1,\"googleplus\":5,\"total\":8,\"alexa_rank\":null,\"updated_at\":\"2016-09-19T11:37:06+02:00\"}},\"message\":\"Entry marked as unread.\"}"}],"_postman_id":"5a4027c8-004d-42a5-bf02-5ed78e873208"},{"name":"Mark entry as relevant","id":"183ce7fa-21a1-4f3f-bff5-dcb11212b145","request":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/relevant","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","relevant"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"11dbc412-19ae-4e02-92a8-cc1e606629a7","type":"string","value":"","key":"alert_id"},{"id":"92773bd4-7038-4d9e-9fed-6b61db9d4c57","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"183ce7fa-21a1-4f3f-bff5-dcb11212b145"},{"name":"Mark child entry as parent","id":"0cd31d5d-3bd4-4181-b090-eaf7de665b72","request":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/mark_as_source","description":"<p>When several entries are similar. It will set the entry as the main, parent or referent, entry.</p>\n","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","mark_as_source"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"4f8e849e-3733-4e84-b861-f9e45124b391","type":"string","value":"","key":"alert_id"},{"id":"ab8bc866-5e39-407c-992d-82a5d930015e","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"9e077181-9409-406b-9eed-a5d63c15c7a5","name":"mark as source","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/alerts/1/entries/72/mark_as_source?token={{api_key}}","host":["{{api_host}}"],"path":["alerts","1","entries","72","mark_as_source"],"query":[{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"857","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 10:45:44 GMT","name":"Date","description":""},{"key":"ETag","value":"\"585f3cba4dcb96b9d3e8bedb0b4a556a\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"333808d40b53546c08bc3a08e183aab5","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.117379","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiWy92My9hbGVydHMvMTc2L3RhZ3M%2FdG9rZW49MGNlN2M2MTM0MWJlMjBkOWRkMDQwZGE0ZGYyMGYwOTA4NWQ4Yjc2MDg4YjE2NTU3Mjc3MGYzZjdhZmYxSSIQX2NzcmZfdG9rZW4GOwBGSSIxNHYxT0M0UmVZdXVhMVRLMWYvSkdDTEdzdjJkYVVVa1dHdHhGMi83dGM5UT0GOwBG--6cebdc4340d362d7662a4d2c78a920cce6747548","key":"_alerti_session"}],"responseTime":null,"body":"{\"entry\":{\"id\":72,\"alert_id\":1,\"published_at\":\"2014-04-25T09:24:49+02:00\",\"period\":\"2014-04-25\",\"source\":20,\"rating\":5,\"lang\":\"fr\",\"author_id\":null,\"question\":null,\"suggestion\":null,\"retrieved_at\":\"2014-04-30T13:32:01+02:00\",\"parent_id\":46,\"child_entries_count\":0,\"comments_count\":0,\"todos_count\":0,\"bound_tags_count\":0,\"tags_count\":2,\"is_read\":false,\"parent_published_at\":\"2014-04-25T09:24:49+02:00\",\"parent_period\":\"2014-04-25\",\"irrelevant\":false,\"moderated\":false,\"trashed\":false,\"replies_count\":0,\"title\":\"alerti (Alerti)\",\"author_name\":\"alerti (Alerti)\",\"source_name\":\"twitter\",\"link\":\"http://twitter.com/alerti/statuses/459593859165872129\",\"teaser\":\"Tr\\u00e8s belle campagne pour le don d'organes (via @jbdba) http://t.co/gTPaLMQciq\",\"twitter_id\":\"alerti\",\"twitto\":{\"id\":35,\"followers_count\":91,\"klout_score\":\"0\"}},\"message\":\"Entry marked as source.\"}"}],"_postman_id":"0cd31d5d-3bd4-4181-b090-eaf7de665b72"},{"name":"Exclude source domain in alerts settings","id":"fadbb8c2-2a91-411f-a7df-d2896dc2a814","request":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/exclude_source_domain","description":"<p>if an entry source url is from <a href=\"http://example.com\">http://example.com</a>, when excluding it, all new results from this domain will not be retrieved.</p>\n","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","exclude_source_domain"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"cab49209-64e0-43a3-995f-a98648102b3f","type":"string","value":"","key":"alert_id"},{"id":"671c213a-a043-4dab-a425-d1aa2093136d","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"fadbb8c2-2a91-411f-a7df-d2896dc2a814"},{"name":"Report entry as spam and exclude source domain","id":"e59f7341-f64b-466e-a52c-9960994320c1","request":{"method":"PUT","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/report_spam","description":"<p>exclude source domain and mark domain as a general spam, this will improve the search engine for all users.</p>\n","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","report_spam"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"532ddca9-665e-495e-ba50-1e651e530b73","type":"string","value":"","key":"alert_id"},{"id":"b2e29bf4-7db4-425e-b871-752f149c541a","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"e59f7341-f64b-466e-a52c-9960994320c1"},{"name":"Exclude twitter user in alerts settings","id":"65e83771-f182-4d5d-9f5e-d532440c8daf","request":{"method":"PUT","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/exclude_twitto","description":"<p>by excluding twitter user, new tweets from this user will not show anymore in alert's results</p>\n","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","exclude_twitto"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"3c2cfd19-39f8-4527-b712-d0d9c715288a","type":"string","value":"","key":"alert_id"},{"id":"166b9359-f06a-4e88-97f1-280500aeda12","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"80e8cdd4-88b0-4046-874d-2ca9160e99cf","name":"Exclude twitto in alerts settings","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/exclude_twitto","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","exclude_twitto"],"variable":[{"key":"alert_id","value":"1"},{"key":"entry_id","value":"24"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 10:49:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"d9a6d76c9bfa8109deb614b35964aa66\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"887fc93ae1200454c8e2789023cf5fa5","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.058469","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiWy92My9hbGVydHMvMTc2L3RhZ3M%2FdG9rZW49MGNlN2M2MTM0MWJlMjBkOWRkMDQwZGE0ZGYyMGYwOTA4NWQ4Yjc2MDg4YjE2NTU3Mjc3MGYzZjdhZmYxSSIQX2NzcmZfdG9rZW4GOwBGSSIxNHYxT0M0UmVZdXVhMVRLMWYvSkdDTEdzdjJkYVVVa1dHdHhGMi83dGM5UT0GOwBG--6cebdc4340d362d7662a4d2c78a920cce6747548","key":"_alerti_session"}],"responseTime":null,"body":"{\n\t\"message\":\"Screen name of entry is already added to exclude twittos of alert.\",\n\t\"success\":true,\n\t\"alert\":{\n\t\t\"id\":1,\n\t\t\"excluded_twittos\":\"alerti\"\n\t}\n}"}],"_postman_id":"65e83771-f182-4d5d-9f5e-d532440c8daf"}],"id":"37efe1e1-9bf7-4ed3-a49f-b36b1f9be0db","event":[{"listen":"prerequest","script":{"id":"d0a1a6a0-5f66-4234-a214-d49a17e201d9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"830a5768-a75a-40d8-a3df-8e6f32982754","type":"text/javascript","exec":[""]}}],"_postman_id":"37efe1e1-9bf7-4ed3-a49f-b36b1f9be0db","description":""},{"name":"Comments","item":[{"name":"Get list of comments for an entry","id":"7744c8a5-f9dc-4646-88c7-c1fe3e2c1f1c","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/comments","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>entry_id</td>\n<td>Integer</td>\n<td>Entry id</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","comments"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"46a55c03-f8f8-45ba-a12b-1c738603f85b","type":"string","value":"","key":"alert_id"},{"id":"84477457-e7e3-4149-abb7-0bce47d12aaf","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"60e8e2ad-cc5c-49df-b833-d0c96fa816a5","name":"Get list of comments for an entry","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/comments","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","comments"],"variable":[{"key":"alert_id","value":"56555"},{"key":"entry_id","value":"307727763"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"227"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"3dd92347d9d0c647d63faf35b1a11ac3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"8b8b3e8d5ba680e81f34e340af7c7202"},{"key":"X-Runtime","value":"1.846811"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"comments\": [\n        {\n            \"id\": 5024,\n            \"entry_id\": 307727763,\n            \"alert_id\": 56555,\n            \"entry_trashed\": false,\n            \"content\": \"this is an entry comment\",\n            \"created_at\": \"2019-11-07T16:30:21+01:00\",\n            \"user\": {\n                \"id\": 502,\n                \"first_name\": \"Severine\",\n                \"last_name\": \"Faurax\"\n            }\n        }\n    ]\n}"},{"id":"73af3751-798e-47c1-be02-2357d4619f58","name":"comment list","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_host}}/alerts/1/entries/1/comments?token={{api_key}}","host":["{{api_host}}"],"path":["alerts","1","entries","1","comments"],"query":[{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"292","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 09:54:34 GMT","name":"Date","description":""},{"key":"ETag","value":"\"440889179de7402ba15340fbd5faf222\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"481de4b291dad30d109e6ef9b89769ea","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.077153","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiWy92My9hbGVydHMvMTc2L3RhZ3M%2FdG9rZW49MGNlN2M2MTM0MWJlMjBkOWRkMDQwZGE0ZGYyMGYwOTA4NWQ4Yjc2MDg4YjE2NTU3Mjc3MGYzZjdhZmYxSSIQX2NzcmZfdG9rZW4GOwBGSSIxNHYxT0M0UmVZdXVhMVRLMWYvSkdDTEdzdjJkYVVVa1dHdHhGMi83dGM5UT0GOwBG--6cebdc4340d362d7662a4d2c78a920cce6747548","key":"_alerti_session"}],"responseTime":null,"body":"{\"comments\":[{\"id\":3,\"user_id\":24954,\"entry_id\":1,\"alert_id\":1,\"entry_trashed\":false,\"content\":\"test\"},{\"id\":4,\"user_id\":24954,\"entry_id\":1,\"alert_id\":1,\"entry_trashed\":false,\"content\":\"dfgsdfgs\"},{\"id\":5,\"user_id\":24954,\"entry_id\":1,\"alert_id\":1,\"entry_trashed\":false,\"content\":\"dfgsdfgs\"}]}"}],"_postman_id":"7744c8a5-f9dc-4646-88c7-c1fe3e2c1f1c"},{"name":"Create a comment","id":"83c61415-dbf2-4893-b58a-53e256bf557e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"content\" : \"creating a comment via API\"\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/comments","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>content</td>\n<td>String</td>\n<td>Comment title</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","comments"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"5b7c3518-db22-47b6-a697-163c4d5c0db9","type":"string","value":"","key":"alert_id"},{"id":"2fda3130-9f6f-4579-bb88-81b90fcd69e6","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"b5e00fd5-b80c-4503-8be3-2109f02efe4e","name":"Create a comment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"content\" : \"creating a comment via API\"\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/comments","host":["{{api_host}}"],"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","comments"],"variable":[{"key":"alert_id","value":"56555"},{"key":"entry_id","value":"307727763"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"273"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"526c278b013fe08c6075b83403d455c1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"9cb15268affd4d6d3d7eedbf586bb3a5"},{"key":"X-Runtime","value":"3.867902"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The comment was successfully added\",\n    \"comment\": {\n        \"id\": 5025,\n        \"entry_id\": 307727763,\n        \"alert_id\": 56555,\n        \"entry_trashed\": false,\n        \"content\": \"creating a comment via API\",\n        \"created_at\": \"2019-11-07T16:31:39+01:00\",\n        \"user\": {\n            \"id\": 502,\n            \"first_name\": \"Severine\",\n            \"last_name\": \"Faurax\"\n        }\n    }\n}"}],"_postman_id":"83c61415-dbf2-4893-b58a-53e256bf557e"},{"name":"Delete a comment","id":"3c312343-8d2a-46a1-ab6c-3198a405e80f","request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/comments/:comment_id","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","comments",":comment_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"7e75e347-1901-4b24-98a4-75719ddb2c63","type":"string","value":"","key":"alert_id"},{"id":"5b1b7462-5abf-49f0-b4c9-79b1a6f8a49b","type":"string","value":"","key":"entry_id"},{"id":"c9cbca4f-c813-41c4-bff8-ca9808f2108f","type":"string","value":"","key":"comment_id"}]}},"response":[{"id":"c632b3a1-edb0-4f11-a1b7-7ab63fd6cc95","name":"delete comment","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/{{api_version}}/alerts/1/entries/3307/comments/7?token={{api_key}}","host":["{{api_host}}"],"path":["{{api_version}}","alerts","1","entries","3307","comments","7"],"query":[{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"153","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 10:01:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"7a0867c9ab8de3ddfcd88885eafc534e\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"ad1bb8723a4efa76532591bbe7908c64","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.446811","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiWy92My9hbGVydHMvMTc2L3RhZ3M%2FdG9rZW49MGNlN2M2MTM0MWJlMjBkOWRkMDQwZGE0ZGYyMGYwOTA4NWQ4Yjc2MDg4YjE2NTU3Mjc3MGYzZjdhZmYxSSIQX2NzcmZfdG9rZW4GOwBGSSIxNHYxT0M0UmVZdXVhMVRLMWYvSkdDTEdzdjJkYVVVa1dHdHhGMi83dGM5UT0GOwBG--6cebdc4340d362d7662a4d2c78a920cce6747548","key":"_alerti_session"}],"responseTime":null,"body":"{\n\t\"message\":\"Comment was successfully deleted\",\n\t\"comment\":{\n\t\t\"id\":7,\n\t\t\"user_id\":24954,\n\t\t\"entry_id\":3307,\n\t\t\"alert_id\":1,\n\t\t\"entry_trashed\":false,\n\t\t\"content\":\"test_001\"\n\t}\n}"}],"_postman_id":"3c312343-8d2a-46a1-ab6c-3198a405e80f"}],"id":"5bc122f2-bb72-4cec-9330-d7a4d80ed3ca","description":"<p>Alert Comments</p>\n","_postman_id":"5bc122f2-bb72-4cec-9330-d7a4d80ed3ca"},{"name":"Replies","item":[{"name":"Get replies for an entry","id":"6fb10b57-7b79-4fc7-8a71-693e14e2ce8c","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/replies","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","replies"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"b7c64df9-0d62-44b6-bfe7-0fb69f607445","type":"string","value":"","key":"alert_id"},{"id":"61a9b3b5-3371-4476-92ff-d98b2ead83fd","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"6fb10b57-7b79-4fc7-8a71-693e14e2ce8c"}],"id":"c1739f5e-adc3-43cc-9e6d-a45f19291fab","event":[{"listen":"prerequest","script":{"id":"a8db74f0-c130-41ec-8db2-da7197c6f800","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6260b184-8dc2-4d37-bb43-c7f7a62c6501","type":"text/javascript","exec":[""]}}],"_postman_id":"c1739f5e-adc3-43cc-9e6d-a45f19291fab","description":""}],"id":"ba2a0b4a-fbc7-4a5c-bc80-ab4f04c373b1","description":"<p>Entries are alert results. You can manipulate with the entries endpoints, everything related to entries.</p>\n<h3 id=\"sources\">Sources</h3>\n<p>Our search engine search on different sources of the web, so an entry comes from a particular source. \nYou will need the info below about sources to understand it better. \nYou also have to know that for sometimes, we group sources together for statistics, graphs, etc..\nSo a group of sources can contains several sources.</p>\n<p>All sources are described as:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>SOURCES_NAMES = {\n  1 =&gt; 'blogs',\n  2 =&gt; 'news',\n  10 =&gt; 'forums',\n  11 =&gt; 'google_forums',\n  20 =&gt; 'twitter',\n  30 =&gt; 'videos',\n  31 =&gt; 'instagram_videos',\n  40 =&gt; 'images',\n  41 =&gt; 'instagram',\n  50 =&gt; 'facebook',\n  60 =&gt; 'facebook_comments',\n  70 =&gt; 'google_plus',\n  119 =&gt; 'friendfeed',\n  120 =&gt; 'bing',\n  121 =&gt; 'yahoo'\n}\n</code></pre><p>and all group of sources are these ones:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>SOURCES_GROUPS_NUMS = {\n 'stories' =&gt; [1, 2],\n 'blogs' =&gt; [1],\n 'news' =&gt; [2],\n 'comments' =&gt; [10, 11],\n 'updates' =&gt; [20],\n 'gr_videos' =&gt; [30, 31],\n 'gr_images' =&gt; [40, 41],\n 'web' =&gt; [120],\n 'social_network' =&gt; [50],\n 'facebook_comments' =&gt; [60],\n 'google_plus' =&gt; [70],\n 'noweb' =&gt; [1, 2, 10, 20, 30, 31, 40, 41, 50, 60, 70],\n '0' =&gt; [1, 2, 10, 20, 30, 31, 40, 41, 50, 60, 70, 120, 121]\n}\n</code></pre><h3 id=\"qualification\">Qualification</h3>\n<p>This refers to the result given by our sentiment analysis algorithm. Each entry is given a note depending on the sentiment the text is felt.\nthey are given by the API as number and the lookup table for understand these number is below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  :positive =&gt; 9,\n  :negative =&gt; 1,\n  :neutral  =&gt; 5,\n  :unknown  =&gt; 5\n}\n</code></pre>","_postman_id":"ba2a0b4a-fbc7-4a5c-bc80-ab4f04c373b1"},{"name":"Graphs","item":[{"name":"Get list of graphs for an alert","id":"d657bdd4-e152-412d-911f-67253e8bc8cb","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/graphs?alert_id=56298","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert id</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","graphs"],"host":["{{api_host}}"],"query":[{"key":"alert_id","value":"56298"},{"key":null,"value":""}],"variable":[]}},"response":[{"id":"1011bc1a-5886-4425-81f0-735e871dd6fc","name":"Get list of graphs for an alert","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/graphs?alert_id=56298","host":["{{api_host}}"],"path":["{{api_version}}","graphs"],"query":[{"key":"alert_id","value":"56298"},{"key":null,"value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"3945"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"7c09db94e6157aa97edc9486fd2c67d4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"1b8a0f90fe8a63dbb4ab8d9a6fe47ea3"},{"key":"X-Runtime","value":"3.277695"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"alert_id\": 56298,\n    \"graphs\": [\n        {\n            \"id\": 254660,\n            \"name\": \"Nombre de mentions par date\",\n            \"period\": \"this_month\",\n            \"graph_type\": 3,\n            \"friendly_graph_type\": \"column\",\n            \"group_by\": \"day\",\n            \"position\": 32767,\n            \"user_id\": 520,\n            \"auto_generated\": true,\n            \"generated_at\": \"2019-11-04T14:55:56+01:00\",\n            \"header_color\": \"#c418e8\",\n            \"from_date\": \"2019-11-01\",\n            \"to_date\": \"2019-11-04\",\n            \"series_count\": 1,\n            \"is_admin\": false,\n            \"xAxis\": [\n                \"2019-11-01\",\n                \"2019-11-02\",\n                \"2019-11-03\",\n                \"2019-11-04\"\n            ],\n            \"series\": [\n                {\n                    \"id\": 927120,\n                    \"name\": \"Test - alerti 18.11.18 - Toutes les sources - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"-facebook_comments\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#f7ccfe\",\n                    \"has_result\": false,\n                    \"checked\": true,\n                    \"data\": [\n                        \"12\",\n                        \"4\",\n                        \"5\",\n                        \"3\"\n                    ]\n                }\n            ],\n            \"unchecked_series\": [],\n            \"current_user_permissions\": {\n                \"update\": false,\n                \"destroy\": false\n            }\n        },\n        {\n            \"id\": 254661,\n            \"name\": \"Tonalité des résultats\",\n            \"period\": \"this_month\",\n            \"graph_type\": 2,\n            \"friendly_graph_type\": \"pie\",\n            \"group_by\": \"day\",\n            \"position\": 32767,\n            \"user_id\": 520,\n            \"auto_generated\": true,\n            \"generated_at\": \"2019-11-04T14:55:56+01:00\",\n            \"header_color\": \"#00a99d\",\n            \"from_date\": \"2019-11-01\",\n            \"to_date\": \"2019-11-04\",\n            \"series_count\": 3,\n            \"is_admin\": false,\n            \"series\": [\n                {\n                    \"id\": 927121,\n                    \"name\": \"Test - alerti 18.11.18 - Toutes les sources - Positifs\",\n                    \"alert_id\": 56298,\n                    \"source\": \"-facebook_comments\",\n                    \"qualification\": 9,\n                    \"lang\": null,\n                    \"color\": \"#0faea3\",\n                    \"has_result\": true,\n                    \"checked\": true,\n                    \"data\": \"2\"\n                },\n                {\n                    \"id\": 927122,\n                    \"name\": \"Test - alerti 18.11.18 - Toutes les sources - Neutres\",\n                    \"alert_id\": 56298,\n                    \"source\": \"-facebook_comments\",\n                    \"qualification\": 5,\n                    \"lang\": null,\n                    \"color\": \"#cab79f\",\n                    \"has_result\": true,\n                    \"checked\": true,\n                    \"data\": \"20\"\n                },\n                {\n                    \"id\": 927123,\n                    \"name\": \"Test - alerti 18.11.18 - Toutes les sources - Négatifs\",\n                    \"alert_id\": 56298,\n                    \"source\": \"-facebook_comments\",\n                    \"qualification\": 1,\n                    \"lang\": null,\n                    \"color\": \"#f05d5a\",\n                    \"has_result\": true,\n                    \"checked\": true,\n                    \"data\": \"2\"\n                }\n            ],\n            \"unchecked_series\": [],\n            \"current_user_permissions\": {\n                \"update\": false,\n                \"destroy\": false\n            }\n        },\n        {\n            \"id\": 254662,\n            \"name\": \"Répartition par source\",\n            \"period\": \"this_month\",\n            \"graph_type\": 2,\n            \"friendly_graph_type\": \"pie\",\n            \"group_by\": \"day\",\n            \"position\": 32767,\n            \"user_id\": 520,\n            \"auto_generated\": true,\n            \"generated_at\": \"2019-11-04T14:55:56+01:00\",\n            \"header_color\": \"#04bcec\",\n            \"from_date\": \"2019-11-01\",\n            \"to_date\": \"2019-11-04\",\n            \"series_count\": 8,\n            \"is_admin\": false,\n            \"series\": [\n                {\n                    \"id\": 927124,\n                    \"name\": \"Test - alerti 18.11.18 - Blogs - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"blogs\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#ff9100\",\n                    \"has_result\": false,\n                    \"checked\": true,\n                    \"data\": \"0\"\n                },\n                {\n                    \"id\": 927125,\n                    \"name\": \"Test - alerti 18.11.18 - Twitter - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"updates\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#28aae1\",\n                    \"has_result\": true,\n                    \"checked\": true,\n                    \"data\": \"15\"\n                },\n                {\n                    \"id\": 927126,\n                    \"name\": \"Test - alerti 18.11.18 - News - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"news\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#f44336\",\n                    \"has_result\": false,\n                    \"checked\": true,\n                    \"data\": \"0\"\n                },\n                {\n                    \"id\": 927127,\n                    \"name\": \"Test - alerti 18.11.18 - Forums - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"comments\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#afb42b\",\n                    \"has_result\": false,\n                    \"checked\": true,\n                    \"data\": \"0\"\n                },\n                {\n                    \"id\": 927128,\n                    \"name\": \"Test - alerti 18.11.18 - Vidéos - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"gr_videos\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#d32f2f\",\n                    \"has_result\": false,\n                    \"checked\": true,\n                    \"data\": \"0\"\n                },\n                {\n                    \"id\": 927129,\n                    \"name\": \"Test - alerti 18.11.18 - Images - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"gr_images\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#00bfa5\",\n                    \"has_result\": false,\n                    \"checked\": true,\n                    \"data\": \"0\"\n                },\n                {\n                    \"id\": 927130,\n                    \"name\": \"Test - alerti 18.11.18 - Web - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"web\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#94a4ff\",\n                    \"has_result\": true,\n                    \"checked\": true,\n                    \"data\": \"9\"\n                },\n                {\n                    \"id\": 927131,\n                    \"name\": \"Test - alerti 18.11.18 - Facebook - Tous les résultats\",\n                    \"alert_id\": 56298,\n                    \"source\": \"social_network\",\n                    \"qualification\": null,\n                    \"lang\": null,\n                    \"color\": \"#3b5a97\",\n                    \"has_result\": false,\n                    \"checked\": true,\n                    \"data\": \"0\"\n                }\n            ],\n            \"unchecked_series\": [],\n            \"current_user_permissions\": {\n                \"update\": false,\n                \"destroy\": false\n            }\n        }\n    ]\n}"}],"_postman_id":"d657bdd4-e152-412d-911f-67253e8bc8cb"},{"name":"Regenerate graph","id":"56642745-6ad8-470d-8b55-d5163e45e746","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/graphs/:graph_id/refresh","urlObject":{"path":["{{api_version}}","graphs",":graph_id","refresh"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"049997c4-b1ad-4800-94da-cfdabd0ba080","type":"string","value":"","key":"graph_id"}]}},"response":[],"_postman_id":"56642745-6ad8-470d-8b55-d5163e45e746"},{"name":"Get or download graph info","id":"66a1ecf0-92f4-4f89-b1ec-b86e333bcfd6","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/graphs/:graph_id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","graphs",":graph_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"b5e32010-9260-4c8d-b9d8-7aba65a4d4be","type":"string","value":"","key":"graph_id"}]}},"response":[{"id":"5e7570b4-f413-457a-b742-3026aec63c4e","name":"Get or download graph info","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/graphs/:graph_id","host":["{{api_host}}"],"path":["{{api_version}}","graphs",":graph_id"],"variable":[{"key":"graph_id","value":"254660"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"740"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"fb89b5592e72e1cdc3f00a2f228f9069\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"b53e0a83bc69c18b97e0977529bbe6e4"},{"key":"X-Runtime","value":"1.204674"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 254660,\n    \"name\": \"Nombre de mentions par date\",\n    \"period\": \"this_month\",\n    \"graph_type\": 3,\n    \"friendly_graph_type\": \"column\",\n    \"group_by\": \"day\",\n    \"position\": 32767,\n    \"user_id\": 520,\n    \"auto_generated\": true,\n    \"generated_at\": \"2019-11-04T14:55:56+01:00\",\n    \"header_color\": \"#c418e8\",\n    \"from_date\": \"2019-11-01\",\n    \"to_date\": \"2019-11-04\",\n    \"series_count\": 1,\n    \"is_admin\": false,\n    \"xAxis\": [\n        \"2019-11-01\",\n        \"2019-11-02\",\n        \"2019-11-03\",\n        \"2019-11-04\"\n    ],\n    \"series\": [\n        {\n            \"id\": 927120,\n            \"name\": \"Test - alerti 18.11.18 - Toutes les sources - Tous les résultats\",\n            \"alert_id\": 56298,\n            \"source\": \"-facebook_comments\",\n            \"qualification\": null,\n            \"lang\": null,\n            \"color\": \"#f7ccfe\",\n            \"has_result\": false,\n            \"checked\": true,\n            \"data\": [\n                \"12\",\n                \"4\",\n                \"5\",\n                \"3\"\n            ]\n        }\n    ],\n    \"unchecked_series\": [],\n    \"current_user_permissions\": {\n        \"update\": false,\n        \"destroy\": false\n    }\n}"}],"_postman_id":"66a1ecf0-92f4-4f89-b1ec-b86e333bcfd6"},{"name":"Create a graph","id":"bdefb18a-ec55-4aaf-adb7-439bbc027880","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"graph\":{\n        \"name\":\"mar_graph02\", \n        \"graph_type\":\"1\",\n        \"group_by\":\"day\",\n        \"period\":\"this_week\",\n        \"header_color\": \"#616161\"\n    },\n    \"series\":[\n       {\n          \"alert_id\":\"56298\",\n            \"source\":\"updates\",\n            \"qualification\":\"\",\n            \"color\":\"#EEEEEE\"\n        }  \n    ]\n}"},"url":"{{api_host}}/{{api_version}}/graphs","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>graph</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[name]</td>\n<td>String</td>\n<td>Graph name</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[graph_type]</td>\n<td>Integer</td>\n<td>Graph type, choose from line chart, pie graph, bar chart: {1=&gt;:line, 2=&gt;:pie, 3=&gt;:column}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code></td>\n</tr>\n<tr>\n<td>graph[group_by]</td>\n<td>String</td>\n<td>Graph aggregation unit, if graph is of type line or pie, it defaults to 'day'.</td>\n<td>optional</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>month</code>, <code>none</code></td>\n</tr>\n<tr>\n<td>graph[period]</td>\n<td>String</td>\n<td>Total period for presenting data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>yesterday</code>, <code>this_week</code>, <code>last_seven_days</code>, <code>last_week</code>, <code>this_month</code>, <code>last_month</code>, <code>last_thirty_days</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>graph[header_color]</td>\n<td>String</td>\n<td>Hexadecimal header color, ex: #EEEEEE</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[from_date]</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[to_date]</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>series</td>\n<td>Array</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>series[alert_id]</td>\n<td>Integer</td>\n<td>Alert id, leave empty for all alerts</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>series[source]</td>\n<td>String</td>\n<td>Alert source, leave empty for all sources</td>\n<td>optional</td>\n<td>-</td>\n<td>``, <code>-facebook_comments</code>, <code>news</code>, <code>blogs</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>web</code>, <code>social_network</code>, <code>google_plus</code>, <code>facebook_comments</code>, <code>instagram_business</code>, <code>instagram_accounts</code></td>\n</tr>\n<tr>\n<td>series[qualification]</td>\n<td>Integer</td>\n<td>Alert qualification, leave empty for all qualtifications, possible values: {7=&gt;\"unread\", 6=&gt;\"read\", 10=&gt;\"qualified\", 8=&gt;\"unqualified\", 9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\", 3=&gt;\"question\", 4=&gt;\"suggestion\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>7</code>, <code>6</code>, <code>10</code>, <code>8</code>, <code>9</code>, <code>5</code>, <code>1</code>, <code>3</code>, <code>4</code></td>\n</tr>\n<tr>\n<td>series[checked]</td>\n<td>Boolean</td>\n<td>Hide/display the series, displayed by default</td>\n<td>optional</td>\n<td><code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>series[color]</td>\n<td>String</td>\n<td>Hexadecimal series color, ex: #EEEEEE</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","graphs"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"d00feb8a-0d13-4642-8868-0f1db8053caa","name":"Create a graph","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"graph\":{\n        \"name\":\"mar_graph02\", \n        \"graph_type\":\"1\",\n        \"group_by\":\"day\",\n        \"period\":\"this_week\",\n        \"header_color\": \"#616161\"\n    },\n    \"series\":[\n       {\n          \"alert_id\":\"56298\",\n            \"source\":\"updates\",\n            \"qualification\":\"\",\n            \"color\":\"#EEEEEE\"\n        }  \n    ]\n}"},"url":"{{api_host}}/{{api_version}}/graphs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"692"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"40f36a1c87545d21d057b95b53b76a86\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"edb9ec551386b5aede34f03a4ec86608"},{"key":"X-Runtime","value":"7.401671"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Le graphe a bien été enregistré\",\n    \"id\": 256824,\n    \"name\": \"mar_graph02\",\n    \"period\": \"this_week\",\n    \"graph_type\": 1,\n    \"friendly_graph_type\": \"line\",\n    \"group_by\": \"day\",\n    \"position\": 32767,\n    \"user_id\": 502,\n    \"auto_generated\": false,\n    \"generated_at\": \"2019-11-04T15:00:01+01:00\",\n    \"header_color\": \"#616161\",\n    \"from_date\": \"2019-11-04\",\n    \"to_date\": \"2019-11-04\",\n    \"series_count\": 1,\n    \"is_admin\": true,\n    \"xAxis\": [\n        \"2019-11-04\"\n    ],\n    \"series\": [\n        {\n            \"id\": 933155,\n            \"name\": \"Test - alerti 18.11.18 - Twitter - Tous les résultats\",\n            \"alert_id\": 56298,\n            \"source\": \"updates\",\n            \"qualification\": null,\n            \"lang\": null,\n            \"color\": \"#EEEEEE\",\n            \"has_result\": false,\n            \"checked\": true,\n            \"data\": [\n                \"3\"\n            ]\n        }\n    ],\n    \"unchecked_series\": [],\n    \"current_user_permissions\": {\n        \"update\": true,\n        \"destroy\": true\n    }\n}"}],"_postman_id":"bdefb18a-ec55-4aaf-adb7-439bbc027880"},{"name":"Save graphs ordering","id":"a80bf5f6-e465-4908-afc2-d4419a14ef9d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"reports_list\":[723, 724, 725]\n}\n"},"url":"{{api_host}}/{{api_version}}/graphs/sort","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reports_list</td>\n<td>[Integer]</td>\n<td>graphs ids</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","graphs","sort"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a80bf5f6-e465-4908-afc2-d4419a14ef9d"},{"name":"Add a series to a graph","id":"97ec0760-01da-436a-a8a7-bc9be69731fe","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"alert_id\": 56298,\n    \"color\": \"#580f0f\",\n    \"source\": \"news\",\n    \"qualification\": \"5\",\n    \"checked\": true\n}"},"url":"{{api_host}}/{{api_version}}/graphs/:graph_id/series","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert id, leave empty for all alerts</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>source</td>\n<td>String</td>\n<td>Alert source, leave empty for all sources</td>\n<td>optional</td>\n<td>-</td>\n<td>``, <code>-facebook_comments</code>, <code>news</code>, <code>blogs</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>web</code>, <code>social_network</code>, <code>google_plus</code>, <code>facebook_comments</code>, <code>instagram_business</code>, <code>instagram_accounts</code></td>\n</tr>\n<tr>\n<td>qualification</td>\n<td>Integer</td>\n<td>Alert qualification, leave empty for all qualtifications, possible values: {7=&gt;\"unread\", 6=&gt;\"read\", 10=&gt;\"qualified\", 8=&gt;\"unqualified\", 9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\", 3=&gt;\"question\", 4=&gt;\"suggestion\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>7</code>, <code>6</code>, <code>10</code>, <code>8</code>, <code>9</code>, <code>5</code>, <code>1</code>, <code>3</code>, <code>4</code></td>\n</tr>\n<tr>\n<td>checked</td>\n<td>Boolean</td>\n<td>Hide/display the series, displayed by default</td>\n<td>optional</td>\n<td><code>true</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>color</td>\n<td>String</td>\n<td>Hexadecimal series color, ex: #EEEEEE</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","graphs",":graph_id","series"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"291e427d-9a84-424a-8560-6b68d08f3ae6","type":"string","value":"","key":"graph_id"}]}},"response":[{"id":"a0af1d15-186d-4ac5-a6dd-2ff449b45113","name":"Add a series to a graph","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"alert_id\": 56298,\n    \"color\": \"#580f0f\",\n    \"source\": \"news\",\n    \"qualification\": \"5\",\n    \"checked\": true\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/graphs/:graph_id/series","host":["{{api_host}}"],"path":["{{api_version}}","graphs",":graph_id","series"],"variable":[{"key":"graph_id","value":"256824"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"233"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"f4266225c5bfff94b341edec65cdb713\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"cd2afc27c5ff53cf7ea8658c48617b2a"},{"key":"X-Runtime","value":"4.923906"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"series\": {\n        \"id\": 933156,\n        \"name\": \"Test - alerti 18.11.18 - News - Neutres\",\n        \"alert_id\": 56298,\n        \"source\": \"news\",\n        \"qualification\": 5,\n        \"lang\": null,\n        \"color\": \"#580f0f\",\n        \"has_result\": false,\n        \"checked\": true\n    },\n    \"message\": \"Les données ont été ajoutées\"\n}"}],"_postman_id":"97ec0760-01da-436a-a8a7-bc9be69731fe"},{"name":"Update a graph","id":"75cb50f0-579d-4649-9e86-27ff66112cf5","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"graph\":{\n      \"graph_type\":2,\n      \"group_by\":\"day\",\n      \"name\":\"new grah name\",\n      \"period\":\"this_month\"\n    }\n}"},"url":"{{api_host}}/{{api_version}}/graphs/:graph_id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>graph</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[name]</td>\n<td>String</td>\n<td>Graph name</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[graph_type]</td>\n<td>Integer</td>\n<td>Graph type, choose from line chart, pie graph, bar chart: {1=&gt;:line, 2=&gt;:pie, 3=&gt;:column}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code></td>\n</tr>\n<tr>\n<td>graph[group_by]</td>\n<td>String</td>\n<td>Graph aggregation unit, if graph is of type line or pie, it defaults to 'day'.</td>\n<td>optional</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>month</code>, <code>none</code></td>\n</tr>\n<tr>\n<td>graph[period]</td>\n<td>String</td>\n<td>Total period for presenting data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>yesterday</code>, <code>this_week</code>, <code>last_seven_days</code>, <code>last_week</code>, <code>this_month</code>, <code>last_month</code>, <code>last_thirty_days</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>graph[header_color]</td>\n<td>String</td>\n<td>Hexadecimal header color, ex: #EEEEEE</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[from_date]</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>graph[to_date]</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","graphs",":graph_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"cc997ee3-4aa8-49f9-a629-d41f0e145dfb","type":"string","value":"","key":"graph_id"}]}},"response":[{"id":"8bc797ea-da86-4b01-8e13-86d78d381809","name":"Update a graph","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"graph\":{\n      \"graph_type\":2,\n      \"group_by\":\"day\",\n      \"name\":\"new grah name\",\n      \"period\":\"this_month\"\n    }\n}"},"url":{"raw":"{{api_host}}/{{api_version}}/graphs/:graph_id","host":["{{api_host}}"],"path":["{{api_version}}","graphs",":graph_id"],"variable":[{"key":"graph_id","value":"256824"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"124"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"b817b8b0e28302c4700e112f0c4475da\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"604254c84c4dca4e39030d371c40a012"},{"key":"X-Runtime","value":"6.880268"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Le graphe a bien été mis à jour\",\n    \"graph\": {\n        \"id\": 256824,\n        \"name\": \"new grah name\",\n        \"graph_type\": 2,\n        \"is_admin\": true\n    }\n}"}],"_postman_id":"75cb50f0-579d-4649-9e86-27ff66112cf5"},{"name":"Update a series","id":"e5924f2d-85b2-4559-83fd-363883db0519","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"checked\": false,\n      \"alert_id\": 55011,\n      \"source\": \"-facebook_comments\",\n      \"qualification\": 9,\n      \"color\": \"#0faea3\"\n}"},"url":"{{api_host}}/{{api_version}}/graphs/:graph_id/series/:id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Integer</td>\n<td>Series id</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>color</td>\n<td>String</td>\n<td>Hexadecimal series color</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert id, leave empty for all alerts</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>source</td>\n<td>String</td>\n<td>Alert source, leave empty for all sources</td>\n<td>optional</td>\n<td>-</td>\n<td>``, <code>-facebook_comments</code>, <code>news</code>, <code>blogs</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>web</code>, <code>social_network</code>, <code>google_plus</code>, <code>facebook_comments</code>, <code>instagram_business</code>, <code>instagram_accounts</code></td>\n</tr>\n<tr>\n<td>qualification</td>\n<td>Integer</td>\n<td>Alert qualification, leave empty for all qualtifications, possible values: {7=&gt;\"unread\", 6=&gt;\"read\", 10=&gt;\"qualified\", 8=&gt;\"unqualified\", 9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\", 3=&gt;\"question\", 4=&gt;\"suggestion\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>7</code>, <code>6</code>, <code>10</code>, <code>8</code>, <code>9</code>, <code>5</code>, <code>1</code>, <code>3</code>, <code>4</code></td>\n</tr>\n<tr>\n<td>checked</td>\n<td>Boolean</td>\n<td>Hide/display the series, displayed by default</td>\n<td>optional</td>\n<td><code>true</code></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","graphs",":graph_id","series",":id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"3da8bcfd-96de-46e1-8740-83c855e04c8f","type":"string","value":"","key":"graph_id"},{"id":"09ef31c9-9379-4d83-acd9-b075baf5fd51","type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"e5924f2d-85b2-4559-83fd-363883db0519"},{"name":"Delete a graph","id":"b40e6524-c6f8-4438-8121-6f7c4fa616d9","request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/graphs/:graph_id","description":"<p>Delete a series on an existing graph. When deleting the last series on a graph, it will also delete the graph entirely.</p>\n","urlObject":{"path":["{{api_version}}","graphs",":graph_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"7db92fbb-859b-45e9-a948-913659430e77","type":"string","value":"","key":"graph_id"}]}},"response":[{"id":"031ebc63-58fe-400f-ad72-3938de146a67","name":"Delete a graph","originalRequest":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/{{api_version}}/graphs/:graph_id","host":["{{api_host}}"],"path":["{{api_version}}","graphs",":graph_id"],"variable":[{"key":"graph_id","value":"256824"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"41"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"bdb1b2835c6c33747ccda7dcf1b98d6a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"1826f59caa47e174956dec48c76ab063"},{"key":"X-Runtime","value":"2.748843"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Le graphe a été supprimé\"\n}"}],"_postman_id":"b40e6524-c6f8-4438-8121-6f7c4fa616d9"},{"name":"Delete a series from a graph","id":"bfd78eba-1034-42d3-a398-140ef9e0298e","request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/graphs/:graph_id/series/:id","urlObject":{"path":["{{api_version}}","graphs",":graph_id","series",":id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"2a2615fe-49f2-41e1-af32-0917ab302884","type":"string","value":"","key":"graph_id"},{"id":"946d8379-1e97-4667-b118-e765cc5c5c7f","type":"string","value":"","key":"id"}]}},"response":[{"id":"c111ade9-8d5d-4464-b2f3-cdcc3a324807","name":"Delete a series from a graph","originalRequest":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/{{api_version}}/graphs/:graph_id/series/:id","host":["{{api_host}}"],"path":["{{api_version}}","graphs",":graph_id","series",":id"],"variable":[{"key":"graph_id","value":"256824"},{"key":"id","value":"933156"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"228"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"e9ebbccbda8361cccc6a297f79405f71\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"431c06a0e97570275992d27291fa9f64"},{"key":"X-Runtime","value":"4.761438"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"series\": {\n        \"id\": 933156,\n        \"name\": \"Test - alerti 18.11.18 - News - Neutres\",\n        \"alert_id\": 56298,\n        \"source\": \"news\",\n        \"qualification\": 5,\n        \"lang\": null,\n        \"color\": \"#580f0f\",\n        \"has_result\": false,\n        \"checked\": true\n    },\n    \"message\": \"Le graphe a été supprimé\"\n}"}],"_postman_id":"bfd78eba-1034-42d3-a398-140ef9e0298e"}],"id":"92f47986-4f98-4666-a51a-fa72f1b5e73c","description":"<p>A graph is composed of several series. There are 3 different types of graphs : bar charts, line charts and pie charts. The code is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GRAPH_TYPE_LOOKUP = {\n  '1': 'Line Chart',\n  '2': 'Pie Chart',\n    '3': 'Bar Chart'\n}\n</code></pre><p>A graph can either display one alert's data or compare various alerts. All depends on the alert associated to a series. A series represents an alert, and the data can be filtered by source or sentiment (entries's rating)</p>\n","event":[{"listen":"prerequest","script":{"id":"cbfab2f6-399f-4588-9f2f-72a9a4ff8fb4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"648fa90e-0ecb-4091-be1d-00b11d5135a1","type":"text/javascript","exec":[""]}}],"_postman_id":"92f47986-4f98-4666-a51a-fa72f1b5e73c"},{"name":"Facebook","item":[{"name":"Facebook Account","item":[{"name":"Get list of facebook accounts","id":"39157490-bd99-4a40-a642-d280f6bc5f2c","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/accounts","urlObject":{"path":["{{api_version}}","facebook","accounts"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"9052b327-da7e-4f44-9328-619852bf9d14","name":"Get list of facebook accounts","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/facebook/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2856"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"1fafe65d2017387a5150a3cc359ff2c3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"43c3da89f35f8b474045eabdfdae7121"},{"key":"X-Runtime","value":"2.283025"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"facebook_accounts\": [\n        {\n            \"id\": 824,\n            \"facebook_id\": \"10152944437151130\",\n            \"is_valid\": true,\n            \"mark_as_deleted\": false,\n            \"expire_at\": \"2019-12-17T19:22:39+01:00\",\n            \"invalid_at\": null,\n            \"later_at\": null,\n            \"first_name\": \"Severine\",\n            \"last_name\": \"Faurax\",\n            \"scopes\": [\n                \"user_friends\",\n                \"email\",\n                \"read_insights\",\n                \"manage_pages\",\n                \"pages_show_list\",\n                \"publish_pages\",\n                \"business_management\",\n                \"instagram_basic\",\n                \"instagram_manage_comments\",\n                \"instagram_manage_insights\",\n                \"public_profile\"\n            ],\n            \"avatar_url\": \"https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=10152944437151130&height=100&width=100&ext=1575619321&hash=AeTKoy88AxOfaYr2\",\n            \"expiring_soon\": false,\n            \"postpone_update\": false\n        }\n    ]\n}"}],"_postman_id":"39157490-bd99-4a40-a642-d280f6bc5f2c"}],"id":"e6517d0f-ff9b-42b5-916f-d6560136c5e4","_postman_id":"e6517d0f-ff9b-42b5-916f-d6560136c5e4","description":""},{"name":"Facebook Fan Pages","item":[{"name":"Get list of facebook fan pages","id":"fe05ea74-02f1-4aa0-a030-972d32de30e6","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages?include_shared_pages=true&include_instagram_business_accounts=true&alert_id=56447","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>from_collaborators</td>\n<td>Boolean</td>\n<td>Only facebook fan pages added to the alert by collaborators</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>load_from_facebook</td>\n<td>Boolean</td>\n<td>Reload fan pages from facebook api</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>include_instagram_business_accounts</td>\n<td>Boolean</td>\n<td>Include Instagram business account infos</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages"],"host":["{{api_host}}"],"query":[{"key":"include_shared_pages","value":"true"},{"key":"include_instagram_business_accounts","value":"true"},{"key":"alert_id","value":"56447"}],"variable":[]}},"response":[{"id":"ff142eee-d9c6-4c81-b107-48e64b8f38a0","name":"Get list of facebook fan pages","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages?include_shared_pages=true&include_instagram_business_accounts=true&alert_id=56447","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages"],"query":[{"key":"include_shared_pages","value":"true"},{"key":"include_instagram_business_accounts","value":"true"},{"key":"alert_id","value":"56447"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2259"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"966f8cb17419623a0ee204f78e3830a0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"c25f0b93ef789813746afc760e7f1338"},{"key":"X-Runtime","value":"2.339373"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"fan_pages\": [\n        {\n            \"id\": 3478,\n            \"alert_id\": 56447,\n            \"name\": \"alerti\",\n            \"url\": \"https://www.facebook.com/alerti\",\n            \"facebook_account_id\": 824,\n            \"page_id\": \"175329223140\",\n            \"category\": null,\n            \"fans_count\": 2860,\n            \"picture\": \"https://scontent.xx.fbcdn.net/v/t1.0-1/p100x100/37068123_10156181497638141_5208892716900941824_n.png?_nc_cat=106&_nc_oc=AQk0Y_8EJ2Z-KVB7NN_6wrxdZAAlJ3R72aFQlsldkUJJgr0RvP_bGENuo3aVS5kefS4&_nc_ht=scontent.xx&oh=673e8ffdd9f93a1e114ca81f48d82f65&oe=5E5A26FA\",\n            \"facebook_account_is_valid\": true,\n            \"facebook_account\": {\n                \"id\": 824,\n                \"scopes\": [\n                    \"user_friends\",\n                    \"email\",\n                    \"read_insights\",\n                    \"manage_pages\",\n                    \"pages_show_list\",\n                    \"publish_pages\",\n                    \"business_management\",\n                    \"instagram_basic\",\n                    \"instagram_manage_comments\",\n                    \"instagram_manage_insights\",\n                    \"public_profile\"\n                ],\n                \"first_name\": \"Severine\",\n                \"last_name\": \"Faurax\"\n            },\n            \"last_stats\": {\n                \"refreshed_at\": \"2019-11-05T09:12:33+01:00\",\n                \"fans_total\": \"2019-11-05T09:00:00+01:00\",\n                \"fans_total_demography\": \"2019-11-04T09:00:00+01:00\",\n                \"fans_delta\": \"2019-11-05T09:00:00+01:00\",\n                \"fans_delta_demography\": \"2019-11-04T09:00:00+01:00\",\n                \"engaged_users\": \"2019-11-05T09:00:00+01:00\",\n                \"reached_users\": \"2019-11-05T09:00:00+01:00\",\n                \"reached_users_demography\": \"2019-09-18T09:00:00+02:00\",\n                \"total_reached_users\": \"2019-11-05T09:00:00+01:00\",\n                \"engagement_ratio\": \"2019-11-05T09:00:00+01:00\",\n                \"typology\": \"2019-11-01T08:00:00+01:00\",\n                \"engagement\": \"2019-11-05T09:00:00+01:00\",\n                \"posts_interaction_ratio\": \"2019-11-05T09:00:00+01:00\",\n                \"top_posts\": \"2019-11-06T07:51:53+01:00\",\n                \"top_fans\": \"2019-11-06T09:05:04+01:00\",\n                \"last_negative_feedback\": \"2019-11-05T09:00:00+01:00\",\n                \"authors\": \"2019-11-06T09:05:04+01:00\",\n                \"last_30days_dashboard_at\": \"2019-11-05\"\n            },\n            \"earliest_stats\": {\n                \"fans_total\": \"2019-01-16T09:00:00+01:00\",\n                \"fans_total_demography\": \"2019-02-06T09:00:00+01:00\",\n                \"fans_delta\": \"2019-01-16T09:00:00+01:00\",\n                \"fans_delta_demography\": \"2019-02-06T09:00:00+01:00\",\n                \"engaged_users\": \"2019-02-06T09:00:00+01:00\",\n                \"reached_users\": \"2019-02-06T09:00:00+01:00\",\n                \"reached_users_demography\": \"2019-02-26T09:00:00+01:00\",\n                \"total_reached_users\": \"2019-02-06T09:00:00+01:00\",\n                \"engagement_ratio\": \"2019-02-06T09:00:00+01:00\",\n                \"typology\": \"2018-10-22T02:00:00+02:00\",\n                \"engagement\": \"2018-10-18T02:00:00+02:00\",\n                \"posts_interaction_ratio\": \"2019-01-16T09:00:00+01:00\",\n                \"last_negative_feedback\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"load_fan_page_user\": false\n        }\n    ]\n}"}],"_postman_id":"fe05ea74-02f1-4aa0-a030-972d32de30e6"},{"name":"Get facebook fan page infos","id":"6ca7d317-8e3d-4c25-8b06-0e528a4ff475","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"708f4353-89f0-4825-bcca-ba3b921aa707","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"9a67a1f2-0716-4303-9085-afefbc7ae7aa","name":"Get facebook fan page infos","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id"],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2216"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"95fc6828f7f2bd2d33099d872baa50c4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"a687af46a9d951d1331859ebcc1066db"},{"key":"X-Runtime","value":"1.861705"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3478,\n    \"alert_id\": 56447,\n    \"name\": \"alerti\",\n    \"url\": \"https://www.facebook.com/alerti\",\n    \"facebook_account_id\": 824,\n    \"page_id\": \"175329223140\",\n    \"category\": null,\n    \"fans_count\": 2860,\n    \"picture\": \"https://scontent.xx.fbcdn.net/v/t1.0-1/p100x100/37068123_10156181497638141_5208892716900941824_n.png?_nc_cat=106&_nc_oc=AQk0Y_8EJ2Z-KVB7NN_6wrxdZAAlJ3R72aFQlsldkUJJgr0RvP_bGENuo3aVS5kefS4&_nc_ht=scontent.xx&oh=673e8ffdd9f93a1e114ca81f48d82f65&oe=5E5A26FA\",\n    \"facebook_account_is_valid\": true,\n    \"facebook_account\": {\n        \"id\": 824,\n        \"scopes\": [\n            \"user_friends\",\n            \"email\",\n            \"read_insights\",\n            \"manage_pages\",\n            \"pages_show_list\",\n            \"publish_pages\",\n            \"business_management\",\n            \"instagram_basic\",\n            \"instagram_manage_comments\",\n            \"instagram_manage_insights\",\n            \"public_profile\"\n        ],\n        \"first_name\": \"Severine\",\n        \"last_name\": \"Faurax\"\n    },\n    \"last_stats\": {\n        \"refreshed_at\": \"2019-11-05T09:12:33+01:00\",\n        \"fans_total\": \"2019-11-05T09:00:00+01:00\",\n        \"fans_total_demography\": \"2019-11-04T09:00:00+01:00\",\n        \"fans_delta\": \"2019-11-05T09:00:00+01:00\",\n        \"fans_delta_demography\": \"2019-11-04T09:00:00+01:00\",\n        \"engaged_users\": \"2019-11-05T09:00:00+01:00\",\n        \"reached_users\": \"2019-11-05T09:00:00+01:00\",\n        \"reached_users_demography\": \"2019-09-18T09:00:00+02:00\",\n        \"total_reached_users\": \"2019-11-05T09:00:00+01:00\",\n        \"engagement_ratio\": \"2019-11-05T09:00:00+01:00\",\n        \"typology\": \"2019-11-01T08:00:00+01:00\",\n        \"engagement\": \"2019-11-05T09:00:00+01:00\",\n        \"posts_interaction_ratio\": \"2019-11-05T09:00:00+01:00\",\n        \"top_posts\": \"2019-11-06T07:51:53+01:00\",\n        \"top_fans\": \"2019-11-06T09:05:04+01:00\",\n        \"last_negative_feedback\": \"2019-11-05T09:00:00+01:00\",\n        \"authors\": \"2019-11-06T09:05:04+01:00\",\n        \"last_30days_dashboard_at\": \"2019-11-05\"\n    },\n    \"earliest_stats\": {\n        \"fans_total\": \"2019-01-16T09:00:00+01:00\",\n        \"fans_total_demography\": \"2019-02-06T09:00:00+01:00\",\n        \"fans_delta\": \"2019-01-16T09:00:00+01:00\",\n        \"fans_delta_demography\": \"2019-02-06T09:00:00+01:00\",\n        \"engaged_users\": \"2019-02-06T09:00:00+01:00\",\n        \"reached_users\": \"2019-02-06T09:00:00+01:00\",\n        \"reached_users_demography\": \"2019-02-26T09:00:00+01:00\",\n        \"total_reached_users\": \"2019-02-06T09:00:00+01:00\",\n        \"engagement_ratio\": \"2019-02-06T09:00:00+01:00\",\n        \"typology\": \"2018-10-22T02:00:00+02:00\",\n        \"engagement\": \"2018-10-18T02:00:00+02:00\",\n        \"posts_interaction_ratio\": \"2019-01-16T09:00:00+01:00\",\n        \"last_negative_feedback\": \"2019-02-06T09:00:00+01:00\"\n    }\n}"}],"_postman_id":"6ca7d317-8e3d-4c25-8b06-0e528a4ff475"}],"id":"c5f8a5c0-d2c8-4208-99e9-19606d3fa500","_postman_id":"c5f8a5c0-d2c8-4208-99e9-19606d3fa500","description":""},{"name":"Facebook Entry Actions","item":[{"name":"Post a reply on Facebook","id":"d43b9b46-2de6-4c92-9f43-5686b565f171","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"api comment\"\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/facebook/reply","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>Message to post</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>attachment</td>\n<td>File</td>\n<td>Attachement file to add to facebook post</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","facebook","reply"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"e0a1c790-ca71-42a2-874b-32cdbd698259","type":"string","value":"","key":"alert_id"},{"id":"6ce77733-5a47-412c-90d1-410048b87642","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"d43b9b46-2de6-4c92-9f43-5686b565f171"},{"name":"Like on facebook","id":"536bbc2d-b2de-4e51-91a5-6740170edc14","request":{"method":"POST","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/facebook/like","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","facebook","like"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"42a84d1f-24e5-4743-b3fe-de150542b956","type":"string","value":"","key":"alert_id"},{"id":"c578aae1-b30a-4117-b06b-4e75bc6c6257","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"536bbc2d-b2de-4e51-91a5-6740170edc14"},{"name":"Unlike on facebook","id":"0a98fe94-6980-4806-aebf-f3556f21b6e9","request":{"method":"POST","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/facebook/unlike","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","facebook","unlike"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"82f1864e-9b49-4a46-9434-236c528954a9","type":"string","value":"","key":"alert_id"},{"id":"b424e17f-226f-40d2-b6a2-798322d7c6bf","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"0a98fe94-6980-4806-aebf-f3556f21b6e9"},{"name":"Ban facebook user","id":"e307a7ba-0a44-47c0-950a-af69fb68b467","request":{"method":"POST","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/facebook/ban_user","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","facebook","ban_user"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"3e95b93a-3013-4f21-a2aa-2e1f42289050","type":"string","value":"","key":"alert_id"},{"id":"f8133c38-566b-4b4f-8f1c-3baae03dc3d8","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"e307a7ba-0a44-47c0-950a-af69fb68b467"},{"name":"Unban facebook user","id":"0ecd5b43-34f3-443f-a3bb-6ee4e8745621","request":{"method":"POST","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/facebook/unban_user","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","facebook","unban_user"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"db2d736f-18ba-49c7-b8f4-ad8478b7e749","type":"string","value":"","key":"alert_id"},{"id":"09f126bc-a56c-45a8-a6c5-34498edae161","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"0ecd5b43-34f3-443f-a3bb-6ee4e8745621"},{"name":"Delete facebook comment","id":"a40e3e76-19d7-4610-a46b-2021dceaa251","request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/facebook/comment","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","facebook","comment"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"a1404d66-4b8b-419f-bc38-0368bd4d8a59","type":"string","value":"","key":"alert_id"},{"id":"405913b3-9751-4a2b-b9c7-c692eddd6ac7","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"a40e3e76-19d7-4610-a46b-2021dceaa251"},{"name":"Delete facebook post","id":"76674661-a3bc-4701-963c-582798211628","request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/facebook/post","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","facebook","post"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"21c5d002-6065-4abe-89c9-05615ab5b0db","type":"string","value":"","key":"alert_id"},{"id":"2bbb7c45-2f42-4716-9989-a287cec035d9","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"76674661-a3bc-4701-963c-582798211628"}],"id":"e1ff3476-d9b4-4042-8561-53fc3ae3465a","_postman_id":"e1ff3476-d9b4-4042-8561-53fc3ae3465a","description":""},{"name":"Facebook Insights","item":[{"name":"Fans total","item":[{"name":"Get Fb fan page fans total","id":"711156e9-71ec-4baf-bab7-63a483d19a4b","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total?from=25-10-2019&to=04-11-2019&granularity=daily&demographic_filter=age&demographic_value=M.25-34","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>demographic_filter</td>\n<td>String</td>\n<td>Filter facebook stats on one of the demographic filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>country</code>, <code>language</code>, <code>age</code></td>\n</tr>\n<tr>\n<td>demographic_value</td>\n<td>String</td>\n<td>depending on the demographic filter, pass the code corresponding to the age/language/country filter. See #helpers endpoints for possible values</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total"],"host":["{{api_host}}"],"query":[{"key":"from","value":"25-10-2019"},{"key":"to","value":"04-11-2019"},{"key":"granularity","value":"daily"},{"key":"demographic_filter","value":"age"},{"key":"demographic_value","value":"M.25-34"}],"variable":[{"id":"b5d5da45-3054-4914-a160-53c582824dc4","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"9268add4-ebf5-472e-b9a9-a21e011a9830","name":"Get Fb fan page fans total with age filter","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total?from=25-10-2019&to=04-11-2019&granularity=daily&demographic_filter=age&demographic_value=M.25-34","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total"],"query":[{"key":"from","value":"25-10-2019"},{"key":"to","value":"04-11-2019"},{"key":"granularity","value":"daily"},{"key":"demographic_filter","value":"age"},{"key":"demographic_value","value":"M.25-34"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1462"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"76ee4f406733befba182bd6c74f66942\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"59a759cd66a262f8b23a76d1a51b1af8"},{"key":"X-Runtime","value":"1.977188"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"fans_total\",\n        \"supported_metrics\": [\n            \"fans_total\"\n        ],\n        \"granularity\": \"daily\",\n        \"demographic_filter\": \"age\",\n        \"demographic_value\": \"M.25-34\",\n        \"metrics\": {\n            \"from\": {\n                \"fans_total\": \"2019-10-25T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"fans_total\": \"2019-11-04T23:59:59+01:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-10-25T00:00:00+02:00\",\n            \"to\": \"2019-11-04T23:59:59+01:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"fans_total\": \"30days\"\n            },\n            \"data_exists\": {\n                \"fans_total\": true\n            },\n            \"last_stats_at\": {\n                \"fans_total\": \"2019-11-05T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"fans_total\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"fans_total\": true\n            },\n            \"period_valid\": {\n                \"fans_total\": true\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        },\n        \"metric_ages_availability\": {\n            \"fans_total\": {\n                \"U.18-24\": true,\n                \"U.25-34\": true,\n                \"U.35-44\": true,\n                \"U.45-54\": true,\n                \"U.55-64\": true,\n                \"U.65+\": true,\n                \"M.13-17\": true,\n                \"M.18-24\": true,\n                \"M.25-34\": true,\n                \"M.35-44\": true,\n                \"M.45-54\": true,\n                \"M.55-64\": true,\n                \"M.65+\": true,\n                \"F.18-24\": true,\n                \"F.25-34\": true,\n                \"F.35-44\": true,\n                \"F.45-54\": true,\n                \"F.55-64\": true,\n                \"F.65+\": true\n            }\n        }\n    },\n    \"data\": {\n        \"fans_total\": [\n            {\n                \"date\": \"2019-10-25\",\n                \"value\": 671\n            },\n            {\n                \"date\": \"2019-10-26\",\n                \"value\": 670\n            },\n            {\n                \"date\": \"2019-10-27\",\n                \"value\": 671\n            },\n            {\n                \"date\": \"2019-10-28\",\n                \"value\": 670\n            },\n            {\n                \"date\": \"2019-10-29\",\n                \"value\": 670\n            },\n            {\n                \"date\": \"2019-10-30\",\n                \"value\": 670\n            },\n            {\n                \"date\": \"2019-10-31\",\n                \"value\": 670\n            },\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": 670\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 670\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": 669\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 669\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"711156e9-71ec-4baf-bab7-63a483d19a4b"},{"name":"Get Fb fan page fans total demography","id":"b530c326-753c-4486-b7f4-d26440c6c2b8","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total/demography?to=2019-10-20","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total","demography"],"host":["{{api_host}}"],"query":[{"key":"to","value":"2019-10-20"}],"variable":[{"id":"a24bc820-e600-4a4e-a386-9f45da5d2822","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"03c21d6d-9f68-4129-bee6-905866705bc6","name":"Get Fb fan page fans total demography","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total/demography?to=2019-10-20","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total","demography"],"query":[{"key":"to","value":"2019-10-20"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1373"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"d1bb02f8e6781c58c53e2d5d25693c79\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"09b721517933e669378a149ae386a556"},{"key":"X-Runtime","value":"1.946653"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"fans_total\",\n        \"supported_metrics\": [\n            \"fans_total\"\n        ],\n        \"granularity\": \"daily\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"fans_total\": \"2019-10-20T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"fans_total\": \"2019-10-20T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-10-20T00:00:00+02:00\",\n            \"to\": \"2019-10-20T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"fans_total\": \"30days\"\n            },\n            \"data_exists\": {\n                \"fans_total\": true\n            },\n            \"last_stats_at\": {\n                \"fans_total\": \"2019-11-05T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"fans_total\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"fans_total\": true\n            },\n            \"period_valid\": {\n                \"fans_total\": true\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"metric_sex_layout\": {\n        \"fans_total\": {\n            \"male_count\": 1542,\n            \"female_count\": 1276,\n            \"total_count\": 2818\n        }\n    },\n    \"data\": {\n        \"fans_total\": [\n            {\n                \"age_range\": \"13-17\",\n                \"male_count\": 1,\n                \"female_count\": 0,\n                \"total_count\": 1\n            },\n            {\n                \"age_range\": \"18-24\",\n                \"male_count\": 76,\n                \"female_count\": 76,\n                \"total_count\": 152\n            },\n            {\n                \"age_range\": \"25-34\",\n                \"male_count\": 672,\n                \"female_count\": 631,\n                \"total_count\": 1303\n            },\n            {\n                \"age_range\": \"35-44\",\n                \"male_count\": 449,\n                \"female_count\": 333,\n                \"total_count\": 782\n            },\n            {\n                \"age_range\": \"45-54\",\n                \"male_count\": 215,\n                \"female_count\": 151,\n                \"total_count\": 366\n            },\n            {\n                \"age_range\": \"55-64\",\n                \"male_count\": 80,\n                \"female_count\": 49,\n                \"total_count\": 129\n            },\n            {\n                \"age_range\": \"65+\",\n                \"male_count\": 49,\n                \"female_count\": 36,\n                \"total_count\": 85\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"b530c326-753c-4486-b7f4-d26440c6c2b8"},{"name":"Get Fb fan page fans total ranking by country","id":"31928bbf-00f3-45c1-b0a4-6ea6167188b2","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total/ranking/by_country?from=15-04-2019&to=15-05-2019&page=1&per_page=10","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total","ranking","by_country"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-04-2019"},{"key":"to","value":"15-05-2019"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"id":"73a7ee75-9227-4a38-852e-0b6d39508db2","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"d181e563-3b7a-4b29-9918-3be99efdfcb7","name":"Get Fb fan page fans total ranking by country","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total/ranking/by_country?from=15-04-2019&to=15-05-2019&page=1&per_page=10","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total","ranking","by_country"],"query":[{"key":"from","value":"15-04-2019"},{"key":"to","value":"15-05-2019"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1185"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"c341d423c93739f8a74c095803ac92cd\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"c22832c1e88e650f141dbb3b2442be57"},{"key":"X-Runtime","value":"1.770101"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"fans_total\",\n        \"ranking_by\": \"country\",\n        \"supported_metrics\": [\n            \"fans_total\"\n        ],\n        \"metrics\": {\n            \"from\": {\n                \"fans_total\": \"2019-05-15T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"fans_total\": \"2019-05-15T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-05-15T00:00:00+02:00\",\n            \"to\": \"2019-05-15T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"fans_total\": \"30days\"\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\"\n        }\n    },\n    \"data\": {\n        \"fans_total\": [\n            {\n                \"label\": \"France\",\n                \"count\": 1132,\n                \"ratio\": 0.20038944946008144\n            },\n            {\n                \"label\": \"Tunisia\",\n                \"count\": 606,\n                \"ratio\": 0.10727562400424855\n            },\n            {\n                \"label\": \"Morocco\",\n                \"count\": 426,\n                \"ratio\": 0.07541157727031333\n            },\n            {\n                \"label\": \"Canada\",\n                \"count\": 96,\n                \"ratio\": 0.016994158258098777\n            },\n            {\n                \"label\": \"Belgique\",\n                \"count\": 87,\n                \"ratio\": 0.015400955921402018\n            },\n            {\n                \"label\": \"Algeria\",\n                \"count\": 76,\n                \"ratio\": 0.013453708620994867\n            },\n            {\n                \"label\": \"Reunion\",\n                \"count\": 32,\n                \"ratio\": 0.005664719419366259\n            },\n            {\n                \"label\": \"Switzerland\",\n                \"count\": 31,\n                \"ratio\": 0.005487696937511064\n            },\n            {\n                \"label\": \"Côte d'Ivoire\",\n                \"count\": 26,\n                \"ratio\": 0.004602584528235086\n            },\n            {\n                \"label\": \"Mauritius\",\n                \"count\": 25,\n                \"ratio\": 0.0044255620463798905\n            }\n        ]\n    },\n    \"paging\": {\n        \"fans_total\": {\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"previous_page\": null,\n            \"next_page\": 2,\n            \"total_count\": 46,\n            \"total_pages\": 5,\n            \"out_of_bounds\": false\n        }\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"31928bbf-00f3-45c1-b0a4-6ea6167188b2"},{"name":"Get Fb fan page fans total ranking by langage","id":"c9172823-947e-4089-9928-94c908490952","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total/ranking/by_language?from=15-04-2019&to=15-05-2019&page=1&per_page=10","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total","ranking","by_language"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-04-2019"},{"key":"to","value":"15-05-2019"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"id":"996faf50-81bf-4d4d-9a88-d767267e1b44","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"c16706d7-96fa-403b-8602-980e6278d05c","name":"Get Fb fan page fans total ranking by langage","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_total/ranking/by_language?from=15-04-2019&to=15-05-2019&page=1&per_page=10","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_total","ranking","by_language"],"query":[{"key":"from","value":"15-04-2019"},{"key":"to","value":"15-05-2019"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1275"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"9f5fe7641ceadef3cb66d007a274809c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"cd25928e251929012371dbef430c4f19"},{"key":"X-Runtime","value":"1.898178"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"fans_total\",\n        \"ranking_by\": \"language\",\n        \"supported_metrics\": [\n            \"fans_total\"\n        ],\n        \"metrics\": {\n            \"from\": {\n                \"fans_total\": \"2019-05-15T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"fans_total\": \"2019-05-15T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-05-15T00:00:00+02:00\",\n            \"to\": \"2019-05-15T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"fans_total\": \"30days\"\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\"\n        }\n    },\n    \"data\": {\n        \"fans_total\": [\n            {\n                \"label\": \"French (France)\",\n                \"count\": 2441,\n                \"ratio\": 0.852304469273743\n            },\n            {\n                \"label\": \"English (United States)\",\n                \"count\": 207,\n                \"ratio\": 0.07227653631284917\n            },\n            {\n                \"label\": \"English (United Kingdom)\",\n                \"count\": 77,\n                \"ratio\": 0.026885474860335195\n            },\n            {\n                \"label\": \"French (Canada)\",\n                \"count\": 45,\n                \"ratio\": 0.015712290502793297\n            },\n            {\n                \"label\": \"Arabic (Argentina)\",\n                \"count\": 43,\n                \"ratio\": 0.015013966480446927\n            },\n            {\n                \"label\": \"Spanish (Spain)\",\n                \"count\": 8,\n                \"ratio\": 0.002793296089385475\n            },\n            {\n                \"label\": \"Portuguese (Brazil)\",\n                \"count\": 7,\n                \"ratio\": 0.0024441340782122905\n            },\n            {\n                \"label\": \"Portuguese (Portugal)\",\n                \"count\": 6,\n                \"ratio\": 0.002094972067039106\n            },\n            {\n                \"label\": \"Spanish (Laos)\",\n                \"count\": 5,\n                \"ratio\": 0.0017458100558659217\n            },\n            {\n                \"label\": \"German (Germany)\",\n                \"count\": 4,\n                \"ratio\": 0.0013966480446927375\n            }\n        ]\n    },\n    \"paging\": {\n        \"fans_total\": {\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"previous_page\": null,\n            \"next_page\": 2,\n            \"total_count\": 24,\n            \"total_pages\": 3,\n            \"out_of_bounds\": false\n        }\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"c9172823-947e-4089-9928-94c908490952"}],"id":"759c423d-8092-4867-8292-7c96f585a0a3","_postman_id":"759c423d-8092-4867-8292-7c96f585a0a3","description":""},{"name":"Fans delta","item":[{"name":"Get Fb fan page fans delta","id":"f7b29472-a5fb-4ac9-b827-029f5e96aac1","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_delta?from=02-02-2019&to=03-06-2019&granularity=daily&demographic_filter=all","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>demographic_filter</td>\n<td>String</td>\n<td>Filter facebook stats on one of the demographic filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>country</code>, <code>language</code>, <code>age</code></td>\n</tr>\n<tr>\n<td>demographic_value</td>\n<td>String</td>\n<td>depending on the demographic filter, pass the code corresponding to the age/language/country filter. See #helpers endpoints for possible values</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_delta"],"host":["{{api_host}}"],"query":[{"key":"from","value":"02-02-2019"},{"key":"to","value":"03-06-2019"},{"key":"granularity","value":"daily"},{"key":"demographic_filter","value":"all"}],"variable":[{"id":"df58d5fa-c43b-40d4-86c4-95b1453702e4","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"147a6e21-b477-448b-a074-32ef1866b600","name":"Get Fb fan page fans delta","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_delta?from=02-02-2019&to=03-06-2019&granularity=daily&demographic_filter=all","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_delta"],"query":[{"key":"from","value":"02-02-2019"},{"key":"to","value":"03-06-2019"},{"key":"granularity","value":"daily"},{"key":"demographic_filter","value":"all"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"4689"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"c20efafbcf48ff7e39c5eefc733b96f5\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"f83f73ab3a9708480785aaeb69c13a76"},{"key":"X-Runtime","value":"1.627401"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"fans_delta\",\n        \"supported_metrics\": [\n            \"fans_delta\"\n        ],\n        \"granularity\": \"daily\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"fans_delta\": \"2019-02-02T00:00:00+01:00\"\n            },\n            \"to\": {\n                \"fans_delta\": \"2019-06-03T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-02-02T00:00:00+01:00\",\n            \"to\": \"2019-06-03T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"fans_delta\": \"30days\"\n            },\n            \"data_exists\": {\n                \"fans_delta\": true\n            },\n            \"last_stats_at\": {\n                \"fans_delta\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"fans_delta\": \"2019-01-16T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"fans_delta\": true\n            },\n            \"period_valid\": {\n                \"fans_delta\": true\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"data\": {\n        \"fans_delta\": [\n            {\n                \"date\": \"2019-02-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-03\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-02-04\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-02-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-06\",\n                \"value\": -3\n            },\n            {\n                \"date\": \"2019-02-07\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-08\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-02-09\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-10\",\n                \"value\": -2\n            },\n            {\n                \"date\": \"2019-02-11\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-13\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-14\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-02-15\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-02-16\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-17\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-18\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-02-19\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-20\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-02-21\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-22\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-23\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-24\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-02-25\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-26\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-02-27\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-28\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-01\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-03\",\n                \"value\": -2\n            },\n            {\n                \"date\": \"2019-03-04\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-05\",\n                \"value\": -2\n            },\n            {\n                \"date\": \"2019-03-06\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-03-07\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-08\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-03-09\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-10\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-03-11\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-13\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-03-14\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-15\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-03-16\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-17\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-18\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-19\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-20\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-21\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-22\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-23\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-03-24\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-25\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-26\",\n                \"value\": 3\n            },\n            {\n                \"date\": \"2019-03-27\",\n                \"value\": 2\n            },\n            {\n                \"date\": \"2019-03-28\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-29\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-03-30\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-03-31\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-01\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-04-02\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-04-03\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-04\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-04-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-07\",\n                \"value\": 3\n            },\n            {\n                \"date\": \"2019-04-08\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-04-09\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-04-10\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-04-11\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-04-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-13\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-04-14\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-04-15\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-16\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-04-18\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-19\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-20\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-21\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-04-22\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-23\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-24\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-25\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-26\",\n                \"value\": 2\n            },\n            {\n                \"date\": \"2019-04-27\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-28\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-29\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-30\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-01\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-02\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-05-03\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-04\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-05\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-05-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-07\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-05-08\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-09\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-10\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-11\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-05-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-13\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-14\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-15\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-05-16\",\n                \"value\": 2\n            },\n            {\n                \"date\": \"2019-05-17\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-05-18\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-19\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-20\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-05-21\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-22\",\n                \"value\": 2\n            },\n            {\n                \"date\": \"2019-05-23\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-05-24\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-25\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-05-26\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-27\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-28\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-29\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-05-30\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-05-31\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-06-01\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-06-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-06-03\",\n                \"value\": 0\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"f7b29472-a5fb-4ac9-b827-029f5e96aac1"},{"name":"Get Fb fan page fans delta demography","id":"97f7734b-f2d5-45a1-82fd-9c508f5b7b38","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_delta/demography?from=15-04-2016&to=15-05-2016","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_delta","demography"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-04-2016"},{"key":"to","value":"15-05-2016"}],"variable":[{"id":"9471f7d5-bd65-45c3-b694-45d3daffa07c","type":"string","value":"","key":"fan_page_id"}]}},"response":[],"_postman_id":"97f7734b-f2d5-45a1-82fd-9c508f5b7b38"},{"name":"Get Fb fan page fans delta ranking by country","id":"851f6d51-1374-40b2-9237-f53361ed99b4","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_delta/ranking/by_country?from=15-04-2016&to=15-05-2016&page=1&per_page=10","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_delta","ranking","by_country"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-04-2016"},{"key":"to","value":"15-05-2016"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"id":"946bc690-20ff-4818-885e-063e685f46a3","type":"string","value":"","key":"fan_page_id"}]}},"response":[],"_postman_id":"851f6d51-1374-40b2-9237-f53361ed99b4"},{"name":"Get Fb fan page fans delta ranking by langage","id":"bec13e52-18ed-4b18-8771-8da443ec14ee","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/fans_delta/ranking/by_language?from=15-04-2016&to=15-05-2016&page=1&per_page=10","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","fans_delta","ranking","by_language"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-04-2016"},{"key":"to","value":"15-05-2016"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"id":"55906d9c-7d24-4bdd-bd5a-ddd73914f573","type":"string","value":"","key":"fan_page_id"}]}},"response":[],"_postman_id":"bec13e52-18ed-4b18-8771-8da443ec14ee"}],"id":"e3ce6e91-1c4f-41bb-853e-6908f886492f","_postman_id":"e3ce6e91-1c4f-41bb-853e-6908f886492f","description":""},{"name":"Reached users","item":[{"name":"Get Fb fan page total reached users","id":"66b20646-45ae-4a5c-94bd-fc0823990bde","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/reached_users/total?from=04-10-2019&to=10-10-2019","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","reached_users","total"],"host":["{{api_host}}"],"query":[{"key":"from","value":"04-10-2019"},{"key":"to","value":"10-10-2019"}],"variable":[{"id":"4bbf1a44-7985-4e78-9c41-e23915c3a695","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"8a6d9d92-f03a-4e27-8be1-e4357a95c737","name":"Get Fb fan page total reached users","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/reached_users/total?from=04-10-2019&to=10-10-2019","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","reached_users","total"],"query":[{"key":"from","value":"04-10-2019"},{"key":"to","value":"10-10-2019"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2002"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"2bf0eb5fbce06864eac8799cf6a59c97\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"b5b79ae95e50bb1ec7474b57e7e011b3"},{"key":"X-Runtime","value":"1.846503"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"total_reached_users\",\n        \"supported_metrics\": [\n            \"total_reached_users_paid\",\n            \"total_reached_users_viral\",\n            \"total_reached_users_organic\"\n        ],\n        \"granularity\": \"monthly\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"total_reached_users_paid\": \"2019-10-04T00:00:00+02:00\",\n                \"total_reached_users_viral\": \"2019-10-04T00:00:00+02:00\",\n                \"total_reached_users_organic\": \"2019-10-04T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"total_reached_users_paid\": \"2019-10-10T23:59:59+02:00\",\n                \"total_reached_users_viral\": \"2019-10-10T23:59:59+02:00\",\n                \"total_reached_users_organic\": \"2019-10-10T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-10-04T00:00:00+02:00\",\n            \"to\": \"2019-10-10T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"total_reached_users_paid\": \"30days\",\n                \"total_reached_users_viral\": \"30days\",\n                \"total_reached_users_organic\": \"30days\"\n            },\n            \"data_exists\": {\n                \"total_reached_users_paid\": true,\n                \"total_reached_users_viral\": true,\n                \"total_reached_users_organic\": true\n            },\n            \"last_stats_at\": {\n                \"total_reached_users_paid\": \"2019-11-06T09:00:00+01:00\",\n                \"total_reached_users_viral\": \"2019-11-06T09:00:00+01:00\",\n                \"total_reached_users_organic\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"total_reached_users_paid\": \"2019-02-06T09:00:00+01:00\",\n                \"total_reached_users_viral\": \"2019-02-06T09:00:00+01:00\",\n                \"total_reached_users_organic\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"total_reached_users_paid\": true,\n                \"total_reached_users_viral\": true,\n                \"total_reached_users_organic\": true\n            },\n            \"period_valid\": {\n                \"total_reached_users_paid\": true,\n                \"total_reached_users_viral\": true,\n                \"total_reached_users_organic\": true\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"data\": {\n        \"total_reached_users_paid\": [\n            {\n                \"date\": \"2019-10-04\",\n                \"max_date\": \"2019-10-10\",\n                \"value\": 0,\n                \"by_range\": \"monthly\"\n            }\n        ],\n        \"total_reached_users_viral\": [\n            {\n                \"date\": \"2019-10-04\",\n                \"max_date\": \"2019-10-10\",\n                \"value\": 12,\n                \"by_range\": \"monthly\"\n            }\n        ],\n        \"total_reached_users_organic\": [\n            {\n                \"date\": \"2019-10-04\",\n                \"max_date\": \"2019-10-10\",\n                \"value\": 966,\n                \"by_range\": \"monthly\"\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"66b20646-45ae-4a5c-94bd-fc0823990bde"},{"name":"Get Fb fan page reached users","id":"a5c109cc-b76b-450a-a3ed-d2201c7e1639","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/reached_users?from=17-04-2019&to=20-04-2019&granularity=daily&demographic_filter=all","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>demographic_filter</td>\n<td>String</td>\n<td>Filter facebook stats on one of the demographic filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>country</code>, <code>language</code>, <code>age</code></td>\n</tr>\n<tr>\n<td>demographic_value</td>\n<td>String</td>\n<td>depending on the demographic filter, pass the code corresponding to the age/language/country filter. See #helpers endpoints for possible values</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","reached_users"],"host":["{{api_host}}"],"query":[{"key":"from","value":"17-04-2019"},{"key":"to","value":"20-04-2019"},{"key":"granularity","value":"daily"},{"key":"demographic_filter","value":"all"}],"variable":[{"id":"5a8ac989-3426-4c4a-bc90-2f90b527800d","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"adf2e1a2-bee4-4ac0-a7eb-de13a06764d5","name":"Get Fb fan page reached users","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/reached_users?from=17-04-2019&to=20-04-2019&granularity=daily&demographic_filter=all","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","reached_users"],"query":[{"key":"from","value":"17-04-2019"},{"key":"to","value":"20-04-2019"},{"key":"granularity","value":"daily"},{"key":"demographic_filter","value":"all"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1967"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"6736203558097542d45bc1146b1ab753\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"1d009f9554b66de16fbe066ef7ee204a"},{"key":"X-Runtime","value":"2.253541"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"reached_users\",\n        \"supported_metrics\": [\n            \"reached_users_paid\",\n            \"reached_users_viral\",\n            \"reached_users_organic\"\n        ],\n        \"granularity\": \"daily\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"reached_users_paid\": \"2019-04-17T00:00:00+02:00\",\n                \"reached_users_viral\": \"2019-04-17T00:00:00+02:00\",\n                \"reached_users_organic\": \"2019-04-17T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"reached_users_paid\": \"2019-04-20T23:59:59+02:00\",\n                \"reached_users_viral\": \"2019-04-20T23:59:59+02:00\",\n                \"reached_users_organic\": \"2019-04-20T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-04-17T00:00:00+02:00\",\n            \"to\": \"2019-04-20T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"reached_users_paid\": \"30days\",\n                \"reached_users_viral\": \"30days\",\n                \"reached_users_organic\": \"30days\"\n            },\n            \"data_exists\": {\n                \"reached_users_paid\": true,\n                \"reached_users_viral\": true,\n                \"reached_users_organic\": true\n            },\n            \"last_stats_at\": {\n                \"reached_users_paid\": \"2019-11-06T09:00:00+01:00\",\n                \"reached_users_viral\": \"2019-11-06T09:00:00+01:00\",\n                \"reached_users_organic\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"reached_users_paid\": \"2019-02-06T09:00:00+01:00\",\n                \"reached_users_viral\": \"2019-02-06T09:00:00+01:00\",\n                \"reached_users_organic\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"reached_users_paid\": true,\n                \"reached_users_viral\": true,\n                \"reached_users_organic\": true\n            },\n            \"period_valid\": {\n                \"reached_users_paid\": true,\n                \"reached_users_viral\": true,\n                \"reached_users_organic\": true\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"data\": {\n        \"reached_users_paid\": [\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-18\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-19\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-20\",\n                \"value\": 0\n            }\n        ],\n        \"reached_users_viral\": [\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": 6\n            },\n            {\n                \"date\": \"2019-04-18\",\n                \"value\": 2\n            },\n            {\n                \"date\": \"2019-04-19\",\n                \"value\": 3\n            },\n            {\n                \"date\": \"2019-04-20\",\n                \"value\": 4\n            }\n        ],\n        \"reached_users_organic\": [\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": 36\n            },\n            {\n                \"date\": \"2019-04-18\",\n                \"value\": 11\n            },\n            {\n                \"date\": \"2019-04-19\",\n                \"value\": 12\n            },\n            {\n                \"date\": \"2019-04-20\",\n                \"value\": 6\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"a5c109cc-b76b-450a-a3ed-d2201c7e1639"},{"name":"Get Fb fan page reached users demography","id":"f26496b8-8aac-4601-8eb6-f930c89e2a0a","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/reached_users/demography?from=15-10-2019&to=20-10-2019","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","reached_users","demography"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-10-2019"},{"key":"to","value":"20-10-2019"}],"variable":[{"id":"814fbda3-16a7-4623-910c-bda96fb71185","type":"string","value":"","key":"fan_page_id"}]}},"response":[],"_postman_id":"f26496b8-8aac-4601-8eb6-f930c89e2a0a"},{"name":"Get Fb fan page reached users ranking by langage","id":"9bff8747-eb23-479f-8240-28e733683882","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/reached_users/ranking/by_language","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","reached_users","ranking","by_language"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"f5a15e22-0c4c-44fb-a314-99f6178440ab","type":"string","value":"","key":"fan_page_id"}]}},"response":[],"_postman_id":"9bff8747-eb23-479f-8240-28e733683882"},{"name":"Get Fb fan page reached users ranking by country","id":"a0549c79-0658-4ff5-869c-2a5f07c60180","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/reached_users/ranking/by_country?from=15-04-2016&to=15-05-2016&page=1&per_page=10","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","reached_users","ranking","by_country"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-04-2016"},{"key":"to","value":"15-05-2016"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"id":"a6bdd0da-f9e4-47d2-ade4-58050b6ad12d","type":"string","value":"","key":"fan_page_id"}]}},"response":[],"_postman_id":"a0549c79-0658-4ff5-869c-2a5f07c60180"}],"id":"0a6d7b06-d1b0-42fa-97dc-93f35d874b46","_postman_id":"0a6d7b06-d1b0-42fa-97dc-93f35d874b46","description":""},{"name":"Get Fb fan page dashboard","id":"6fb74d48-1446-4041-ab81-9335976233fe","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/dashboard?period=week&to=2019-10-20","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Specify the period</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td><code>2019-12-12</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>Smart params will gives you the latest dashboard if requested one does not exists</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","dashboard"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-10-20"}],"variable":[{"id":"4906926a-3fdb-4c69-b996-9cd79755a7e6","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"52537436-4d95-4ca9-97e1-cf2063666f0f","name":"Get Fb fan page dashboard","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/dashboard?period=week&to=2019-10-20","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","dashboard"],"query":[{"key":"period","value":"week"},{"key":"to","value":"2019-10-20"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1304"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"208c643ee12ae7c84be3366340cd35b2\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"5ce0edd1edb0b189be10c2368c31ceed"},{"key":"X-Runtime","value":"2.063239"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"dashboard\": {\n        \"fan_page\": {\n            \"id\": 3478\n        },\n        \"stats_at_date\": \"2019-10-20\",\n        \"previous_date\": \"2019-10-13\",\n        \"period\": \"week\",\n        \"stats\": {\n            \"fans_total\": {\n                \"title\": \"Number of new fans\",\n                \"previous_delta_value\": -2,\n                \"current_value\": 2860,\n                \"previous_value\": 2859,\n                \"delta_value\": 1,\n                \"delta_percentage\": \"150%\"\n            },\n            \"reached_users\": {\n                \"title\": \"Reached users\",\n                \"current_value\": 14,\n                \"previous_value\": 10,\n                \"delta_value\": 4,\n                \"delta_percentage\": \"40%\"\n            },\n            \"engaged_users\": {\n                \"title\": \"Engaged users\",\n                \"current_value\": 3,\n                \"previous_value\": 3,\n                \"delta_value\": 0,\n                \"delta_percentage\": \"0%\"\n            },\n            \"posts_reaction\": {\n                \"title\": \"Reactions on your posts\",\n                \"current_value\": 0,\n                \"previous_value\": 0,\n                \"delta_value\": 0,\n                \"delta_percentage\": null\n            },\n            \"posts_comment\": {\n                \"title\": \"Comments on your posts\",\n                \"current_value\": 0,\n                \"previous_value\": 0,\n                \"delta_value\": 0,\n                \"delta_percentage\": null\n            },\n            \"posts_share\": {\n                \"title\": \"Shares on your posts\",\n                \"current_value\": 0,\n                \"previous_value\": 0,\n                \"delta_value\": 0,\n                \"delta_percentage\": null\n            },\n            \"posts_click\": {\n                \"title\": \"Clics on your posts\",\n                \"current_value\": 0,\n                \"previous_value\": 0,\n                \"delta_value\": 0,\n                \"delta_percentage\": null\n            },\n            \"engagement_ratio\": {\n                \"title\": \"User engagement rate\",\n                \"current_value\": 21.43,\n                \"previous_value\": 30,\n                \"delta_value\": -8.57,\n                \"delta_percentage\": \"28.6%\"\n            },\n            \"posts_interaction_ratio\": {\n                \"title\": \"Global engagement rate\",\n                \"current_value\": 0,\n                \"previous_value\": 0,\n                \"delta_value\": 0,\n                \"delta_percentage\": null\n            }\n        }\n    }\n}"}],"_postman_id":"6fb74d48-1446-4041-ab81-9335976233fe"},{"name":"Get Fb fan page engaged users","id":"dead67de-0e31-4bfb-a228-56ec0e958105","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/engaged_users?from=11-10-2019&to=20-10-2019","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","engaged_users"],"host":["{{api_host}}"],"query":[{"key":"from","value":"11-10-2019"},{"key":"to","value":"20-10-2019"}],"variable":[{"id":"82fd15a2-23dd-4fe8-8bbe-9754209aec6e","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"b056d2d8-2fd1-4f67-b76e-3a10272bb2e3","name":"Get Fb fan page engaged users","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/engaged_users?from=11-10-2019&to=20-10-2019","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","engaged_users"],"query":[{"key":"from","value":"11-10-2019"},{"key":"to","value":"20-10-2019"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"874"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"c42879d594c3ca8e082a5d20c33a1b9d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"3de82a83dd1f3b033dc94d4eacb2cfee"},{"key":"X-Runtime","value":"1.721232"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"engaged_users\",\n        \"supported_metrics\": [\n            \"engaged_users\"\n        ],\n        \"granularity\": \"monthly\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"engaged_users\": \"2019-10-11T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"engaged_users\": \"2019-10-20T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-10-11T00:00:00+02:00\",\n            \"to\": \"2019-10-20T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"engaged_users\": \"30days\"\n            },\n            \"data_exists\": {\n                \"engaged_users\": true\n            },\n            \"last_stats_at\": {\n                \"engaged_users\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"engaged_users\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"engaged_users\": true\n            },\n            \"period_valid\": {\n                \"engaged_users\": true\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"data\": {\n        \"engaged_users\": [\n            {\n                \"date\": \"2019-10-11\",\n                \"max_date\": \"2019-10-20\",\n                \"value\": 22,\n                \"by_range\": \"monthly\"\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"dead67de-0e31-4bfb-a228-56ec0e958105"},{"name":"Get Fb fan page engagement","id":"c5244614-fb95-4d13-8218-9af7ffdc9c01","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/engagement?from=20-08-2019&to=15-09-2019&granularity=weekly","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","engagement"],"host":["{{api_host}}"],"query":[{"key":"from","value":"20-08-2019"},{"key":"to","value":"15-09-2019"},{"key":"granularity","value":"weekly"}],"variable":[{"id":"ca0a5c4f-bc64-4859-958c-1b18cc07ca1a","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"0e130b9b-f4e5-41ae-8563-2709494e4487","name":"Get Fb fan page engagement","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/engagement?from=20-08-2019&to=15-09-2019&granularity=weekly","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","engagement"],"query":[{"key":"from","value":"20-08-2019"},{"key":"to","value":"15-09-2019"},{"key":"granularity","value":"weekly"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1200"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"1c9ca557f2f40aa657a67d523364fed8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"732596df1cab1164acc293f0a8541c7c"},{"key":"X-Runtime","value":"3.529483"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"engagement\",\n        \"supported_metrics\": [\n            \"engagement\"\n        ],\n        \"granularity\": \"weekly\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"engagement\": \"2019-08-20T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"engagement\": \"2019-09-15T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-08-20T00:00:00+02:00\",\n            \"to\": \"2019-09-15T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": {\n                \"engagement\": true\n            },\n            \"last_stats_at\": {\n                \"engagement\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"engagement\": \"2018-10-18T02:00:00+02:00\"\n            },\n            \"data_available\": {\n                \"engagement\": true\n            },\n            \"period_valid\": {\n                \"engagement\": true\n            }\n        },\n        \"graph\": {\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"data\": {\n        \"engagement\": [\n            {\n                \"date\": \"2019-08-20\",\n                \"max_date\": \"2019-08-25\",\n                \"reaction_count\": 0,\n                \"comment_count\": 0,\n                \"share_count\": 0,\n                \"by_range\": \"weekly\"\n            },\n            {\n                \"date\": \"2019-08-26\",\n                \"max_date\": \"2019-09-01\",\n                \"reaction_count\": 1,\n                \"comment_count\": 0,\n                \"share_count\": 0,\n                \"by_range\": \"weekly\"\n            },\n            {\n                \"date\": \"2019-09-02\",\n                \"max_date\": \"2019-09-08\",\n                \"reaction_count\": 2,\n                \"comment_count\": 0,\n                \"share_count\": 0,\n                \"by_range\": \"weekly\"\n            },\n            {\n                \"date\": \"2019-09-09\",\n                \"max_date\": \"2019-09-15\",\n                \"reaction_count\": 0,\n                \"comment_count\": 1,\n                \"share_count\": 0,\n                \"by_range\": \"weekly\"\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"c5244614-fb95-4d13-8218-9af7ffdc9c01"},{"name":"Get Fb fan page content engagement","id":"89b8efba-1158-410c-8f91-59ff973baa9e","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/content_engagement?from=02-02-2019&to=03-06-2019&granularity=weekly","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","content_engagement"],"host":["{{api_host}}"],"query":[{"key":"from","value":"02-02-2019"},{"key":"to","value":"03-06-2019"},{"key":"granularity","value":"weekly"}],"variable":[{"id":"a3762f9b-e338-4003-9c9e-059a372879d9","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"cf6b4722-8ee2-4cce-9157-998c470e31c4","name":"Get Fb fan page content engagement","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/content_engagement?from=02-02-2019&to=03-06-2019&granularity=weekly","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","content_engagement"],"query":[{"key":"from","value":"02-02-2019"},{"key":"to","value":"03-06-2019"},{"key":"granularity","value":"weekly"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1084"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"d1b3cb1b3e2df92abc9cc540be68549d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"4e4bf53e9586627f6253360954733ca6"},{"key":"X-Runtime","value":"1.750095"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"content_engagement\",\n        \"supported_metrics\": [\n            \"content_engagement\"\n        ],\n        \"granularity\": \"weekly\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"content_engagement\": \"2019-02-02T00:00:00+01:00\"\n            },\n            \"to\": {\n                \"content_engagement\": \"2019-06-03T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-02-02T00:00:00+01:00\",\n            \"to\": \"2019-06-03T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": {\n                \"content_engagement\": true\n            },\n            \"last_stats_at\": {\n                \"content_engagement\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"content_engagement\": \"2018-10-18T02:00:00+02:00\"\n            },\n            \"data_available\": {\n                \"content_engagement\": true\n            },\n            \"period_valid\": {\n                \"content_engagement\": true\n            }\n        },\n        \"graph\": {\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"data\": {\n        \"content_engagement\": [\n            {\n                \"type\": \"Text\",\n                \"reactions\": 0,\n                \"comments\": 0,\n                \"shares\": 0\n            },\n            {\n                \"type\": \"Links\",\n                \"reactions\": 31,\n                \"comments\": 2,\n                \"shares\": 13\n            },\n            {\n                \"type\": \"Videos\",\n                \"reactions\": 0,\n                \"comments\": 0,\n                \"shares\": 0\n            },\n            {\n                \"type\": \"Photos\",\n                \"reactions\": 17,\n                \"comments\": 1,\n                \"shares\": 5\n            },\n            {\n                \"type\": \"Offers\",\n                \"reactions\": 0,\n                \"comments\": 0,\n                \"shares\": 0\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"89b8efba-1158-410c-8f91-59ff973baa9e"},{"name":"Get Fb fan page engagement ratio","id":"2fe22743-4f63-4fa0-bae4-321f2b831a41","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/engagement_ratio?from=02-02-2019&to=11-02-2019&granularity=daily","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","engagement_ratio"],"host":["{{api_host}}"],"query":[{"key":"from","value":"02-02-2019"},{"key":"to","value":"11-02-2019"},{"key":"granularity","value":"daily"}],"variable":[{"id":"59856dc4-9612-42e7-a591-80dbafe0012d","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"c23f31d6-63d2-4d6d-964c-9480d658b8a4","name":"Get Fb fan page engagement ratio","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/engagement_ratio?from=02-02-2019&to=11-02-2019&granularity=daily","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","engagement_ratio"],"query":[{"key":"from","value":"02-02-2019"},{"key":"to","value":"11-02-2019"},{"key":"granularity","value":"daily"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"989"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"f66f01a681ba1f5c33be4e8ef2807b70\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"eb2ac2ddfbbe1faea19f9216e1e47391"},{"key":"X-Runtime","value":"1.991884"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"engagement_ratio\",\n        \"supported_metrics\": [\n            \"engagement_ratio\"\n        ],\n        \"granularity\": \"daily\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"engagement_ratio\": \"2019-02-02T00:00:00+01:00\"\n            },\n            \"to\": {\n                \"engagement_ratio\": \"2019-02-11T23:59:59+01:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-02-02T00:00:00+01:00\",\n            \"to\": \"2019-02-11T23:59:59+01:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": {\n                \"engagement_ratio\": true\n            },\n            \"last_stats_at\": {\n                \"engagement_ratio\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"engagement_ratio\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"engagement_ratio\": true\n            },\n            \"period_valid\": {\n                \"engagement_ratio\": false\n            }\n        },\n        \"graph\": {\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": false\n        }\n    },\n    \"data\": {\n        \"engagement_ratio\": [\n            {\n                \"date\": \"2019-02-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-07\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-08\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-09\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-02-10\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-02-11\",\n                \"value\": 0\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"2fe22743-4f63-4fa0-bae4-321f2b831a41"},{"name":"Get Fb fan page interaction ratio","id":"61835919-4d82-45cf-8952-d853324ac527","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/posts_interaction_ratio?from=15-04-2016&to=03-06-2016&granularity=daily","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","posts_interaction_ratio"],"host":["{{api_host}}"],"query":[{"key":"from","value":"15-04-2016"},{"key":"to","value":"03-06-2016"},{"key":"granularity","value":"daily"}],"variable":[{"id":"b932cc4a-c0b7-4bc1-a1de-0b72d771fa68","type":"string","value":"","key":"fan_page_id"}]}},"response":[],"_postman_id":"61835919-4d82-45cf-8952-d853324ac527"},{"name":"Get Fb fan page negative feedback","id":"73a94626-3780-4ad5-9f68-361bed993e9e","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/negative_feedback?from=11-04-2019&to=17-04-2019&granularity=daily","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","negative_feedback"],"host":["{{api_host}}"],"query":[{"key":"from","value":"11-04-2019"},{"key":"to","value":"17-04-2019"},{"key":"granularity","value":"daily"}],"variable":[{"id":"e9aa62ca-81cd-432a-ac54-fef4708288a8","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"c4829245-6213-4d3e-89d2-f0e4e5542cec","name":"Get Fb fan page negative feedback","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/negative_feedback?from=11-04-2019&to=17-04-2019&granularity=daily","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","negative_feedback"],"query":[{"key":"from","value":"11-04-2019"},{"key":"to","value":"17-04-2019"},{"key":"granularity","value":"daily"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"3128"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"176ed31df3648398215fce17a2c8f4bc\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"948d5d714c8c79260fd90803d13d8470"},{"key":"X-Runtime","value":"2.222001"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": {\n        \"graph_key\": \"negative_feedback\",\n        \"supported_metrics\": [\n            \"negative_feedback_hide_all\",\n            \"negative_feedback_hide\",\n            \"negative_feedback_unlike_page\",\n            \"negative_feedback_report_spam\"\n        ],\n        \"granularity\": \"daily\",\n        \"demographic_filter\": \"all\",\n        \"demographic_value\": \"all\",\n        \"metrics\": {\n            \"from\": {\n                \"negative_feedback_hide_all\": \"2019-04-11T00:00:00+02:00\",\n                \"negative_feedback_hide\": \"2019-04-11T00:00:00+02:00\",\n                \"negative_feedback_unlike_page\": \"2019-04-11T00:00:00+02:00\",\n                \"negative_feedback_report_spam\": \"2019-04-11T00:00:00+02:00\"\n            },\n            \"to\": {\n                \"negative_feedback_hide_all\": \"2019-04-17T23:59:59+02:00\",\n                \"negative_feedback_hide\": \"2019-04-17T23:59:59+02:00\",\n                \"negative_feedback_unlike_page\": \"2019-04-17T23:59:59+02:00\",\n                \"negative_feedback_report_spam\": \"2019-04-17T23:59:59+02:00\"\n            }\n        },\n        \"graph\": {\n            \"from\": \"2019-04-11T00:00:00+02:00\",\n            \"to\": \"2019-04-17T23:59:59+02:00\"\n        }\n    },\n    \"infos\": {\n        \"metrics\": {\n            \"best_period\": {\n                \"negative_feedback_hide_all\": \"30days\",\n                \"negative_feedback_hide\": \"30days\",\n                \"negative_feedback_unlike_page\": \"30days\",\n                \"negative_feedback_report_spam\": \"30days\"\n            },\n            \"data_exists\": {\n                \"negative_feedback_hide_all\": true,\n                \"negative_feedback_hide\": true,\n                \"negative_feedback_unlike_page\": true,\n                \"negative_feedback_report_spam\": true\n            },\n            \"last_stats_at\": {\n                \"negative_feedback_hide_all\": \"2019-11-06T09:00:00+01:00\",\n                \"negative_feedback_hide\": \"2019-11-06T09:00:00+01:00\",\n                \"negative_feedback_unlike_page\": \"2019-11-06T09:00:00+01:00\",\n                \"negative_feedback_report_spam\": \"2019-11-06T09:00:00+01:00\"\n            },\n            \"earliest_stats_at\": {\n                \"negative_feedback_hide_all\": \"2019-02-06T09:00:00+01:00\",\n                \"negative_feedback_hide\": \"2019-02-06T09:00:00+01:00\",\n                \"negative_feedback_unlike_page\": \"2019-02-06T09:00:00+01:00\",\n                \"negative_feedback_report_spam\": \"2019-02-06T09:00:00+01:00\"\n            },\n            \"data_available\": {\n                \"negative_feedback_hide_all\": true,\n                \"negative_feedback_hide\": true,\n                \"negative_feedback_unlike_page\": true,\n                \"negative_feedback_report_spam\": true\n            },\n            \"period_valid\": {\n                \"negative_feedback_hide_all\": true,\n                \"negative_feedback_hide\": true,\n                \"negative_feedback_unlike_page\": true,\n                \"negative_feedback_report_spam\": true\n            }\n        },\n        \"graph\": {\n            \"best_period\": \"30days\",\n            \"data_exists\": true,\n            \"data_available\": true,\n            \"period_valid\": true\n        }\n    },\n    \"data\": {\n        \"negative_feedback_hide_all\": [\n            {\n                \"date\": \"2019-04-11\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-13\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-14\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-15\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-16\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": 0\n            }\n        ],\n        \"negative_feedback_hide\": [\n            {\n                \"date\": \"2019-04-11\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-13\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-14\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-15\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-16\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": 0\n            }\n        ],\n        \"negative_feedback_unlike_page\": [\n            {\n                \"date\": \"2019-04-11\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-13\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-14\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-15\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-16\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": 0\n            }\n        ],\n        \"negative_feedback_report_spam\": [\n            {\n                \"date\": \"2019-04-11\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-12\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-13\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-14\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-15\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-16\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-04-17\",\n                \"value\": 0\n            }\n        ]\n    },\n    \"from_cache\": false\n}"}],"_postman_id":"73a94626-3780-4ad5-9f68-361bed993e9e"},{"name":"Get Fb fan page top fans","id":"87aa77e0-7a96-4cc8-9810-9d2d1134a19c","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/top_fans?page=1&per_page=1&from_date=02-02-2019&to_date=01-11-2019&sort=desc&sort_by=likes","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td><code>desc</code></td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td><code>likes</code></td>\n<td><code>name</code>, <code>likes</code>, <code>comments</code>, <code>posts</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","top_fans"],"host":["{{api_host}}"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"1"},{"key":"from_date","value":"02-02-2019"},{"key":"to_date","value":"01-11-2019"},{"key":"sort","value":"desc"},{"key":"sort_by","value":"likes"}],"variable":[{"id":"a6346af2-5d43-4740-9679-583f58794057","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"cc2b6d6c-c2d8-46a8-8f0a-5102a492ae80","name":"Get Fb fan page top fans","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/top_fans?page=1&per_page=1&from_date=02-02-2019&to_date=01-11-2019&sort=desc&sort_by=likes","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","top_fans"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"1"},{"key":"from_date","value":"02-02-2019"},{"key":"to_date","value":"01-11-2019"},{"key":"sort","value":"desc"},{"key":"sort_by","value":"likes"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"376"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"e96dc0f63e71dcd4461d9d915c6dbc44\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"cd00baa19aa7467d30ff3c436f4492c0"},{"key":"X-Runtime","value":"1.884766"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"per_page\": 1,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 1,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    },\n    \"top_fans\": [\n        {\n            \"id\": 8476655,\n            \"name\": \"alerti\",\n            \"likes_count\": 0,\n            \"comments_count\": 0,\n            \"posts_count\": 30\n        }\n    ],\n    \"fan_page\": {\n        \"is_admin_page\": true,\n        \"id\": 3478\n    },\n    \"from\": \"2019-02-02\",\n    \"to\": \"2019-11-01\",\n    \"earliest_fans_date\": \"2018-12-19\",\n    \"last_fans_date\": \"2019-11-01\"\n}"}],"_postman_id":"87aa77e0-7a96-4cc8-9810-9d2d1134a19c"},{"name":"Get Fb fan page top posts","id":"290b02f9-ef7c-4523-933c-008cc5830b08","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/top_posts?page=1&per_page=2&from_date=06-01-2019&to_date=06-02-2019&sort=desc&sort_by=name&posts_kind=all","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td><code>desc</code></td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td><code>likes</code></td>\n<td><code>published_at</code>, <code>name</code>, <code>reactions</code>, <code>likes</code>, <code>shares</code>, <code>comments</code>, <code>posts</code>, <code>consumptions</code>, <code>reached_users</code>, <code>reached_users_paid</code>, <code>negative_feedback</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>posts_kind</td>\n<td>String</td>\n<td>post filter: all, admin, not_admin</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>admin</code>, <code>not_admin</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","top_posts"],"host":["{{api_host}}"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"2"},{"key":"from_date","value":"06-01-2019"},{"key":"to_date","value":"06-02-2019"},{"key":"sort","value":"desc"},{"key":"sort_by","value":"name"},{"key":"posts_kind","value":"all"}],"variable":[{"id":"9ebae4dc-2d3e-477d-bd6f-bf93d4214c74","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"4a03bfa0-9126-4ba5-9dfe-5d4c89f276c5","name":"Get Fb fan page top posts","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/top_posts?page=1&per_page=2&from_date=06-01-2019&to_date=06-02-2019&sort=desc&sort_by=name&posts_kind=all","host":["{{api_host}}"],"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","top_posts"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"2"},{"key":"from_date","value":"06-01-2019"},{"key":"to_date","value":"06-02-2019"},{"key":"sort","value":"desc"},{"key":"sort_by","value":"name"},{"key":"posts_kind","value":"all"}],"variable":[{"key":"fan_page_id","value":"3478"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2489"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"e92dde299ff73f7ede17f538b0e5d575\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"ce7e593c825588f3d0413894165d5bc0"},{"key":"X-Runtime","value":"2.042723"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_top_posts\": 47,\n    \"paging\": {\n        \"per_page\": 2,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 6,\n        \"total_pages\": 3,\n        \"out_of_bounds\": false\n    },\n    \"top_posts\": [\n        {\n            \"id\": 696777,\n            \"post_id\": \"175329223140_10156585876413141\",\n            \"entry_id\": 303792277,\n            \"content\": \"Quelles sont les vidéos de marque les plus performantes sur Facebook en décembre 2018, tant en matière d'interactions que de vues ?\",\n            \"post_type\": \"link\",\n            \"by_admin\": true,\n            \"author_id\": \"175329223140\",\n            \"published_at\": \"2019-01-09T10:24:48+01:00\",\n            \"is_mention\": null,\n            \"facebook_link\": \"https://www.facebook.com/permalink.php?story_fbid=10156585876413141&id=175329223140\",\n            \"counts\": {\n                \"reach_users\": {\n                    \"reached_users_count\": 179,\n                    \"reached_users_paid_count\": 0\n                },\n                \"likes\": {\n                    \"likes_count_from_page\": 1,\n                    \"likes_count_from_all_shares\": 1\n                },\n                \"reactions\": {\n                    \"reactions_love_count\": 0,\n                    \"reactions_wow_count\": 0,\n                    \"reactions_haha_count\": 0,\n                    \"reactions_sorry_count\": 0,\n                    \"reactions_anger_count\": 0,\n                    \"reactions_like_count\": 1,\n                    \"total\": 1\n                },\n                \"comments\": {\n                    \"comments_count_from_page\": 0,\n                    \"comments_count_from_all_shares\": 0\n                },\n                \"shares\": {\n                    \"shares_count_from_page\": 0,\n                    \"shares_count_from_all_shares\": 0\n                },\n                \"negative_feedback\": {\n                    \"total\": 0,\n                    \"hide_all_count\": 0,\n                    \"hide_count\": 0,\n                    \"unlike_page_count\": 0,\n                    \"report_spam_count\": 0\n                },\n                \"click\": {\n                    \"photo_view\": 0,\n                    \"video_play\": 0,\n                    \"link_click\": 3,\n                    \"other_click\": 2\n                }\n            }\n        },\n        {\n            \"id\": 696785,\n            \"post_id\": \"175329223140_10156590020638141\",\n            \"entry_id\": 303792299,\n            \"content\": \"Quel est le pire e-commercant pour vous ?\",\n            \"post_type\": \"link\",\n            \"by_admin\": true,\n            \"author_id\": \"175329223140\",\n            \"published_at\": \"2019-01-11T14:00:03+01:00\",\n            \"is_mention\": null,\n            \"facebook_link\": \"https://www.facebook.com/permalink.php?story_fbid=10156590020638141&id=175329223140\",\n            \"counts\": {\n                \"reach_users\": {\n                    \"reached_users_count\": 810,\n                    \"reached_users_paid_count\": 0\n                },\n                \"likes\": {\n                    \"likes_count_from_page\": 0,\n                    \"likes_count_from_all_shares\": 1\n                },\n                \"reactions\": {\n                    \"reactions_love_count\": 0,\n                    \"reactions_wow_count\": 0,\n                    \"reactions_haha_count\": 0,\n                    \"reactions_sorry_count\": 0,\n                    \"reactions_anger_count\": 0,\n                    \"reactions_like_count\": 0,\n                    \"total\": 0\n                },\n                \"comments\": {\n                    \"comments_count_from_page\": 1,\n                    \"comments_count_from_all_shares\": 1\n                },\n                \"shares\": {\n                    \"shares_count_from_page\": 2,\n                    \"shares_count_from_all_shares\": 2\n                },\n                \"negative_feedback\": {\n                    \"total\": 0,\n                    \"hide_all_count\": 0,\n                    \"hide_count\": 0,\n                    \"unlike_page_count\": 0,\n                    \"report_spam_count\": 0\n                },\n                \"click\": {\n                    \"photo_view\": 0,\n                    \"video_play\": 0,\n                    \"link_click\": 31,\n                    \"other_click\": 21\n                }\n            }\n        }\n    ],\n    \"fan_page\": {\n        \"is_admin_page\": true,\n        \"id\": 3478\n    },\n    \"from\": \"2019-01-06T00:00:00+01:00\",\n    \"to\": \"2019-02-06T23:59:59+01:00\",\n    \"earliest_post_date\": \"2018-10-22T00:00:00+02:00\",\n    \"last_post_date\": \"2019-11-01T23:59:59+01:00\"\n}"}],"_postman_id":"290b02f9-ef7c-4523-933c-008cc5830b08"},{"name":"Get Fb fan page content typology","id":"1a71bfed-fea1-460d-bfe9-ae7e284a3923","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/facebook/fan_pages/:fan_page_id/stats/typology?from=14-02-2019&to=13-05-2019","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>smart</td>\n<td>Boolean</td>\n<td>When passing this option, we adjust the period to a day, a week or 30 days depending on on data available, ie. The more data we have the greater the period will be</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","facebook","fan_pages",":fan_page_id","stats","typology"],"host":["{{api_host}}"],"query":[{"key":"from","value":"14-02-2019"},{"key":"to","value":"13-05-2019"}],"variable":[{"id":"b0ad5156-8162-4767-b787-cc526a18ec9c","type":"string","value":"","key":"fan_page_id"}]}},"response":[{"id":"691aea77-db0e-44da-ac6b-d1f92e867ae5","name":"fb typology","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_host}}/facebook/fan_pages/3129/stats/typology/?token={{api_key}}&from=14-02-2016&to=13-05-2016","host":["{{api_host}}"],"path":["facebook","fan_pages","3129","stats","typology",""],"query":[{"key":"token","value":"{{api_key}}"},{"key":"from","value":"14-02-2016"},{"key":"to","value":"13-05-2016"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"686","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 28 Nov 2016 16:54:00 GMT","name":"Date","description":""},{"key":"ETag","value":"\"b3c988655f77d4318a86c622c7f985de\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"8469fd63427f4c58303bef882cbca873","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.078753","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTEwOGYzNzBlMzQxOWM2MTNlZjgzNzlhYTgxMmUwYmM1BjsAVEkiDnJldHVybl90bwY7AEYiAZIvdjMvdHdpdHRlci9hbGVydF9zdGF0cy9kYXNoYm9hcmQ%2FYWNjb3VudF9pZD04NTImcGVyaW9kPXdlZWsmdG9fZGF0ZT0yMDE2LTI4LTExJnRva2VuPTBjZTdjNjEzNDFiZTIwZDlkZDA0MGRhNGRmMjBmMDkwODVkOGI3NjA4OGIxNjU1NzI3NzBmM2Y3YWZmMUkiEF9jc3JmX3Rva2VuBjsARkkiMTR2MU9DNFJlWXV1YTFUSzFmL0pHQ0xHc3YyZGFVVWtXR3R4RjIvN3RjOVE9BjsARg%3D%3D--fa26a96b219bce321bdb5a8127d9921fed66601d","key":"_alerti_session"}],"responseTime":null,"body":"{\"graph_granularity\":\"daily\",\"graph_demographic_filter\":\"all\",\"graph_demographic_value\":\"all\",\"best_period_for_data_range\":\"year\",\"metric_from_date\":{\"typology\":\"2016-02-14T00:00:00+01:00\"},\"graph_from_date\":\"2016-02-14T00:00:00+01:00\",\"metric_to_date\":{\"typology\":\"2016-05-13T23:59:59+02:00\"},\"graph_to_date\":\"2016-05-13T23:59:59+02:00\",\"metric_data\":{\"typology\":[{\"axis\":\"Links\",\"color\":\"47a0dd\",\"value\":20},{\"axis\":\"Photos\",\"color\":\"3b5999\",\"value\":1}]},\"metric_data_exists\":{\"typology\":true},\"graph_data_exists\":true,\"metric_data_available\":{\"typology\":true},\"graph_data_available\":true,\"metric_data_period_valid\":{\"typology\":true},\"graph_data_period_valid\":true,\"from_cache\":false}"}],"_postman_id":"1a71bfed-fea1-460d-bfe9-ae7e284a3923"}],"id":"48e13ada-de5a-4a37-9fac-088ed3404826","description":"<p>The response for all facebook insights are formatted the same way.\nHere is an example to help your understand a response.</p>\n<p>Example for all fans evolution:</p>\n<h2 id=\"request\">REQUEST:</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET {{api_host}}/{{api_version}}/facebook/fan_pages/3153/stats/fans_total/?token-{{api_key}}&amp;from-05-04-2016&amp;to-12-05-2016&amp;granularity-daily&amp;demographic_filter-all\n</code></pre><h2 id=\"response\">RESPONSE:</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  # this is what the request is about\n  \"filters\": {\n    # the key for the graph\n    \"graph_key\": \"fans_total\",\n    # usually a graph as 1 metrics but some can have more than one\n    # a metrics is similar to a serie\n    \"supported_metrics\": [\n      \"fans_total\"\n    ],\n    # data granularity: daily, weekly, monthly\n    \"granularity\": \"daily\",\n    # the graph can be filtered by: all, country, language, age\n    \"demographic_filter\": \"all\",\n    # when filter is country: values available from the list at GET {{api_host}}/helpers/countries?token-{{api_key}}\n    # when filter is language: values available from the list at GET {{api_host}}/helpers/languages?token-{{api_key}}\n    # when filter is age: values available from the list at GET {{api_host}}/helpers/ages?token-{{api_key}}\n    \"demographic_value\": \"all\",\n    \"metrics\": {\n      # all metrics 'from date'\n      \"from\": {\n        \"fans_total\": \"2016-04-05T00:00:00+02:00\"\n      },\n      # all metrics 'to date'\n      \"to\": {\n        \"fans_total\": \"2016-05-12T23:59:59+02:00\"\n      }\n    },\n    # general graph from and to dates\n    \"graph\": {\n      \"from\": \"2016-04-05T00:00:00+02:00\",\n      \"to\": \"2016-05-12T23:59:59+02:00\"\n    }\n  },\n  # general infos to help display the right information on the graph\n  \"infos\": {\n    # general infos break down by metrics\n    \"metrics\": {\n      # best period is the longest calculated period depending on data available for last days\n      \"best_period\": {\n        \"fans_total\": \"30days\"\n      },\n      # this means that:\n      # the stats have been generated at least once\n      # if it's a facebook page admin, the facebook account is up to date\n      # Note: you may or may not have data at the requested period\n      \"data_exists\": {\n        \"fans_total\": true\n      },\n      \"last_stats_at\": {\n        \"fans_total\": \"2016-12-29T09:00:00+01:00\"\n      },\n      \"earliest_stats_at\": {\n        \"fans_total\": \"2016-09-23T09:00:00+02:00\"\n      },\n      # this means that:\n      # the stats have been generated at least once\n      # if it's a facebook page admin, the facebook account is up to date\n      # there is data for the period requested, bu not necessarily for the period entirely.\n      \"data_available\": {\n        \"fans_total\": false\n      },\n      # this means that:\n      # the stats have been generated at least once\n      # the period requested is not longer than the period between the earliest stats date and last stat dates\n      \"period_valid\": {\n        \"fans_total\": true\n      }\n    },\n    # general infos for graph\n    # this is a composition value which depends on all metrics infos\n    \"graph\": {\n      \"best_period\": \"30days\",\n      \"data_exists\": true,\n      \"data_available\": false,\n      \"period_valid\": true\n    }\n  },\n  # data for each metrics to display graphs\n  \"data\": {\n    \"fans_total\": []\n  },\n  # tells if the datas are coming from the cache.\n  \"from_cache\": false\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"41206116-c840-4048-8781-2b645beaaee1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6c9df07e-c20a-413b-9f41-113bbc5a67d9","type":"text/javascript","exec":[""]}}],"_postman_id":"48e13ada-de5a-4a37-9fac-088ed3404826"}],"id":"460e0c72-9224-463f-bf0f-10ef7d3f7757","_postman_id":"460e0c72-9224-463f-bf0f-10ef7d3f7757","description":""},{"name":"Twitter","item":[{"name":"Twitter Accounts","item":[{"name":"Get my twitter accounts","id":"a9ed039a-1c8a-470f-b6b9-4da62c1cc0c4","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/accounts","description":"<p>Get your own Twitter accounts</p>\n","urlObject":{"path":["{{api_version}}","twitter","accounts"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"c758ade5-bac5-450a-8037-d3e0fb058b18","name":"Get my twitter accounts","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/twitter/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1171"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"0e2ecf2fd1b2789dff67001d0135448c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"b589f3f258c32ac46facc12151e56e91"},{"key":"X-Runtime","value":"1.264215"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"twitter_accounts\": [\n        {\n            \"id\": 1186,\n            \"twitter_id\": \"alerti\",\n            \"is_valid\": true,\n            \"access_type\": \"write\",\n            \"followers_count\": 2096,\n            \"avatar_url\": \"http://pbs.twimg.com/profile_images/1017437779821826048/Maqh4hmZ_normal.jpg\",\n            \"created_at\": \"2018-11-23T10:01:07+01:00\",\n            \"later_at\": null,\n            \"stats\": {\n                \"earliest_engagement_stats_at\": \"2018-11-19T01:00:00+01:00\",\n                \"last_engagement_stats_at\": \"2019-11-06T01:00:00+01:00\",\n                \"last_stats_refreshed_at\": \"2019-11-06T14:59:38+01:00\",\n                \"last_followers_stats_at\": \"2019-11-06T13:42:28+01:00\",\n                \"last_followers_stats_refreshed_at\": \"2019-11-06T15:30:11+01:00\",\n                \"best_period_for_stats\": \"month\"\n            }\n        }\n    ]\n}"}],"_postman_id":"a9ed039a-1c8a-470f-b6b9-4da62c1cc0c4"},{"name":"Get my twitter analytic accounts","id":"f1d6ff71-d681-406d-b141-41d44fc3b02d","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/accounts/analytic_accounts","description":"<p>Get the Twitter accounts you can access analytics. It can be your own accounts, or accounts of another user in the same order.</p>\n","urlObject":{"path":["{{api_version}}","twitter","accounts","analytic_accounts"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"d06d48fc-1322-4544-9aeb-85847a8f90b3","name":"Get my twitter analytic accounts","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/twitter/accounts/analytic_accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1171"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"0e2ecf2fd1b2789dff67001d0135448c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"ee7e3ed5dca44de8d9f3317af21503ef"},{"key":"X-Runtime","value":"1.595155"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"twitter_accounts\": [\n        {\n            \"id\": 1186,\n            \"twitter_id\": \"alerti\",\n            \"is_valid\": true,\n            \"access_type\": \"write\",\n            \"followers_count\": 2096,\n            \"avatar_url\": \"http://pbs.twimg.com/profile_images/1017437779821826048/Maqh4hmZ_normal.jpg\",\n            \"created_at\": \"2018-11-23T10:01:07+01:00\",\n            \"later_at\": null,\n            \"stats\": {\n                \"earliest_engagement_stats_at\": \"2018-11-19T01:00:00+01:00\",\n                \"last_engagement_stats_at\": \"2019-11-06T01:00:00+01:00\",\n                \"last_stats_refreshed_at\": \"2019-11-06T14:59:38+01:00\",\n                \"last_followers_stats_at\": \"2019-11-06T13:42:28+01:00\",\n                \"last_followers_stats_refreshed_at\": \"2019-11-06T15:30:11+01:00\",\n                \"best_period_for_stats\": \"month\"\n            }\n        }\n    ]\n}"}],"_postman_id":"f1d6ff71-d681-406d-b141-41d44fc3b02d"}],"id":"f4bb7cba-6d35-4e7e-a3a9-89bab1572cd0","_postman_id":"f4bb7cba-6d35-4e7e-a3a9-89bab1572cd0","description":""},{"name":"Twitter Entry Actions","item":[{"name":"Post a reply on Twitter","id":"fb31258c-ed2d-4783-b7d2-cb01cad776e2","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"@alerti test api\"\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/twitter/reply","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitter_screen_name</td>\n<td>String</td>\n<td>The twitter username (without the @)</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>Message to send</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","twitter","reply"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"4b5c9adf-875e-4cd6-9a8b-185d6f4d2972","type":"string","value":"","key":"alert_id"},{"id":"155c6f96-2129-4bb5-b37c-cb0afbd9e66e","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"fb31258c-ed2d-4783-b7d2-cb01cad776e2"},{"name":"Like on Twitter","id":"18b690b8-e690-4102-b914-1ddb8f4f6d65","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"@alerti test api\"\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/twitter/like","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitter_screen_name</td>\n<td>String</td>\n<td>The twitter username (without the @)</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","twitter","like"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"90c82a05-b259-4426-b9e4-ff31433169f9","type":"string","value":"","key":"alert_id"},{"id":"11999f3d-bc47-4083-a13e-1ddf81d65a13","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"18b690b8-e690-4102-b914-1ddb8f4f6d65"},{"name":"Unlike on Twitter","id":"1d4b105d-60bd-4e68-820e-c5c9961f9b86","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"@alerti test api\"\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/twitter/unlike","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitter_screen_name</td>\n<td>String</td>\n<td>The twitter username (without the @)</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","twitter","unlike"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"bb1d7469-57d4-4a32-a235-17d9cf2af677","type":"string","value":"","key":"alert_id"},{"id":"57452d05-9854-4052-bc73-eb8ed3ec0ad5","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"1d4b105d-60bd-4e68-820e-c5c9961f9b86"},{"name":"Retweet a Twitter entry","id":"194ef1bb-d064-470a-a043-368cc588f0f9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Interview d’un surfeur et développeur d’applications\",\n  \"modified\": true\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/twitter/retweet","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitter_screen_name</td>\n<td>String</td>\n<td>The twitter username (without the @)</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>retweet message, leave blank to RT without modification</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>modified</td>\n<td>Boolean</td>\n<td>true if you modified the retweet</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","twitter","retweet"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"6acea8cd-2b65-46bf-9741-339af26fa98a","type":"string","value":"","key":"alert_id"},{"id":"144e7800-1bb2-488b-897c-3ed04806586a","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"194ef1bb-d064-470a-a043-368cc588f0f9"},{"name":"Follow Twitter user","id":"23ec0954-431b-4a84-9d7c-200e0ce0f28d","request":{"method":"POST","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/twitter/follow","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitter_screen_name</td>\n<td>String</td>\n<td>The twitter username (without the @)</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","twitter","follow"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"5161fadb-c47f-479a-acd5-189c0cdd7354","type":"string","value":"","key":"alert_id"},{"id":"443674a7-cfee-4248-91fe-2f802547875f","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"23ec0954-431b-4a84-9d7c-200e0ce0f28d"},{"name":"Unfollow Twitter user","id":"937a04e5-b6f2-4fbe-85fe-de6b2e61edad","request":{"method":"POST","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/twitter/unfollow","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitter_screen_name</td>\n<td>String</td>\n<td>The twitter username (without the @)</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","twitter","unfollow"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"2e232a88-0714-44d0-a46b-dc4bce1a559c","type":"string","value":"","key":"alert_id"},{"id":"a143094d-233b-4802-bdbe-f9f6c104c134","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"937a04e5-b6f2-4fbe-85fe-de6b2e61edad"}],"id":"7bfc3760-8fe1-45e5-bc4f-ba5822541efb","_postman_id":"7bfc3760-8fe1-45e5-bc4f-ba5822541efb","description":""},{"name":"Twitter Insights","item":[{"name":"Twitter Alert Insights","item":[{"name":"Get top twitter users for an alert","id":"119c3423-2405-4fee-b402-ad144b4740af","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_twittos?per_page=5&period=month&sort_by=screen_name","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td>-</td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td><code>total_tweets</code></td>\n<td><code>screen_name</code>, <code>total_tweets</code>, <code>positive_tweets</code>, <code>neutral_tweets</code>, <code>negative_tweets</code>, <code>followers</code>, <code>followings</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_twittos"],"host":["{{api_host}}"],"query":[{"key":"per_page","value":"5"},{"key":"period","value":"month"},{"key":"sort_by","value":"screen_name"}],"variable":[{"id":"9881e5f7-4a87-4c06-9c37-8802defbd409","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"570a571d-a496-4f7d-81de-41daa7957e66","name":"Get top twitter users for an alert","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_twittos?per_page=5&period=month&sort_by=screen_name","host":["{{api_host}}"],"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_twittos"],"query":[{"key":"per_page","value":"5"},{"key":"period","value":"month"},{"key":"sort_by","value":"screen_name"}],"variable":[{"key":"alert_id","value":"56825"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2684"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"9e6ca44f78e03a2a5916ed93ae0d54a0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"05a4fd57dba29a1cbfbcb9708ea21112"},{"key":"X-Runtime","value":"22.065912"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-10-09T00:00:00+02:00\",\n    \"to\": \"2019-11-07T10:17:46+01:00\",\n    \"earliest_stats_at\": \"2019-06-18\",\n    \"last_stats_at\": \"2019-11-07\",\n    \"last_stats_refreshed_at\": \"2019-11-07\",\n    \"paging\": {\n        \"per_page\": 5,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 46572,\n        \"total_pages\": 9315,\n        \"out_of_bounds\": false\n    },\n    \"top_twitter_users\": [\n        {\n            \"id\": 47973913,\n            \"twitter_id\": \"ZZZZaa_AH\",\n            \"twitter_name\": \"ZZZZaa_AH (Ms_Beaucoup)\",\n            \"entries_count\": 1,\n            \"positives_count\": 0,\n            \"negatives_count\": 1,\n            \"neutrals_count\": 0,\n            \"description\": \"Poet\",\n            \"location\": \"I block trolls and ad hominem attacks\",\n            \"url\": \"http://marthops.wordpress.com\",\n            \"display_url\": \"marthops.wordpress.com\",\n            \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1015747429579145216/-HNrmaV3_normal.jpg\",\n            \"followers_count\": 603,\n            \"followings_count\": 4851,\n            \"link\": \"https://twitter.com/ZZZZaa_AH\"\n        },\n        {\n            \"id\": 47981567,\n            \"twitter_id\": \"zzyzx91\",\n            \"twitter_name\": \"zzyzx91 (Rafiki)\",\n            \"entries_count\": 2,\n            \"positives_count\": 0,\n            \"negatives_count\": 1,\n            \"neutrals_count\": 1,\n            \"description\": \"ΜΟΛΩΝ ΛΑΒΕ\",\n            \"location\": null,\n            \"url\": \"http://zzyzx91.wordpress.com\",\n            \"display_url\": \"zzyzx91.wordpress.com\",\n            \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1180561113928343558/8e5fOOi4_normal.jpg\",\n            \"followers_count\": 1834,\n            \"followings_count\": 545,\n            \"link\": \"https://twitter.com/zzyzx91\"\n        },\n        {\n            \"id\": 47951514,\n            \"twitter_id\": \"zztnews\",\n            \"twitter_name\": \"zztnews (awtnew)\",\n            \"entries_count\": 1,\n            \"positives_count\": 0,\n            \"negatives_count\": 0,\n            \"neutrals_count\": 1,\n            \"description\": null,\n            \"location\": null,\n            \"url\": \"https://amtnew.blogspot.com\",\n            \"display_url\": \"amtnew.blogspot.com\",\n            \"profile_image_url\": \"https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png\",\n            \"followers_count\": 0,\n            \"followings_count\": 0,\n            \"link\": \"https://twitter.com/zztnews\"\n        },\n        {\n            \"id\": 47973271,\n            \"twitter_id\": \"zZBEP\",\n            \"twitter_name\": \"zZBEP (ZBEP)\",\n            \"entries_count\": 1,\n            \"positives_count\": 0,\n            \"negatives_count\": 1,\n            \"neutrals_count\": 0,\n            \"description\": \"Who are you running from?\",\n            \"location\": null,\n            \"url\": \"http://www.youtube.com/user/gohhinogamiz\",\n            \"display_url\": \"youtube.com/user/gohhinoga…\",\n            \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1162363176215879682/e08ib1SP_normal.jpg\",\n            \"followers_count\": 74,\n            \"followings_count\": 81,\n            \"link\": \"https://twitter.com/zZBEP\"\n        },\n        {\n            \"id\": 47922055,\n            \"twitter_id\": \"zyshankaba\",\n            \"twitter_name\": \"zyshankaba (Zyshan Kaba)\",\n            \"entries_count\": 1,\n            \"positives_count\": 0,\n            \"negatives_count\": 0,\n            \"neutrals_count\": 1,\n            \"description\": \"Ideas, tech, venture, etc.\",\n            \"location\": \"Toronto\",\n            \"url\": \"https://twitter.com/zyshankaba\",\n            \"display_url\": \"https://twitter.com/zyshankaba\",\n            \"profile_image_url\": \"https://pbs.twimg.com/profile_images/776131947906998272/FuPpZDjZ_normal.jpg\",\n            \"followers_count\": 210,\n            \"followings_count\": 992,\n            \"link\": \"https://twitter.com/zyshankaba\"\n        }\n    ]\n}"}],"_postman_id":"119c3423-2405-4fee-b402-ad144b4740af"},{"name":"Get Twitter top tweets for an alert","id":"b9d00d05-32a2-43f7-9c36-43cfe04b4f83","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_tweets?per_page=3&period=week&sort_by=similar_tweets","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td>-</td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td><code>similar_tweets</code></td>\n<td><code>similar_tweets</code>, <code>published_at</code>, <code>author</code></td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>File format for download</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_tweets"],"host":["{{api_host}}"],"query":[{"key":"per_page","value":"3"},{"key":"period","value":"week"},{"key":"sort_by","value":"similar_tweets"}],"variable":[{"id":"03e46b0a-5310-4083-bc1f-60b1fcb4deca","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"0204463b-21b0-447f-87f2-45b09b7f3165","name":"Get Twitter top tweets for an alert","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_tweets?per_page=3&period=week&sort_by=similar_tweets","host":["{{api_host}}"],"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_tweets"],"query":[{"key":"per_page","value":"3"},{"key":"period","value":"week"},{"key":"sort_by","value":"similar_tweets"}],"variable":[{"key":"alert_id","value":"56825"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"3629"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"f9493c126786d8167b5b0568cb9f8b27\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"717fa8ad92097b659a5f7c33eab4265e"},{"key":"X-Runtime","value":"5.165391"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-11-01T00:00:00+01:00\",\n    \"to\": \"2019-11-07T10:18:42+01:00\",\n    \"earliest_stats_at\": \"2019-06-18T15:23:45+02:00\",\n    \"last_stats_at\": \"2019-11-07T10:05:03+01:00\",\n    \"last_stats_refreshed_at\": \"2019-11-07T10:05:03+01:00\",\n    \"paging\": {\n        \"per_page\": 3,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 3589,\n        \"total_pages\": 1197,\n        \"out_of_bounds\": false\n    },\n    \"total_similar_tweets\": 2080,\n    \"top_tweets\": [\n        {\n            \"id\": 307679787,\n            \"link\": \"http://twitter.com/jenjavajunky/statuses/1191481678373572610\",\n            \"published_at\": \"2019-11-04T23:25:43+01:00\",\n            \"content\": \"Facebook is currently under investigation by 47 state attorneys and regulators in multiple nations.\\n\\nAnd they’re getting ready to launch their own currency.\\n\\nTell Congress:\\n\\n\\\"Pass H.R. 4813, the Keep Big Tech Out of Finance Act.\\\"\\nhttps://t.co/UuKEftPzH9\",\n            \"twitter_max_reach\": 937112,\n            \"similar_tweets\": 139,\n            \"similar_tweets_url\": \"http://api.alerti.local:3000/v3/alerts/56825?id_list[]=307679787&source=20&token=\",\n            \"author\": {\n                \"id\": 47923639,\n                \"twitter_id\": \"jenjavajunky\",\n                \"twitter_name\": \"jenjavajunky (Jen #VoteBlue #HandMarkedPaperBallots )\",\n                \"entries_count\": 0,\n                \"positives_count\": 0,\n                \"negatives_count\": 0,\n                \"neutrals_count\": 0,\n                \"description\": \"Equity 4 all. MWF, GenX, lifelong lefty. I think 4 myself. \\nBio pic: Zasu Pitts, in tribute to my mom. ⭐️\\nVoteBlueNoMatterWho #Resist-F4F,FBR,PRU\\n❤️☕️\",\n                \"location\": \"The Heart of It All. US\",\n                \"url\": \"https://twitter.com/jenjavajunky\",\n                \"display_url\": \"https://twitter.com/jenjavajunky\",\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1189662845509787649/ko3X-L6C_normal.jpg\",\n                \"followers_count\": 26374,\n                \"followings_count\": 26414,\n                \"link\": \"https://twitter.com/jenjavajunky\"\n            }\n        },\n        {\n            \"id\": 307688711,\n            \"link\": \"http://twitter.com/smdiehl/statuses/1191695056207564801\",\n            \"published_at\": \"2019-11-05T13:33:36+01:00\",\n            \"content\": \"Wrote a new blog post:\\nFacebook Libra is Architecturally Unsound\\nhttps://t.co/Mdws6Iarpf\",\n            \"twitter_max_reach\": 39293,\n            \"similar_tweets\": 64,\n            \"similar_tweets_url\": \"http://api.alerti.local:3000/v3/alerts/56825?id_list[]=307688711&source=20&token=\",\n            \"author\": {\n                \"id\": 47925428,\n                \"twitter_id\": \"smdiehl\",\n                \"twitter_name\": \"smdiehl (Stephen Diehl)\",\n                \"entries_count\": 0,\n                \"positives_count\": 0,\n                \"negatives_count\": 0,\n                \"neutrals_count\": 0,\n                \"description\": \"Entrepreneur and Haskeller\",\n                \"location\": \"London, England\",\n                \"url\": \"http://www.stephendiehl.com\",\n                \"display_url\": \"stephendiehl.com\",\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1282020927/magatar_normal.jpg\",\n                \"followers_count\": 8125,\n                \"followings_count\": 2483,\n                \"link\": \"https://twitter.com/smdiehl\"\n            }\n        },\n        {\n            \"id\": 307715659,\n            \"link\": \"http://twitter.com/kimszc1/statuses/1192154088152141826\",\n            \"published_at\": \"2019-11-06T19:57:38+01:00\",\n            \"content\": \"It's Time To Set Money Free  WOW! Zuckerbug (facebook) plans to create an new currency in Libra. He's a NUTS Case!                             \\n   https://t.co/VUxKq9MOgX via @LibertyNews_Now\",\n            \"twitter_max_reach\": 1429836,\n            \"similar_tweets\": 58,\n            \"similar_tweets_url\": \"http://api.alerti.local:3000/v3/alerts/56825?id_list[]=307715659&source=20&token=\",\n            \"author\": {\n                \"id\": 48022246,\n                \"twitter_id\": \"kimszc1\",\n                \"twitter_name\": \"kimszc1 (kimszc  curly hair Kim 2019 Maga)\",\n                \"entries_count\": 0,\n                \"positives_count\": 0,\n                \"negatives_count\": 0,\n                \"neutrals_count\": 0,\n                \"description\": \"Married # GOD #MAGA #CONSERVATIVE PATRIOT #Kag2020 BUILD THE WALL  # VETS #Trump100%   #LOVE=JESUS #Declass before 2020\",\n                \"location\": \"Mi.,(Fussels Corner) Fl.\",\n                \"url\": \"http://m.youtube.com\",\n                \"display_url\": \"m.youtube.com\",\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1071413932483592192/Q5Wu1XqZ_normal.jpg\",\n                \"followers_count\": 37581,\n                \"followings_count\": 38475,\n                \"link\": \"https://twitter.com/kimszc1\"\n            }\n        }\n    ]\n}"},{"id":"ee36c7e9-e3fc-4888-8731-264806dd7d40","name":"Get Twitter top tweets for an alert","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_tweets?per_page=3&period=week&sort_by=similar_tweets","host":["{{api_host}}"],"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_tweets"],"query":[{"key":"per_page","value":"3"},{"key":"period","value":"week"},{"key":"sort_by","value":"similar_tweets"}],"variable":[{"key":"alert_id","value":"56825"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"3629"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"f9493c126786d8167b5b0568cb9f8b27\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"717fa8ad92097b659a5f7c33eab4265e"},{"key":"X-Runtime","value":"5.165391"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-11-01T00:00:00+01:00\",\n    \"to\": \"2019-11-07T10:18:42+01:00\",\n    \"earliest_stats_at\": \"2019-06-18T15:23:45+02:00\",\n    \"last_stats_at\": \"2019-11-07T10:05:03+01:00\",\n    \"last_stats_refreshed_at\": \"2019-11-07T10:05:03+01:00\",\n    \"paging\": {\n        \"per_page\": 3,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 3589,\n        \"total_pages\": 1197,\n        \"out_of_bounds\": false\n    },\n    \"total_similar_tweets\": 2080,\n    \"top_tweets\": [\n        {\n            \"id\": 307679787,\n            \"link\": \"http://twitter.com/jenjavajunky/statuses/1191481678373572610\",\n            \"published_at\": \"2019-11-04T23:25:43+01:00\",\n            \"content\": \"Facebook is currently under investigation by 47 state attorneys and regulators in multiple nations.\\n\\nAnd they’re getting ready to launch their own currency.\\n\\nTell Congress:\\n\\n\\\"Pass H.R. 4813, the Keep Big Tech Out of Finance Act.\\\"\\nhttps://t.co/UuKEftPzH9\",\n            \"twitter_max_reach\": 937112,\n            \"similar_tweets\": 139,\n            \"similar_tweets_url\": \"http://api.alerti.local:3000/v3/alerts/56825?id_list[]=307679787&source=20&token=\",\n            \"author\": {\n                \"id\": 47923639,\n                \"twitter_id\": \"jenjavajunky\",\n                \"twitter_name\": \"jenjavajunky (Jen #VoteBlue #HandMarkedPaperBallots )\",\n                \"entries_count\": 0,\n                \"positives_count\": 0,\n                \"negatives_count\": 0,\n                \"neutrals_count\": 0,\n                \"description\": \"Equity 4 all. MWF, GenX, lifelong lefty. I think 4 myself. \\nBio pic: Zasu Pitts, in tribute to my mom. ⭐️\\nVoteBlueNoMatterWho #Resist-F4F,FBR,PRU\\n❤️☕️\",\n                \"location\": \"The Heart of It All. US\",\n                \"url\": \"https://twitter.com/jenjavajunky\",\n                \"display_url\": \"https://twitter.com/jenjavajunky\",\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1189662845509787649/ko3X-L6C_normal.jpg\",\n                \"followers_count\": 26374,\n                \"followings_count\": 26414,\n                \"link\": \"https://twitter.com/jenjavajunky\"\n            }\n        },\n        {\n            \"id\": 307688711,\n            \"link\": \"http://twitter.com/smdiehl/statuses/1191695056207564801\",\n            \"published_at\": \"2019-11-05T13:33:36+01:00\",\n            \"content\": \"Wrote a new blog post:\\nFacebook Libra is Architecturally Unsound\\nhttps://t.co/Mdws6Iarpf\",\n            \"twitter_max_reach\": 39293,\n            \"similar_tweets\": 64,\n            \"similar_tweets_url\": \"http://api.alerti.local:3000/v3/alerts/56825?id_list[]=307688711&source=20&token=\",\n            \"author\": {\n                \"id\": 47925428,\n                \"twitter_id\": \"smdiehl\",\n                \"twitter_name\": \"smdiehl (Stephen Diehl)\",\n                \"entries_count\": 0,\n                \"positives_count\": 0,\n                \"negatives_count\": 0,\n                \"neutrals_count\": 0,\n                \"description\": \"Entrepreneur and Haskeller\",\n                \"location\": \"London, England\",\n                \"url\": \"http://www.stephendiehl.com\",\n                \"display_url\": \"stephendiehl.com\",\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1282020927/magatar_normal.jpg\",\n                \"followers_count\": 8125,\n                \"followings_count\": 2483,\n                \"link\": \"https://twitter.com/smdiehl\"\n            }\n        },\n        {\n            \"id\": 307715659,\n            \"link\": \"http://twitter.com/kimszc1/statuses/1192154088152141826\",\n            \"published_at\": \"2019-11-06T19:57:38+01:00\",\n            \"content\": \"It's Time To Set Money Free  WOW! Zuckerbug (facebook) plans to create an new currency in Libra. He's a NUTS Case!                             \\n   https://t.co/VUxKq9MOgX via @LibertyNews_Now\",\n            \"twitter_max_reach\": 1429836,\n            \"similar_tweets\": 58,\n            \"similar_tweets_url\": \"http://api.alerti.local:3000/v3/alerts/56825?id_list[]=307715659&source=20&token=\",\n            \"author\": {\n                \"id\": 48022246,\n                \"twitter_id\": \"kimszc1\",\n                \"twitter_name\": \"kimszc1 (kimszc  curly hair Kim 2019 Maga)\",\n                \"entries_count\": 0,\n                \"positives_count\": 0,\n                \"negatives_count\": 0,\n                \"neutrals_count\": 0,\n                \"description\": \"Married # GOD #MAGA #CONSERVATIVE PATRIOT #Kag2020 BUILD THE WALL  # VETS #Trump100%   #LOVE=JESUS #Declass before 2020\",\n                \"location\": \"Mi.,(Fussels Corner) Fl.\",\n                \"url\": \"http://m.youtube.com\",\n                \"display_url\": \"m.youtube.com\",\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1071413932483592192/Q5Wu1XqZ_normal.jpg\",\n                \"followers_count\": 37581,\n                \"followings_count\": 38475,\n                \"link\": \"https://twitter.com/kimszc1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"b9d00d05-32a2-43f7-9c36-43cfe04b4f83"},{"name":"Get an alert's tweets stats per period","id":"e8e4e19c-4538-45bd-ad81-c176c2736a85","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/tweets_per_date?period=week","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","alert_stats",":alert_id","tweets_per_date"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"}],"variable":[{"id":"68b74e00-7107-45e5-95fe-b11d14f2ceec","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"8cdea42b-dd85-4aa8-bef7-d089b30e07b7","name":"Get an alert's tweets stats per period","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/tweets_per_date?period=week","host":["{{api_host}}"],"path":["{{api_version}}","twitter","alert_stats",":alert_id","tweets_per_date"],"query":[{"key":"period","value":"week"}],"variable":[{"key":"alert_id","value":"56825"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"450"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"5bdce991b323f9acd8e91e9ebeb6a415\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"c3be1b9abfc91f535af80236df0eab44"},{"key":"X-Runtime","value":"1.206473"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-11-01\",\n    \"to\": \"2019-11-07\",\n    \"granularity\": \"daily\",\n    \"last_stats_refreshed_at\": \"2019-11-07T10:19:38+01:00\",\n    \"last_stats_at\": \"2019-11-07T10:19:38+01:00\",\n    \"earliest_stats_at\": null,\n    \"stats_data\": {\n        \"entries\": [\n            {\n                \"value\": 344,\n                \"date\": \"2019-11-01\"\n            },\n            {\n                \"value\": 152,\n                \"date\": \"2019-11-02\"\n            },\n            {\n                \"value\": 121,\n                \"date\": \"2019-11-03\"\n            },\n            {\n                \"value\": 658,\n                \"date\": \"2019-11-04\"\n            },\n            {\n                \"value\": 1349,\n                \"date\": \"2019-11-05\"\n            },\n            {\n                \"value\": 838,\n                \"date\": \"2019-11-06\"\n            },\n            {\n                \"value\": 132,\n                \"date\": \"2019-11-07\"\n            }\n        ]\n    }\n}"}],"_postman_id":"e8e4e19c-4538-45bd-ad81-c176c2736a85"},{"name":"Follow an alert top twitter user","id":"65b68aad-2f5a-4f37-b982-f5bcb225cf37","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_twittos/:follower_id/follow","urlObject":{"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_twittos",":follower_id","follow"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"575cb89e-26ce-4af3-9a99-28c5621f1c6a","type":"string","value":"","key":"alert_id"},{"id":"b7962703-08dd-4f86-9397-12bfb26bb72f","type":"string","value":"","key":"follower_id"}]}},"response":[],"_postman_id":"65b68aad-2f5a-4f37-b982-f5bcb225cf37"},{"name":"Unfollow an alert top twitter user","id":"9b6ff675-963d-4af1-b82a-856ae04c3715","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"alert_id\": 102,\n    \"follower_id\": 8\n}"},"url":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_twittos/:follower_id/unfollow","urlObject":{"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_twittos",":follower_id","unfollow"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"260f4c4c-9510-4903-9823-f454c0df15cc","type":"string","value":"","key":"alert_id"},{"id":"a94d30ff-db62-40ed-8778-3922b869fc9f","type":"string","value":"","key":"follower_id"}]}},"response":[],"_postman_id":"9b6ff675-963d-4af1-b82a-856ae04c3715"}],"id":"fd032ef0-9b40-473f-ace6-0e60cf794f0f","event":[{"listen":"prerequest","script":{"id":"f228bcbd-7e10-438b-b667-10dbf8dea9a4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e2b9ebaa-65f0-40f5-b7c3-5de15621fad3","type":"text/javascript","exec":[""]}}],"_postman_id":"fd032ef0-9b40-473f-ace6-0e60cf794f0f","description":""},{"name":"Twitter Profile Insights","item":[{"name":"Top follower actions","item":[{"name":"Unfollow a top follower","id":"f4ba3451-73d3-4742-b40a-2e544c63ace4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_followers/:follower_id/unfollow","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","top_followers",":follower_id","unfollow"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"5e7f962b-ec98-4be2-89a8-6e04db5179bf","type":"string","value":"","key":"account_id"},{"id":"06ce37fb-7bb4-417e-af96-5f8b542b6a71","type":"string","value":"","key":"follower_id"}]}},"response":[],"_postman_id":"f4ba3451-73d3-4742-b40a-2e544c63ace4"},{"name":"Follow a top follower","id":"5de4a769-c1e3-4589-b013-5df51a697deb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_followers/:follower_id/follow","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","top_followers",":follower_id","follow"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"d0129ae3-616d-4c5e-b146-78dfa74af711","type":"string","value":"","key":"account_id"},{"id":"f3b07a89-4c53-4dad-b0a8-d4325ce6d7d7","type":"string","value":"","key":"follower_id"}]}},"response":[],"_postman_id":"5de4a769-c1e3-4589-b013-5df51a697deb"},{"name":"Get top follower's retweets","id":"6ff81855-828f-4871-8c13-cfb59cb8d240","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_followers/:follower_id/retweets?period=custom&from_date=2015-07-07&to_date=2015-08-08","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","top_followers",":follower_id","retweets"],"host":["{{api_host}}"],"query":[{"key":"period","value":"custom"},{"key":"from_date","value":"2015-07-07"},{"key":"to_date","value":"2015-08-08"}],"variable":[{"id":"0c7858e0-346c-496f-8f69-3664ec48ae21","type":"string","value":"","key":"account_id"},{"id":"e43e88ff-e824-4a85-b390-a8a6e00bdb94","type":"string","value":"","key":"follower_id"}]}},"response":[],"_postman_id":"6ff81855-828f-4871-8c13-cfb59cb8d240"},{"name":"Get top follower's replies","id":"5810415f-bfc4-4d4f-a3d3-5893a009d923","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_followers/:follower_id/replies?period=custom&from_date=2015-01-01&to_date=2017-08-08","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","top_followers",":follower_id","replies"],"host":["{{api_host}}"],"query":[{"key":"period","value":"custom"},{"key":"from_date","value":"2015-01-01"},{"key":"to_date","value":"2017-08-08"}],"variable":[{"id":"8361bf88-5f3a-4804-9fca-00aeea87b9c7","type":"string","value":"","key":"account_id"},{"id":"467a6363-c611-48fa-b0b2-85594f9c8f27","type":"string","value":"","key":"follower_id"}]}},"response":[],"_postman_id":"5810415f-bfc4-4d4f-a3d3-5893a009d923"}],"id":"b1bbab51-2b8f-4e2d-bed6-1c502b5e0749","_postman_id":"b1bbab51-2b8f-4e2d-bed6-1c502b5e0749","description":""},{"name":"Get Twitter profile dashboard","id":"b4a6ce36-b44e-4150-823a-3320473f37f6","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/dashboard?period=30days&to_date=2019-10-23","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Specify the period</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code></td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","dashboard"],"host":["{{api_host}}"],"query":[{"key":"period","value":"30days"},{"key":"to_date","value":"2019-10-23"}],"variable":[{"id":"e7202008-c5fe-4111-b20b-b1bd4d565bf0","type":"string","value":"","key":"account_id"}]}},"response":[{"id":"53bd428a-956f-49aa-95f1-36196ad94e7f","name":"Get Tw profile dashboard","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/dashboard?period=30days&to_date=2019-10-23","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","dashboard"],"query":[{"key":"period","value":"30days"},{"key":"to_date","value":"2019-10-23"}],"variable":[{"key":"account_id","value":"1186"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"665"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"7d417b21063a1f34866464d9b8ac73bc\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"43a687735485e1636e2db9152a4b8d03"},{"key":"X-Runtime","value":"1.437253"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"dashboard\": {\n        \"stats_at_date\": \"2019-10-23\",\n        \"previous_date\": \"2019-09-23\",\n        \"period\": \"30days\",\n        \"latest_valid_dashboard_stats_at\": \"2019-11-07\",\n        \"followers_total\": {\n            \"current_value\": 2097,\n            \"previous_value\": 2096,\n            \"previous_previous_value\": 2099,\n            \"percentage\": 0.05,\n            \"delta_value\": 1,\n            \"previous_delta_value\": -4,\n            \"delta_percentage\": -125\n        },\n        \"tweets\": {\n            \"current_value\": 23,\n            \"previous_value\": 32,\n            \"percentage\": -28.13\n        },\n        \"retweets\": {\n            \"current_value\": 4,\n            \"previous_value\": 3,\n            \"percentage\": 33.33\n        },\n        \"favorites\": {\n            \"current_value\": 3,\n            \"previous_value\": 7,\n            \"percentage\": -57.14\n        },\n        \"mentions\": {\n            \"current_value\": 1,\n            \"previous_value\": 0,\n            \"percentage\": null\n        },\n        \"replies\": {\n            \"current_value\": 0,\n            \"previous_value\": 1,\n            \"percentage\": -100\n        }\n    }\n}"}],"_postman_id":"b4a6ce36-b44e-4150-823a-3320473f37f6"},{"name":"Get Twitter profile top followers","id":"d601c1c1-cda7-4168-850d-f1735ba66c69","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_followers?per_page=3&period=custom&from_date=2019-08-23&to_date=2019-11-24&sort_by=followers","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","top_followers"],"host":["{{api_host}}"],"query":[{"key":"per_page","value":"3"},{"key":"period","value":"custom"},{"key":"from_date","value":"2019-08-23"},{"key":"to_date","value":"2019-11-24"},{"key":"sort_by","value":"followers"}],"variable":[{"id":"eff56bd8-3396-468f-ab6b-07a6fc18dddc","type":"string","value":"","key":"account_id"}]}},"response":[{"id":"388d831f-2b5c-4069-8d2b-143da11c5e00","name":"Get Tw profile top followers","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_followers?per_page=3&period=custom&from_date=2019-08-23&to_date=2019-11-24&sort_by=followers","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","top_followers"],"query":[{"key":"per_page","value":"3"},{"key":"period","value":"custom"},{"key":"from_date","value":"2019-08-23"},{"key":"to_date","value":"2019-11-24"},{"key":"sort_by","value":"followers"}],"variable":[{"key":"account_id","value":"1186"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1977"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"dc0d0a7067060d85394cfa6cf8c36cf1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"a5a60ada0058f6bf3e33b9ea0fe58cd5"},{"key":"X-Runtime","value":"1.193502"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"per_page\": 3,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 2084,\n        \"total_pages\": 695,\n        \"out_of_bounds\": false\n    },\n    \"from\": \"2019-08-23T00:00:00+02:00\",\n    \"to\": \"2019-11-24\",\n    \"earliest_followers_stats_at\": \"2018-11-19T01:00:00+01:00\",\n    \"last_followers_stat_at\": \"2019-11-07T13:54:45+01:00\",\n    \"last_top_followers_refreshed_at\": \"2019-11-07T15:00:02+01:00\",\n    \"top_followers\": [\n        {\n            \"id\": 443657,\n            \"twitter_id\": 25458378,\n            \"screen_name\": \"AskAaronLee\",\n            \"name\": \"Aaron Lee\",\n            \"description\": \"Regional Manager @agorapulse. Trying to perfect the art of cappuccino. Introvert with awesome hair. https://t.co/PZNF06OlCy ✉️hi@askaaronlee.com\",\n            \"followers_count\": 1115646,\n            \"followings_count\": 929806,\n            \"location\": \"Malaysia\",\n            \"url\": \"http://AskAaronLee.com\",\n            \"display_url\": \"AskAaronLee.com\",\n            \"ratio_followings_followers\": 0.833424,\n            \"profile_image_url\": \"https://pbs.twimg.com/profile_images/891913174324203520/7CdivJnf_normal.jpg\",\n            \"link\": \"https://twitter.com/AskAaronLee\",\n            \"retweets_count\": null,\n            \"replies_count\": null\n        },\n        {\n            \"id\": 444493,\n            \"twitter_id\": 34356968,\n            \"screen_name\": \"SamsungUS\",\n            \"name\": \"Samsung US\",\n            \"description\": \"Official Twitter of Samsung USA.\",\n            \"followers_count\": 705789,\n            \"followings_count\": 30738,\n            \"location\": \"Etats-Unis\",\n            \"url\": \"http://smsng.us/Q\",\n            \"display_url\": \"smsng.us/Q\",\n            \"ratio_followings_followers\": 0.0435513,\n            \"profile_image_url\": \"https://pbs.twimg.com/profile_images/789480724256722944/2RrMwrFG_normal.jpg\",\n            \"link\": \"https://twitter.com/SamsungUS\",\n            \"retweets_count\": null,\n            \"replies_count\": null\n        },\n        {\n            \"id\": 444503,\n            \"twitter_id\": 6629022,\n            \"screen_name\": \"pressecitron\",\n            \"name\": \"Presse-citron\",\n            \"description\": \"Connectez-vous à l'innovation !\",\n            \"followers_count\": 649583,\n            \"followings_count\": 3270,\n            \"location\": \"Lyon, France\",\n            \"url\": \"http://www.presse-citron.net/\",\n            \"display_url\": \"presse-citron.net\",\n            \"ratio_followings_followers\": 0.005034,\n            \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1059795741605093378/Tnou9Dx3_normal.jpg\",\n            \"link\": \"https://twitter.com/pressecitron\",\n            \"retweets_count\": null,\n            \"replies_count\": null\n        }\n    ]\n}"}],"_postman_id":"d601c1c1-cda7-4168-850d-f1735ba66c69"},{"name":"Get Twitter profile engagement","id":"52eaebbc-bf13-4b86-9851-6f7b6975d078","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/engagement?period=week","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","engagement"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"}],"variable":[{"id":"5f722fa2-fc25-45ab-927f-92d4d1b765f5","type":"string","value":"","key":"account_id"}]}},"response":[{"id":"32a0025a-d1a3-435f-876e-52eaf4e7981e","name":"Get Tw profile engagement","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/engagement?period=week","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","engagement"],"query":[{"key":"period","value":"week"}],"variable":[{"key":"account_id","value":"1186"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1383"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"4990c305816f675402f5ee402764ff1c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"b89f40f91254d03d3c9113d5c62076a9"},{"key":"X-Runtime","value":"1.471654"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-11-01\",\n    \"to\": \"2019-11-07\",\n    \"last_stats_refreshed_at\": \"2019-11-07T15:00:02+01:00\",\n    \"last_stats_at\": \"2019-11-07T01:00:00+01:00\",\n    \"earliest_stats_at\": \"2018-11-19T01:00:00+01:00\",\n    \"stats_data\": {\n        \"mentions\": [\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-07\",\n                \"value\": 0\n            }\n        ],\n        \"replies\": [\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-11-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-07\",\n                \"value\": 0\n            }\n        ],\n        \"tweets\": [\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 2\n            },\n            {\n                \"date\": \"2019-11-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-07\",\n                \"value\": 0\n            }\n        ],\n        \"retweets\": [\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-07\",\n                \"value\": 0\n            }\n        ],\n        \"favorites\": [\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 1\n            },\n            {\n                \"date\": \"2019-11-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-06\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-07\",\n                \"value\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"52eaebbc-bf13-4b86-9851-6f7b6975d078"},{"name":"Get Twitter profile followers evolution","id":"958aa3fd-348e-4d1f-a25c-c10e9d7601ca","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/followers_evolution?period=week","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","followers_evolution"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"}],"variable":[{"id":"482a6d3c-1970-4405-b652-1709a23a4a1c","type":"string","value":"","key":"account_id"}]}},"response":[{"id":"1a536103-1ce0-4dd9-bc23-2a74af14f27e","name":"Get Tw profile followers evolution","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/followers_evolution?period=week","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","followers_evolution"],"query":[{"key":"period","value":"week"}],"variable":[{"key":"account_id","value":"1186"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"447"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"ab8538ce09d4540931df2c16730ec225\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"52054f6861833363a5f075d439de6e16"},{"key":"X-Runtime","value":"1.062406"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-11-01\",\n    \"to\": \"2019-11-07\",\n    \"last_stats_refreshed_at\": \"2019-11-07T15:00:02+01:00\",\n    \"last_stats_at\": \"2019-11-07T01:00:00+01:00\",\n    \"earliest_stats_at\": \"2018-11-23T01:00:00+01:00\",\n    \"stats_data\": {\n        \"followers_delta\": [\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-05\",\n                \"value\": 0\n            },\n            {\n                \"date\": \"2019-11-06\",\n                \"value\": -1\n            },\n            {\n                \"date\": \"2019-11-07\",\n                \"value\": 0\n            }\n        ]\n    }\n}"},{"id":"bb0ac2d3-8e6e-4001-9a54-eba6b128a9b4","name":"followers evolution","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_host}}/twitter/profile_stats/followers_evolution?account_id=852&period=week&token={{api_key}}","host":["{{api_host}}"],"path":["twitter","profile_stats","followers_evolution"],"query":[{"key":"account_id","value":"852"},{"key":"period","value":"week"},{"key":"token","value":"{{api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"CF-RAY","value":"3074ed3abf572f8f-MAD","name":"CF-RAY","description":""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 25 Nov 2016 11:58:04 GMT","name":"Date","description":""},{"key":"Etag","value":"W/\"36a97491c83b5abc6f1e95a980ace1f3\"","name":"Etag","description":""},{"key":"Server","value":"cloudflare-nginx","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Rack-Cache","value":"miss","name":"X-Rack-Cache","description":""},{"key":"X-Request-Id","value":"0d86770a-952d-4467-a926-75f57bd4324f","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.072911","name":"X-Runtime","description":""},{"key":"X-Ua-Compatible","value":"IE=Edge,chrome=1","name":"X-Ua-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.com","path":"/","secure":false,"value":"dd719a7ef97d19ea093b0459155598d811475837513","key":"__cfduid"}],"responseTime":null,"body":"{\"from\":\"2016-11-18\",\"to\":\"2016-11-24\",\"stats_data\":{\"followers_delta\":[{\"date\":\"2016-11-24\",\"value\":null}]}}"}],"_postman_id":"958aa3fd-348e-4d1f-a25c-c10e9d7601ca"},{"name":"Get Twitter profile followers total","id":"cee8269a-05f9-4a10-b8ff-414f6a22e236","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/followers_total?period=week","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","followers_total"],"host":["{{api_host}}"],"query":[{"key":"period","value":"week"},{"disabled":true,"key":"from_date","value":"2017-01-01"},{"disabled":true,"key":"to_date","value":"2017-03-22"}],"variable":[{"id":"41b034c2-72c5-4913-b408-6e0e0ac5cbfc","type":"string","value":"","key":"account_id"}]}},"response":[{"id":"e329c1d3-f24e-4f74-b06b-3cd2f7ac635c","name":"Get Tw profile followers total","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/followers_total?period=week","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","followers_total"],"query":[{"key":"period","value":"week"},{"key":"from_date","value":"2017-01-01","disabled":true},{"key":"to_date","value":"2017-03-22","disabled":true}],"variable":[{"key":"account_id","value":"1186"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"465"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"fa33263bc4fad40fb78bad88e5bf32a8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"8b2ef2bc9abb04eb1ccfffa6b4c02109"},{"key":"X-Runtime","value":"1.084441"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-11-01\",\n    \"to\": \"2019-11-07\",\n    \"last_stats_refreshed_at\": \"2019-11-07T15:00:02+01:00\",\n    \"last_stats_at\": \"2019-11-07T01:00:00+01:00\",\n    \"earliest_stats_at\": \"2018-11-23T01:00:00+01:00\",\n    \"stats_data\": {\n        \"followers_total\": [\n            {\n                \"date\": \"2019-11-01\",\n                \"value\": 2097\n            },\n            {\n                \"date\": \"2019-11-02\",\n                \"value\": 2097\n            },\n            {\n                \"date\": \"2019-11-03\",\n                \"value\": 2096\n            },\n            {\n                \"date\": \"2019-11-04\",\n                \"value\": 2096\n            },\n            {\n                \"date\": \"2019-11-05\",\n                \"value\": 2096\n            },\n            {\n                \"date\": \"2019-11-06\",\n                \"value\": 2095\n            },\n            {\n                \"date\": \"2019-11-07\",\n                \"value\": 2095\n            }\n        ]\n    }\n}"}],"_postman_id":"cee8269a-05f9-4a10-b8ff-414f6a22e236"},{"name":"Get Twitter profile followers distribution by number","id":"1fc7cae5-1129-4dcc-8480-7d10632dfa8d","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/followers_distribution_by_number?from=2019-11-06","description":"<p>It groups your followers according to the number of followers that they have.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","followers_distribution_by_number"],"host":["{{api_host}}"],"query":[{"key":"from","value":"2019-11-06"}],"variable":[{"id":"64014304-2d30-49fe-83be-d823d3aeaca0","type":"string","value":"","key":"account_id"}]}},"response":[{"id":"4eac9d2a-935a-4cd7-b123-1735882e4f40","name":"Get Tw profile followers distribution by number","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/followers_distribution_by_number?from=2019-11-06","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","followers_distribution_by_number"],"query":[{"key":"from","value":"2019-11-06"}],"variable":[{"key":"account_id","value":"1186"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"615"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"a80978316215ad608503e3ed6a89ea58\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"315acd2801a71c5994093be47f39acd3"},{"key":"X-Runtime","value":"3.828805"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-11-07\",\n    \"last_stats_refreshed_at\": \"2019-11-07T15:33:17+01:00\",\n    \"last_stats_at\": \"2019-11-07T01:00:00+01:00\",\n    \"earliest_stats_at\": \"2018-11-23T01:00:00+01:00\",\n    \"stats_data\": {\n        \"followers_layout_by_number\": [\n            {\n                \"key_name\": 1,\n                \"value\": 1155,\n                \"key_title\": \"0 - 500\"\n            },\n            {\n                \"key_name\": 10,\n                \"value\": 295,\n                \"key_title\": \"500 - 1000\"\n            },\n            {\n                \"key_name\": 20,\n                \"value\": 438,\n                \"key_title\": \"1K - 5K\"\n            },\n            {\n                \"key_name\": 30,\n                \"value\": 95,\n                \"key_title\": \"5K - 10K\"\n            },\n            {\n                \"key_name\": 40,\n                \"value\": 90,\n                \"key_title\": \"10K - 50K\"\n            },\n            {\n                \"key_name\": 50,\n                \"value\": 14,\n                \"key_title\": \"50K - 100K\"\n            },\n            {\n                \"key_name\": 60,\n                \"value\": 7,\n                \"key_title\": \"100K - 1M\"\n            },\n            {\n                \"key_name\": 100,\n                \"value\": 1,\n                \"key_title\": \"> 1M\"\n            }\n        ]\n    }\n}"}],"_postman_id":"1fc7cae5-1129-4dcc-8480-7d10632dfa8d"},{"name":"Get Twitter profile followers distribution by ratio","id":"c0dc5041-69d1-498b-bdb7-adb7af289a9e","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/followers_distribution_by_ratio?from=2019-11-06","description":"<p>it groups your followers according to the ratio : number of following/number of followers. So you know how many of your followers follow the same number of people as they have followers, or follow twice more, twice less, three times more etc</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","followers_distribution_by_ratio"],"host":["{{api_host}}"],"query":[{"key":"from","value":"2019-11-06"}],"variable":[{"id":"6d57eb87-7f19-4ec5-b418-8427e078ce6d","type":"string","value":"","key":"account_id"}]}},"response":[],"_postman_id":"c0dc5041-69d1-498b-bdb7-adb7af289a9e"},{"name":"Get Twitter profile top tweets","id":"e919ae86-8437-40a7-b21c-72269e4a8468","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_tweets?from_date=2019-10-01&to_date=2019-10-30&period=custom&sort_by=reached_users&per_page=3","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td>-</td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td>-</td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Search on specific period, when passing a <code>custom</code> period, you must specify a from_date and to_date parameter</td>\n<td>optional</td>\n<td>-</td>\n<td><code>today</code>, <code>week</code>, <code>month</code>, <code>3months</code>, <code>6months</code>, <code>year</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td>-</td>\n<td><code>retweets</code>, <code>favorites</code>, <code>reached_users</code>, <code>published_at</code></td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>File format when choosing to download the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","top_tweets"],"host":["{{api_host}}"],"query":[{"key":"from_date","value":"2019-10-01"},{"key":"to_date","value":"2019-10-30"},{"key":"period","value":"custom"},{"key":"sort_by","value":"reached_users"},{"key":"per_page","value":"3"}],"variable":[{"id":"50e045d1-ee73-4856-8f99-681a84cda209","type":"string","value":"","key":"account_id"}]}},"response":[{"id":"6660e1f3-2037-429a-977d-d15eb9ec37ae","name":"Get Tw profile top tweets","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_tweets?from_date=2019-10-01&to_date=2019-10-30&period=custom&sort_by=reached_users&per_page=3","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","top_tweets"],"query":[{"key":"from_date","value":"2019-10-01"},{"key":"to_date","value":"2019-10-30"},{"key":"period","value":"custom"},{"key":"sort_by","value":"reached_users"},{"key":"per_page","value":"3"}],"variable":[{"key":"account_id","value":"1186"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2896"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"1f62bf59eeb3025db11078affc57011a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"46d96548cec9a72315521088a7ae25c4"},{"key":"X-Runtime","value":"2.205391"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-10-01\",\n    \"to\": \"2019-10-30\",\n    \"last_top_tweets_refreshed_at\": \"2019-11-07T16:00:03+01:00\",\n    \"earliest_tweets_stats_at\": \"2018-11-19T01:00:00+01:00\",\n    \"last_tweets_stats_at\": \"2019-11-07T01:00:00+01:00\",\n    \"paging\": {\n        \"per_page\": 3,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 20,\n        \"total_pages\": 7,\n        \"out_of_bounds\": false\n    },\n    \"top_tweets\": [\n        {\n            \"id\": 48721,\n            \"tweet_type\": 1,\n            \"period\": \"2019-10-24\",\n            \"text\": \"Comment se démarquer sur LinkedIn ? Voici 8 astuces utiles https://t.co/19GGxPsf3V via @mounirdigital\",\n            \"retweets_count\": 2,\n            \"replies_count\": 0,\n            \"favorites_count\": 5,\n            \"reached_users_count\": 2761,\n            \"published_at\": \"2019-10-24T14:35:24+02:00\",\n            \"link\": \"https://twitter.com/alerti/statuses/1187346853181952000\",\n            \"author\": {\n                \"id\": 443020,\n                \"twitter_id\": 87943078,\n                \"screen_name\": \"alerti\",\n                \"name\": \"Alerti\",\n                \"description\": \"Votre solution de veille et d'analyse des sites d'avis, du web et des réseaux sociaux\",\n                \"followers_count\": 2096,\n                \"followings_count\": 805,\n                \"location\": null,\n                \"url\": \"http://www.alerti.com\",\n                \"display_url\": \"alerti.com\",\n                \"ratio_followings_followers\": 0.384065,\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1017437779821826048/Maqh4hmZ_normal.jpg\",\n                \"link\": \"https://twitter.com/alerti\"\n            }\n        },\n        {\n            \"id\": 48773,\n            \"tweet_type\": 1,\n            \"period\": \"2019-10-29\",\n            \"text\": \"Storytelling : 5 types d’histoires efficaces pour séduire et enchanter vos lecteurs https://t.co/HY32FndWNY via @webmarketingcom\",\n            \"retweets_count\": 0,\n            \"replies_count\": 0,\n            \"favorites_count\": 0,\n            \"reached_users_count\": 2098,\n            \"published_at\": \"2019-10-29T09:25:36+01:00\",\n            \"link\": \"https://twitter.com/alerti/statuses/1189095928566861824\",\n            \"author\": {\n                \"id\": 443020,\n                \"twitter_id\": 87943078,\n                \"screen_name\": \"alerti\",\n                \"name\": \"Alerti\",\n                \"description\": \"Votre solution de veille et d'analyse des sites d'avis, du web et des réseaux sociaux\",\n                \"followers_count\": 2096,\n                \"followings_count\": 805,\n                \"location\": null,\n                \"url\": \"http://www.alerti.com\",\n                \"display_url\": \"alerti.com\",\n                \"ratio_followings_followers\": 0.384065,\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1017437779821826048/Maqh4hmZ_normal.jpg\",\n                \"link\": \"https://twitter.com/alerti\"\n            }\n        },\n        {\n            \"id\": 48796,\n            \"tweet_type\": 1,\n            \"period\": \"2019-10-30\",\n            \"text\": \"Une page Facebook a permis de résoudre une affaire de disparition vieille de 15 ans - @Numerama https://t.co/EMyICGmmaE\",\n            \"retweets_count\": 0,\n            \"replies_count\": 0,\n            \"favorites_count\": 0,\n            \"reached_users_count\": 2098,\n            \"published_at\": \"2019-10-30T10:00:02+01:00\",\n            \"link\": \"https://twitter.com/alerti/statuses/1189466982489432066\",\n            \"author\": {\n                \"id\": 443020,\n                \"twitter_id\": 87943078,\n                \"screen_name\": \"alerti\",\n                \"name\": \"Alerti\",\n                \"description\": \"Votre solution de veille et d'analyse des sites d'avis, du web et des réseaux sociaux\",\n                \"followers_count\": 2096,\n                \"followings_count\": 805,\n                \"location\": null,\n                \"url\": \"http://www.alerti.com\",\n                \"display_url\": \"alerti.com\",\n                \"ratio_followings_followers\": 0.384065,\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1017437779821826048/Maqh4hmZ_normal.jpg\",\n                \"link\": \"https://twitter.com/alerti\"\n            }\n        }\n    ]\n}"}],"_postman_id":"e919ae86-8437-40a7-b21c-72269e4a8468"},{"name":"Get Twitter profile top tweet's retweets","id":"605c2205-fe6f-4374-917b-f8b8c512d864","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_tweets/:top_tweet_id/retweets","urlObject":{"path":["{{api_version}}","twitter","profile_stats",":account_id","top_tweets",":top_tweet_id","retweets"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"780f28b0-6d3f-4d65-ba96-5a2008984e6c","type":"string","value":"","key":"account_id"},{"id":"9cf75083-6790-462c-baae-976882e7f8ba","type":"string","value":"","key":"top_tweet_id"}]}},"response":[{"id":"20601305-d4c3-4672-9707-c471cf7c0699","name":"Get Tw profile top tweet's retweets","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/twitter/profile_stats/:account_id/top_tweets/:top_tweet_id/retweets","host":["{{api_host}}"],"path":["{{api_version}}","twitter","profile_stats",":account_id","top_tweets",":top_tweet_id","retweets"],"variable":[{"key":"account_id","value":"1186"},{"key":"top_tweet_id","value":"48721"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1945"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"e7ea3a70a66d5604e885bda3470fda2e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"f0e00025986f471684b4705900f57f37"},{"key":"X-Runtime","value":"1.347442"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"retweets\": [\n        {\n            \"id\": 48739,\n            \"tweet_type\": 3,\n            \"period\": \"2019-10-24\",\n            \"text\": \"RT @alerti: Comment se démarquer sur LinkedIn ? Voici 8 astuces utiles https://t.co/19GGxPsf3V via @mounirdigital\",\n            \"retweets_count\": null,\n            \"replies_count\": null,\n            \"favorites_count\": 0,\n            \"reached_users_count\": null,\n            \"published_at\": \"2019-10-24T23:14:20+02:00\",\n            \"link\": \"https://twitter.com/SoniaBlock/statuses/1187477445894500354\",\n            \"author\": {\n                \"id\": 468656,\n                \"twitter_id\": 872785253718532096,\n                \"screen_name\": \"SoniaBlock\",\n                \"name\": \"Sonia Block-Saghir\",\n                \"description\": \"digital business & marketing, Assurance, Banque & Finance : @ESGexecutive, @MBAebusiness #digital  #marketing\",\n                \"followers_count\": 402,\n                \"followings_count\": 494,\n                \"location\": \"Ile-de-France, France\",\n                \"url\": \"https://twitter.com/SoniaBlock\",\n                \"display_url\": \"https://twitter.com/SoniaBlock\",\n                \"ratio_followings_followers\": 1.22886,\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/904745820003676160/36cMtjLe_normal.jpg\",\n                \"link\": \"https://twitter.com/SoniaBlock\"\n            }\n        },\n        {\n            \"id\": 48741,\n            \"tweet_type\": 3,\n            \"period\": \"2019-10-25\",\n            \"text\": \"RT @alerti: Comment se démarquer sur LinkedIn ? Voici 8 astuces utiles https://t.co/19GGxPsf3V via @mounirdigital\",\n            \"retweets_count\": null,\n            \"replies_count\": null,\n            \"favorites_count\": 0,\n            \"reached_users_count\": null,\n            \"published_at\": \"2019-10-25T07:25:48+02:00\",\n            \"link\": \"https://twitter.com/SarahMachat/statuses/1187601129670090753\",\n            \"author\": {\n                \"id\": 468681,\n                \"twitter_id\": 325138033,\n                \"screen_name\": \"SarahMachat\",\n                \"name\": \"Sarah\",\n                \"description\": \"Maître de conférences en #Marketing et #SocialMedia\\nJe m'intéresse plus généralement au #webmarketing #SEO #SEA #SMO #Ecommerce #numérique\",\n                \"followers_count\": 262,\n                \"followings_count\": 305,\n                \"location\": \"Rochelle, Poitou-Charentes\",\n                \"url\": \"https://twitter.com/SarahMachat\",\n                \"display_url\": \"https://twitter.com/SarahMachat\",\n                \"ratio_followings_followers\": 1.16412,\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/558575111104512002/EBJ7gbW3_normal.jpeg\",\n                \"link\": \"https://twitter.com/SarahMachat\"\n            }\n        }\n    ]\n}"}],"_postman_id":"605c2205-fe6f-4374-917b-f8b8c512d864"}],"id":"d598e29b-3bc1-458d-bf10-422dccdb8697","description":"<p>These endpoints gives you statistics on a twitter account.</p>\n","event":[{"listen":"prerequest","script":{"id":"c9d53be7-67e2-4d76-8461-b61019c151fe","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9fee5039-75fe-45f9-b1ca-b9b5996f530b","type":"text/javascript","exec":[""]}}],"_postman_id":"d598e29b-3bc1-458d-bf10-422dccdb8697"}],"id":"ec53ba81-751d-4b63-957f-21acf31024cd","event":[{"listen":"prerequest","script":{"id":"716459b2-5073-40d1-a8d7-dc4ff6093573","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e1e9f529-359b-4da1-bcd5-76f92c8646d3","type":"text/javascript","exec":[""]}}],"_postman_id":"ec53ba81-751d-4b63-957f-21acf31024cd","description":""}],"id":"eda8e711-3656-4c00-820f-1d31cbfc0b26","_postman_id":"eda8e711-3656-4c00-820f-1d31cbfc0b26","description":""},{"name":"Instagram","item":[{"name":"Instagram Accounts","item":[{"name":"Get my instagram accounts","id":"f9da6f29-e3bb-422c-8c49-e9023a3591a1","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/instagram/accounts","description":"<p>Get my own instagram accounts</p>\n","urlObject":{"path":["{{api_version}}","instagram","accounts"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"6419b9b9-6f4a-4084-a1f0-4ef58855ee11","name":"Get my instagram accounts","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/instagram/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"336"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"23fd59162a4b8bd4654e1f702e304f66\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"7190b75cfa8be3bd33df18c2f72e04b1"},{"key":"X-Runtime","value":"1.870815"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"instagram_accounts\": [\n        {\n            \"id\": 105,\n            \"user_id\": 502,\n            \"instagram_id\": \"1527350570\",\n            \"is_valid\": true,\n            \"username\": \"studiostephanied\",\n            \"profile_picture\": \"https://scontent.cdninstagram.com/vp/65469c46b8405ff796543df23e5341b3/5C1D5C93/t51.2885-19/s150x150/26073523_2099220013641898_2279305226630463488_n.jpg\",\n            \"created_at\": \"2018-09-03T11:03:48+02:00\"\n        }\n    ]\n}"}],"_postman_id":"f9da6f29-e3bb-422c-8c49-e9023a3591a1"},{"name":"Get my instagram business accounts","id":"9808a3eb-db27-45dd-a889-e76018830ab4","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts?per_page=2","description":"<p>Get all instagram accounts I can access statistics. It means the one I own or my collaborator's</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts"],"host":["{{api_host}}"],"query":[{"key":"per_page","value":"2"}],"variable":[]}},"response":[{"id":"36e2366a-0610-433b-9f6b-870345c50a03","name":"Get my instagram business accounts","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/instagram/business_accounts?per_page=2","host":["{{api_host}}"],"path":["{{api_version}}","instagram","business_accounts"],"query":[{"key":"per_page","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"3258"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"b7a00291992bad91ea206f44a02ca708\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"afe3860db48887aee061c9f23d691db2"},{"key":"X-Runtime","value":"0.817893"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"instagram_business_accounts\": [\n        {\n            \"id\": 13,\n            \"alert_id\": 56183,\n            \"facebook_account_id\": 819,\n            \"instagram_id\": \"17841400177308672\",\n            \"username\": \"docksvillage\",\n            \"name\": \"Les Docks Village\",\n            \"profile_picture_url\": \"https://scontent.xx.fbcdn.net/v/t51.2885-15/11248293_132619067080013_401259931_a.jpg?_nc_cat=106&_nc_ht=scontent.xx&oh=18b3104c96d7cf211c1690c0bdcac33e&oe=5CD92B09\",\n            \"created_at\": \"2018-10-03T11:39:57+02:00\",\n            \"last_stats\": {\n                \"refreshed_at\": \"2019-08-04T09:02:01+02:00\",\n                \"dashboard\": \"2019-08-04\",\n                \"followers_total\": \"2019-08-04\",\n                \"followers_total_by_country\": \"2019-08-04\",\n                \"followers_total_by_locale\": \"2019-08-04\",\n                \"followers_total_by_gender\": \"2019-08-04\",\n                \"typology\": \"2019-08-03\",\n                \"post_engagement\": \"2019-08-03\",\n                \"story_engagement\": \"2019-08-02\"\n            },\n            \"earliest_stats\": {\n                \"dashboard\": \"2018-10-03\",\n                \"followers_total\": \"2018-10-03\",\n                \"followers_total_by_country\": \"2018-10-03\",\n                \"followers_total_by_locale\": \"2018-10-03\",\n                \"followers_total_by_gender\": \"2018-10-03\",\n                \"typology\": \"2018-07-06\",\n                \"post_engagement\": \"2018-07-06\",\n                \"story_engagement\": \"2018-10-04\"\n            },\n            \"facebook_account\": {\n                \"id\": 819,\n                \"facebook_id\": \"10152901437193773\",\n                \"is_valid\": false,\n                \"mark_as_deleted\": false,\n                \"expire_at\": \"2018-12-02T10:35:55+01:00\",\n                \"invalid_at\": \"2019-08-04T17:53:52+02:00\",\n                \"later_at\": null,\n                \"first_name\": \"Djivan\",\n                \"last_name\": \"Minassian\",\n                \"scopes\": [\n                    \"email\",\n                    \"read_insights\",\n                    \"manage_pages\",\n                    \"pages_show_list\",\n                    \"publish_pages\",\n                    \"business_management\",\n                    \"instagram_basic\",\n                    \"instagram_manage_comments\",\n                    \"instagram_manage_insights\",\n                    \"public_profile\"\n                ],\n                \"avatar_url\": \"https://graph.facebook.com/10152901437193773/picture\",\n                \"expiring_soon\": true,\n                \"postpone_update\": false\n            }\n        },\n        {\n            \"id\": 95,\n            \"alert_id\": 56438,\n            \"facebook_account_id\": 819,\n            \"instagram_id\": \"17841401637123864\",\n            \"username\": \"studiostephanied\",\n            \"name\": \"Studio Stephanie D\",\n            \"profile_picture_url\": \"https://scontent.xx.fbcdn.net/v/t51.2885-15/26073523_2099220013641898_2279305226630463488_n.jpg?_nc_cat=109&_nc_ht=scontent.xx&oh=17deaff09763c845547e953f664a52c7&oe=5CA7FD24\",\n            \"created_at\": \"2018-12-19T23:02:47+01:00\",\n            \"last_stats\": {\n                \"refreshed_at\": \"2019-08-04T09:00:00+02:00\",\n                \"dashboard\": \"2019-08-04\",\n                \"followers_total\": \"2019-08-04\",\n                \"followers_total_by_country\": \"2019-08-04\",\n                \"followers_total_by_locale\": \"2019-08-04\",\n                \"followers_total_by_gender\": \"2019-08-04\",\n                \"typology\": \"2019-07-29\",\n                \"post_engagement\": \"2019-07-29\",\n                \"story_engagement\": \"2019-07-29\"\n            },\n            \"earliest_stats\": {\n                \"dashboard\": \"2018-12-19\",\n                \"followers_total\": \"2018-12-19\",\n                \"followers_total_by_country\": \"2018-12-19\",\n                \"followers_total_by_locale\": \"2018-12-19\",\n                \"followers_total_by_gender\": \"2018-12-19\",\n                \"typology\": \"2018-09-21\",\n                \"post_engagement\": \"2018-09-21\",\n                \"story_engagement\": \"2019-01-15\"\n            },\n            \"facebook_account\": {\n                \"id\": 819,\n                \"facebook_id\": \"10152901437193773\",\n                \"is_valid\": false,\n                \"mark_as_deleted\": false,\n                \"expire_at\": \"2018-12-02T10:35:55+01:00\",\n                \"invalid_at\": \"2019-08-04T17:53:52+02:00\",\n                \"later_at\": null,\n                \"first_name\": \"Djivan\",\n                \"last_name\": \"Minassian\",\n                \"scopes\": [\n                    \"email\",\n                    \"read_insights\",\n                    \"manage_pages\",\n                    \"pages_show_list\",\n                    \"publish_pages\",\n                    \"business_management\",\n                    \"instagram_basic\",\n                    \"instagram_manage_comments\",\n                    \"instagram_manage_insights\",\n                    \"public_profile\"\n                ],\n                \"avatar_url\": \"https://graph.facebook.com/10152901437193773/picture\",\n                \"expiring_soon\": true,\n                \"postpone_update\": false\n            }\n        }\n    ],\n    \"paging\": {\n        \"per_page\": 2,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 17,\n        \"total_pages\": 9,\n        \"out_of_bounds\": false\n    }\n}"}],"_postman_id":"9808a3eb-db27-45dd-a889-e76018830ab4"},{"name":"Get instagram business account info","id":"fc9efb77-8f7e-4e2a-9bf0-4d37921817b7","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"41891516-efec-45c6-bdc1-0942be9bd25f","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"dad3d38b-5b7a-4f54-a35f-129c4bbbf49c","name":"Get instagram business account info","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id","host":["{{api_host}}"],"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id"],"variable":[{"key":"instagram_business_account_id","value":"142"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1546"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"9c5a3960fb37c353b848432271d77d51\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"450a5e94852219c0fb9c36ef95d150a1"},{"key":"X-Runtime","value":"0.665676"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"instagram_business_account\": {\n        \"id\": 142,\n        \"alert_id\": 56960,\n        \"facebook_account_id\": 820,\n        \"instagram_id\": \"17841400660453371\",\n        \"username\": \"alertiapp\",\n        \"name\": \"Alerti\",\n        \"profile_picture_url\": \"https://scontent.xx.fbcdn.net/v/t51.2885-15/43669620_1911340232495947_568254311046316032_n.jpg?_nc_cat=101&_nc_oc=AQliz22qzSKwAPOJGC60kE-1wv8BqCm8vkKVryxlR9NzXs9hNRUYn8QMjdOOx91GUsI&_nc_ht=scontent.xx&oh=cbbf035a46d04bfc5209159a6d8df9f1&oe=5E12DD83\",\n        \"created_at\": \"2019-08-25T18:02:03+02:00\",\n        \"last_stats\": {\n            \"refreshed_at\": \"2019-11-07T09:04:02+01:00\",\n            \"dashboard\": \"2019-11-07\",\n            \"followers_total\": \"2019-11-07\",\n            \"followers_total_by_country\": \"2019-11-07\",\n            \"followers_total_by_locale\": \"2019-11-07\",\n            \"followers_total_by_gender\": \"2019-11-07\",\n            \"typology\": null,\n            \"post_engagement\": null,\n            \"story_engagement\": null\n        },\n        \"earliest_stats\": {\n            \"dashboard\": \"2019-08-25\",\n            \"followers_total\": \"2019-08-25\",\n            \"followers_total_by_country\": \"2019-08-25\",\n            \"followers_total_by_locale\": \"2019-08-25\",\n            \"followers_total_by_gender\": \"2019-08-25\",\n            \"typology\": null,\n            \"post_engagement\": null,\n            \"story_engagement\": null\n        },\n        \"facebook_account\": {\n            \"id\": 820,\n            \"facebook_id\": \"10153248879753413\",\n            \"is_valid\": true,\n            \"mark_as_deleted\": false,\n            \"expire_at\": \"2019-08-19T12:16:39+02:00\",\n            \"invalid_at\": null,\n            \"later_at\": null,\n            \"first_name\": \"Gaelle\",\n            \"last_name\": \"Francois\",\n            \"scopes\": [\n                \"email\",\n                \"read_insights\",\n                \"manage_pages\",\n                \"pages_show_list\",\n                \"publish_pages\",\n                \"instagram_basic\",\n                \"instagram_manage_comments\",\n                \"instagram_manage_insights\",\n                \"public_profile\"\n            ],\n            \"avatar_url\": \"https://graph.facebook.com/10153248879753413/picture\",\n            \"expiring_soon\": true,\n            \"postpone_update\": false\n        }\n    }\n}"}],"_postman_id":"fc9efb77-8f7e-4e2a-9bf0-4d37921817b7"}],"id":"34e83aca-31b8-426d-b782-e2948356ea01","event":[{"listen":"prerequest","script":{"id":"240c131b-1e2c-452a-9ec1-a2dc31ce49cd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"32410def-624b-4b67-bbf8-78c8669c965b","type":"text/javascript","exec":[""]}}],"_postman_id":"34e83aca-31b8-426d-b782-e2948356ea01","description":""},{"name":"Instagram Entry Actions","item":[{"name":"Post a reply on Instagram","id":"6d8116cf-8c59-4eb5-9bac-82306e68c4dd","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"api comment\"\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/instagram/reply","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>Message to send</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","instagram","reply"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"d8f34e99-7764-42b0-88fa-2b43096a6dd9","type":"string","value":"","key":"alert_id"},{"id":"1ffcadaa-5163-45da-a0ae-a9cb004039f5","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"6d8116cf-8c59-4eb5-9bac-82306e68c4dd"},{"name":"Delete comment on instagram","id":"9e02ca79-9d5c-4718-b38c-06159604e85d","request":{"method":"DELETE","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"raw","raw":""},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/instagram/comment","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","instagram","comment"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"0045ac65-ff98-437d-ad37-3286804354c1","type":"string","value":"","key":"alert_id"},{"id":"29fe879c-6e23-43e4-ad9b-d2ce097fd62e","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"9e02ca79-9d5c-4718-b38c-06159604e85d"}],"id":"74872968-b433-4538-9f98-9835a789e94c","event":[{"listen":"prerequest","script":{"id":"8cfe36fb-a4f6-4f02-b471-233d10f8e7f9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"225da415-2e2a-4763-99a4-dc31111730c2","type":"text/javascript","exec":[""]}}],"_postman_id":"74872968-b433-4538-9f98-9835a789e94c","description":""},{"name":"Instagram Business Insights","item":[{"name":"Get Insta business account dashboard","id":"cdaf1ac2-ed21-44ce-b810-4ae683016c0e","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/dashboard?period=week&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Specify the period</td>\n<td>mandatory</td>\n<td>-</td>\n<td><code>day</code>, <code>week</code>, <code>30days</code>, <code>month</code></td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","dashboard"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>day</code>, <code>week</code>, <code>30days</code> or <code>month</code></p>\n","type":"text/plain"},"key":"period","value":"week"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"db64d486-a435-4d2b-a6cf-7a15fef6c163","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"bcb993dd-260e-48cc-88aa-28f878f5b649","name":"Get dashboard stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/dashboard/?period=week&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","dashboard",""],"query":[{"key":"period","value":"week"},{"key":"to","value":"2018-10-24"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"3fd69baa72519f52b7b594653b943639\""},{"key":"X-Runtime","value":"0.606059"},{"key":"X-Request-Id","value":"16a6b3f57508f4a582af2b78b862e2ea"},{"key":"Date","value":"Mon, 29 Oct 2018 10:11:33 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"dashboard\": {\n        \"instagram_business_account\": {\n            \"id\": 38\n        },\n        \"stats_at_date\": \"2018-10-24\",\n        \"previous_date\": null,\n        \"period\": \"week\",\n        \"stats\": {\n            \"followers_total\": {\n                \"current_value\": 2,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"followers_delta\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_entries\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_reach\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_impressions\": {\n                \"current_value\": 2,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts_average_reach\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts_average_engagement\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories_average_reach\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories_completion_rate\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            }\n        }\n    }\n}"}],"_postman_id":"cdaf1ac2-ed21-44ce-b810-4ae683016c0e"},{"name":"Get Insta business account awareness","id":"19162db5-feba-455e-a8fb-5d2a9ffeb4cb","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/awareness?granularity=daily&from=2018-10-01&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","awareness"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"22c1013b-4b76-41eb-bba3-f1907457fee0","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"9c08d383-0796-4054-bbeb-4a8c60b1aa80","name":"get awareness stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/awareness/?granularity=daily&from=2018-10-01&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","awareness",""],"query":[{"key":"granularity","value":"daily","description":"daily, weekly, or monthly"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"92"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"b705e6a2ddbbbca9ef50031e4be6de5c\""},{"key":"X-Runtime","value":"0.512163"},{"key":"X-Request-Id","value":"ef583339f3110a1a15fd9d2d1fff8f76"},{"key":"Date","value":"Mon, 29 Oct 2018 10:17:48 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"date\": \"2018-10-22\",\n            \"typology_mentions_count\": 2,\n            \"typology_tagged_media_count\": 0\n        }\n    ]\n}"}],"_postman_id":"19162db5-feba-455e-a8fb-5d2a9ffeb4cb"},{"name":"Get Insta business account posts engagement","id":"9d1d4654-47e7-456f-a2a2-3f0acb6545e1","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/engagement/posts?granularity=daily&from=2018-10-01&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","engagement","posts"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"b21ec781-7ee0-43d4-ae79-f8e092b04260","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"c42cdd11-559f-4b4b-a3af-5ada77176046","name":"get post engagement stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/engagement/posts/?granularity=daily&from=2018-10-01&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","engagement","posts",""],"query":[{"key":"granularity","value":"daily","description":"`daily`, `weekly`, or `monthly`"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"125"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"afbf6bb52b25edad60814586c569aea2\""},{"key":"X-Runtime","value":"1.049924"},{"key":"X-Request-Id","value":"5dec38e3920d20cc80171ae50765045d"},{"key":"Date","value":"Tue, 30 Oct 2018 04:54:06 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"date\": \"2018-10-24\",\n            \"post_likes_count\": 0,\n            \"post_comments_count\": 0,\n            \"post_saved_count\": 0,\n            \"post_video_views_count\": 0\n        }\n    ]\n}"}],"_postman_id":"9d1d4654-47e7-456f-a2a2-3f0acb6545e1"},{"name":"Get Insta business account stories engagement","id":"2bf30672-9dfc-487c-b144-67af8b93c50f","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/engagement/stories?granularity=daily&from=2018-10-01&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","engagement","stories"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"5535e9f0-0ca7-44e4-a814-f876a9c8f857","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[],"_postman_id":"2bf30672-9dfc-487c-b144-67af8b93c50f"},{"name":"Get Insta business account posts engagement rates","id":"495864ff-15a6-40b3-b865-f118e86345c7","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/engagement/posts_rates?granularity=daily&from=2018-10-01&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","engagement","posts_rates"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"471959af-1a74-4731-bc25-1b946d084b70","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"dc7cb4d5-ac99-483d-979c-147bcacbd98d","name":"get post engagement rate stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/engagement/posts_rates/?granularity=daily&from=2018-10-01&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","engagement","posts_rates",""],"query":[{"key":"granularity","value":"daily","description":"`daily`, `weekly`, or `monthly`"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"312b07812de70ad17ccd3d206807ef5b\""},{"key":"X-Runtime","value":"0.361071"},{"key":"X-Request-Id","value":"04dad26974252b4480b84ce9288890f3"},{"key":"Date","value":"Tue, 30 Oct 2018 04:56:41 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"date\": \"2018-10-24\",\n            \"engagement_rate\": \"0.0\"\n        }\n    ],\n    \"average_rate\": 0\n}"}],"_postman_id":"495864ff-15a6-40b3-b865-f118e86345c7"},{"name":"Get Insta business account followers total","id":"39f01c83-5792-47ae-b4d7-8e95d74f2dea","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/followers_total?granularity=daily&from=2018-10-01&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","followers_total"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"4b71f83f-236c-4942-9720-c83959e001e4","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"5feb9757-c977-429c-8bef-45a7a800859d","name":"get followers total stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/followers_total?granularity=daily&from=2018-10-01&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","followers_total"],"query":[{"key":"granularity","value":"daily","description":"`daily`, `weekly`, or `monthly`"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"52"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"b63850066b559794a0f240b7eb51940a\""},{"key":"X-Runtime","value":"0.344583"},{"key":"X-Request-Id","value":"93ae616f2d0d8fa324396819ea2dd431"},{"key":"Date","value":"Tue, 30 Oct 2018 04:58:09 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"date\": \"2018-10-24\",\n            \"followers_count\": 2\n        }\n    ]\n}"}],"_postman_id":"39f01c83-5792-47ae-b4d7-8e95d74f2dea"},{"name":"Get Insta business account followers total by gender","id":"b6d75037-ccd9-48f1-95db-e7be2a6904ae","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/followers_total/by_gender?to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","followers_total","by_gender"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"141772aa-a63a-46fb-9696-887b854750fb","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"64c075c3-0ee1-4f21-95ba-631e3e267d50","name":"get followers by gender stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/followers_total/by_gender?to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","followers_total","by_gender"],"query":[{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"80"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"3aa7079977ca38f7ff70bbf88cc10d54\""},{"key":"X-Runtime","value":"0.287654"},{"key":"X-Request-Id","value":"be95541def2d8dd7f0089b3e99e42e56"},{"key":"Date","value":"Tue, 30 Oct 2018 08:28:25 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"age_range\": \"25-34\",\n            \"male_count\": 1,\n            \"female_count\": 0,\n            \"total_count\": 1\n        }\n    ]\n}"}],"_postman_id":"b6d75037-ccd9-48f1-95db-e7be2a6904ae"},{"name":"Get Insta business account followers total by country","id":"10f9b637-d5a0-4953-9898-86a49454c85b","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/followers_total/by_country?page=1&per_page=10&to=2018-10-24&dl=&file_format=","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","followers_total","by_country"],"host":["{{api_host}}"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"10"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"},{"description":{"content":"<p><code>true</code> or <code>false</code></p>\n","type":"text/plain"},"key":"dl","value":""},{"description":{"content":"<p><code>excel</code> or <code>csv</code></p>\n","type":"text/plain"},"key":"file_format","value":""}],"variable":[{"id":"e32a7ab9-dc6e-42e2-b3d3-ec8004b09933","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"3ec87f79-1c46-4c51-8a3b-72cccbafb28e","name":"get followers by country stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/followers_total/by_country?page=1&per_page=10&to=2018-10-24&dl=&file_format=","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","followers_total","by_country"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"10"},{"key":"to","value":"2018-10-24","description":"a date"},{"key":"dl","value":"","description":"`true` or `false`"},{"key":"file_format","value":"","description":"`excel` or `csv`"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"0b77ca7f36ef370d31525a54560c1d91\""},{"key":"X-Runtime","value":"0.386757"},{"key":"X-Request-Id","value":"4a39b842d192201a76fc4370fec46649"},{"key":"Date","value":"Tue, 30 Oct 2018 08:15:38 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"label\": \"Vietnam\",\n            \"count\": 1,\n            \"ratio\": 1\n        }\n    ],\n    \"paging\": {\n        \"per_page\": 10,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 1,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    }\n}"}],"_postman_id":"10f9b637-d5a0-4953-9898-86a49454c85b"},{"name":"Get Insta business account followers total by langage","id":"657e4a9b-b5a3-465c-b15b-220548f555d3","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/followers_total/by_language?granularity=daily&to=2018-10-24&dl&file_format","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","followers_total","by_language"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"},{"description":{"content":"<p><code>true</code> or <code>false</code></p>\n","type":"text/plain"},"key":"dl","value":""},{"description":{"content":"<p><code>excel</code> or <code>csv</code></p>\n","type":"text/plain"},"key":"file_format","value":""}],"variable":[{"id":"05a2677c-2d7d-4c10-8448-a2e3afba92ba","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"98361b9d-a1f2-410e-8a15-e9181d1b74e2","name":"get followers by language stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/followers_total/by_language?granularity=daily&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","followers_total","by_language"],"query":[{"key":"granularity","value":"daily","description":"`daily`, `weekly`, or `monthly`"},{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"7e0164532a71cff3da27a4c59cf7699b\""},{"key":"X-Runtime","value":"0.290287"},{"key":"X-Request-Id","value":"c4eb41ce103593b816ea8a181356b380"},{"key":"Date","value":"Tue, 30 Oct 2018 05:02:08 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"label\": \"English (United Kingdom)\",\n            \"count\": 1,\n            \"ratio\": 1\n        }\n    ],\n    \"paging\": {\n        \"per_page\": 10,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 1,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    }\n}"}],"_postman_id":"657e4a9b-b5a3-465c-b15b-220548f555d3"},{"name":"Get Insta business account impressions","id":"0259bbbf-2e7a-4301-ad80-b9a16b00be10","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/impressions?granularity=daily&from=2018-10-01&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","impressions"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"d228712e-a42c-4b33-82b1-269422003eca","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"72b9f495-2e45-4499-825a-0d1d03d33d3d","name":"get impressions stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/impressions?granularity=daily&from=2018-10-01&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","impressions"],"query":[{"key":"granularity","value":"daily","description":"`daily`, `weekly`, or `monthly`"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"32745570dc815233fff91813ed3edf8b\""},{"key":"X-Runtime","value":"0.530027"},{"key":"X-Request-Id","value":"4ee6faebebee8533432ce46e9ac77190"},{"key":"Date","value":"Tue, 30 Oct 2018 05:06:54 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"account\": [\n            {\n                \"date\": \"2018-10-01\",\n                \"impressions\": 13\n            },\n            {\n                \"date\": \"2018-10-02\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-03\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-04\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-05\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-06\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-07\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-08\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-09\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-10\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-11\",\n                \"impressions\": 6\n            },\n            {\n                \"date\": \"2018-10-12\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-13\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-14\",\n                \"impressions\": 4\n            },\n            {\n                \"date\": \"2018-10-15\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-16\",\n                \"impressions\": 4\n            },\n            {\n                \"date\": \"2018-10-17\",\n                \"impressions\": 3\n            },\n            {\n                \"date\": \"2018-10-18\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-19\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-20\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-21\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-22\",\n                \"impressions\": 2\n            },\n            {\n                \"date\": \"2018-10-23\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-24\",\n                \"impressions\": 0\n            }\n        ],\n        \"posts\": [\n            {\n                \"date\": \"2018-10-01\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-02\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-03\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-04\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-05\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-06\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-07\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-08\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-09\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-10\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-11\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-12\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-13\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-14\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-15\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-16\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-17\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-18\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-19\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-20\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-21\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-22\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-23\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-24\",\n                \"impressions\": 0\n            }\n        ],\n        \"albums\": [\n            {\n                \"date\": \"2018-10-01\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-02\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-03\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-04\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-05\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-06\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-07\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-08\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-09\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-10\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-11\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-12\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-13\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-14\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-15\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-16\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-17\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-18\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-19\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-20\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-21\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-22\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-23\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-24\",\n                \"impressions\": 0\n            }\n        ],\n        \"stories\": [\n            {\n                \"date\": \"2018-10-01\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-02\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-03\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-04\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-05\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-06\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-07\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-08\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-09\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-10\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-11\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-12\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-13\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-14\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-15\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-16\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-17\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-18\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-19\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-20\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-21\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-22\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-23\",\n                \"impressions\": 0\n            },\n            {\n                \"date\": \"2018-10-24\",\n                \"impressions\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"0259bbbf-2e7a-4301-ad80-b9a16b00be10"},{"name":"Get Insta business account top posts","id":"175bdb67-3b84-4ae0-96d4-035dacb2d63c","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/top_posts?sort_by=likes&sort=desc&from=2018-10-01&to=2018-10-24&page=1&per_page=10&dl&file_format","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td><code>desc</code></td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td><code>likes</code></td>\n<td><code>likes</code>, <code>comments</code>, <code>saved</code>, <code>video_views</code>, <code>impressions</code>, <code>reach</code>, <code>caption</code>, <code>timestamp</code>, <code>media_type</code></td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","top_posts"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>likes</code>, <code>comments</code>, <code>saved</code>, <code>video_views</code>, <code>impressions</code>, <code>reach</code>, <code>caption</code>, <code>timestamp</code> or <code>media_type</code></p>\n","type":"text/plain"},"key":"sort_by","value":"likes"},{"description":{"content":"<p><code>asc</code> or <code>desc</code></p>\n","type":"text/plain"},"key":"sort","value":"desc"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"},{"key":"page","value":"1"},{"key":"per_page","value":"10"},{"description":{"content":"<p><code>true</code> or <code>false</code></p>\n","type":"text/plain"},"key":"dl","value":""},{"description":{"content":"<p><code>excel</code> or <code>csv</code></p>\n","type":"text/plain"},"key":"file_format","value":""}],"variable":[{"id":"cb24dc9b-76c3-4c0c-9acb-77688075870a","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"081eb063-26b4-426d-a679-cd5c2511c49a","name":"get top posts stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/top_posts?sort_by=likes&sort=desc&from=2018-10-01&to=2018-10-24&page=1&per_page=10","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","top_posts"],"query":[{"key":"sort_by","value":"likes","description":"`likes`, `comments`, `saved`, `video_views`, `impressions`, `reach`, `caption`, `timestamp` or `media_type`"},{"key":"sort","value":"desc","description":"`asc` or `desc`"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"7faa8f3fdad2b4d29709dbb47c53e51f\""},{"key":"X-Runtime","value":"0.338972"},{"key":"X-Request-Id","value":"7afe361a6117b43c64a4cd29ccccc3e5"},{"key":"Date","value":"Tue, 30 Oct 2018 05:10:58 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_top_posts\": 4,\n    \"paging\": {\n        \"per_page\": 10,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 1,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    },\n    \"top_posts\": [\n        {\n            \"id\": 429,\n            \"media_id\": \"17873995897302218\",\n            \"entry_id\": 1980,\n            \"caption\": \"Another icon\",\n            \"media_type\": \"IMAGE\",\n            \"author_id\": \"17841408413452448\",\n            \"username\": \"tuanalerti\",\n            \"timestamp\": \"2018-10-24T14:27:17+07:00\",\n            \"link\": \"https://www.instagram.com/p/BpTrSyWFAzY/\",\n            \"picture\": \"https://scontent.xx.fbcdn.net/v/t51.2885-15/43375221_1162659403885123_673247845226664538_n.jpg?_nc_cat=111&_nc_ht=scontent.xx&oh=ac908e528aacac8ec56780102d06416a&oe=5C5661AB\",\n            \"likes_count\": 0,\n            \"comments_count\": 0,\n            \"engagement\": null,\n            \"impressions\": null,\n            \"reach\": null,\n            \"saved\": null,\n            \"video_views\": null\n        }\n    ],\n    \"from\": \"2018-10-01T00:00:00+07:00\",\n    \"to\": \"2018-10-24T23:59:59+07:00\",\n    \"earliest_post_date\": \"2018-08-29T00:00:00+07:00\",\n    \"last_post_date\": \"2018-10-24T23:59:59+07:00\"\n}"}],"_postman_id":"175bdb67-3b84-4ae0-96d4-035dacb2d63c"},{"name":"Get Insta business account top stories","id":"15867bf1-6735-4e0f-b60f-24e12e4ea5c0","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/top_stories?sort_by=replies&sort=desc&from=2018-10-01&to=2018-10-24&page=1&per_page=10&dl&file_format","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td><code>desc</code></td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td><code>replies</code></td>\n<td><code>exits</code>, <code>impressions</code>, <code>reach</code>, <code>replies</code>, <code>taps_forward</code>, <code>taps_back</code>, <code>timestamp</code>, <code>media_type</code>, <code>completion_rate</code></td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","top_stories"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>exits</code>, <code>impressions</code>, <code>reach</code>, <code>replies</code>, <code>taps_forward</code>, <code>taps_back</code>, <code>timestamp</code>, <code>media_type</code> or <code>completion_rate</code></p>\n","type":"text/plain"},"key":"sort_by","value":"replies"},{"description":{"content":"<p><code>asc</code> or <code>desc</code></p>\n","type":"text/plain"},"key":"sort","value":"desc"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"},{"key":"page","value":"1"},{"key":"per_page","value":"10"},{"description":{"content":"<p><code>true</code> or <code>false</code></p>\n","type":"text/plain"},"key":"dl","value":""},{"description":{"content":"<p><code>excel</code> or <code>csv</code></p>\n","type":"text/plain"},"key":"file_format","value":""}],"variable":[{"id":"4be80b5b-6b7b-4708-8858-b564ace573b3","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"ae43003b-3565-49d5-a455-ebdafec36fba","name":"get top stories stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/top_stories?sort_by=replies&sort=desc&from=2018-10-01&to=2018-10-24&page=1&per_page=10&dl&file_format","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","top_stories"],"query":[{"key":"sort_by","value":"replies","description":"`exits`, `impressions`, `reach`, `replies`, `taps_forward`, `taps_back`, `timestamp`, `media_type` or `completion_rate`"},{"key":"sort","value":"desc","description":"`asc` or `desc`"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"},{"key":"page","value":"1"},{"key":"per_page","value":"10"},{"key":"dl","value":null,"description":"`true` or `false`"},{"key":"file_format","value":null,"description":"`excel` or `csv`"}],"variable":[{"key":"instagram_business_account_id","value":"41"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"b62414a5804da2a7adfd9cc08cb690c6\""},{"key":"X-Runtime","value":"0.316571"},{"key":"X-Request-Id","value":"ee4e20c835775e2f98bc0d730e79cd2a"},{"key":"Date","value":"Tue, 30 Oct 2018 05:14:22 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_top_stories\": 2,\n    \"paging\": {\n        \"per_page\": 10,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 1,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    },\n    \"top_stories\": [\n        {\n            \"id\": 23,\n            \"media_id\": \"17970371440093628\",\n            \"entry_id\": 3501,\n            \"media_type\": \"IMAGE\",\n            \"author_id\": \"17841400177308672\",\n            \"username\": \"docksvillage\",\n            \"timestamp\": \"2018-10-24T14:45:08+07:00\",\n            \"link\": \"https://www.instagram.com/p/BpTtVrqA-QX/\",\n            \"picture\": \"https://scontent.xx.fbcdn.net/v/t51.12442-15/43986012_360551521155585_1987903665899603983_n.jpg?_nc_cat=102&_nc_ht=scontent.xx&oh=3b43d652c6e0130c07eeea2aef58790f&oe=5C4AD883\",\n            \"exits\": null,\n            \"impressions\": null,\n            \"reach\": null,\n            \"replies\": null,\n            \"taps_forward\": null,\n            \"taps_back\": null,\n            \"completion_rate\": null\n        }\n    ],\n    \"from\": \"2018-10-01T00:00:00+07:00\",\n    \"to\": \"2018-10-24T23:59:59+07:00\",\n    \"earliest_date\": \"2018-10-24T00:00:00+07:00\",\n    \"last_date\": \"2018-10-25T23:59:59+07:00\"\n}"}],"_postman_id":"15867bf1-6735-4e0f-b60f-24e12e4ea5c0"},{"name":"Get Insta business account typology","id":"4078b4fe-73b4-49ca-91c8-4c76e9a95c1a","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/business_accounts/:instagram_business_account_id/stats/typology?granularity=daily&from=2018-10-01&to=2018-10-24","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code>, <code>png</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","business_accounts",":instagram_business_account_id","stats","typology"],"host":["{{api_host}}"],"query":[{"description":{"content":"<p><code>daily</code>, <code>weekly</code>, or <code>monthly</code></p>\n","type":"text/plain"},"key":"granularity","value":"daily"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"from","value":"2018-10-01"},{"description":{"content":"<p>a date</p>\n","type":"text/plain"},"key":"to","value":"2018-10-24"}],"variable":[{"id":"967b68ac-076e-4b15-99eb-0df39bca5ab3","type":"string","value":"","key":"instagram_business_account_id"}]}},"response":[{"id":"e0fa51a9-d2c5-4074-ac54-e014600315fe","name":"get typology stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}//instagram/business_accounts/:instagram_business_account_id/stats/typology?granularity=daily&from=2018-10-01&to=2018-10-24","host":["{{api_host}}"],"path":["{{api_version}}","","instagram","business_accounts",":instagram_business_account_id","stats","typology"],"query":[{"key":"granularity","value":"daily","description":"`daily`, `weekly`, or `monthly`"},{"key":"from","value":"2018-10-01","description":"a date"},{"key":"to","value":"2018-10-24","description":"a date"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"2e363525250519981c7669efb601fff8\""},{"key":"X-Runtime","value":"0.328177"},{"key":"X-Request-Id","value":"d8cfb744fa30b5882daea028a9b1b510"},{"key":"Date","value":"Tue, 30 Oct 2018 06:29:41 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"date\": \"2018-10-24\",\n            \"typology_image_count\": 1,\n            \"typology_video_count\": 0,\n            \"typology_carousel_album_count\": 0,\n            \"typology_story_image_count\": 0,\n            \"typology_story_video_count\": 0\n        }\n    ]\n}"}],"_postman_id":"4078b4fe-73b4-49ca-91c8-4c76e9a95c1a"}],"id":"765606e1-8c08-4ff6-9b12-bb9c4267fc17","_postman_id":"765606e1-8c08-4ff6-9b12-bb9c4267fc17","description":""},{"name":"Instagram Alert Insights","item":[{"name":"Get Instagram alert dashboard","id":"ed6c8cd0-65ac-4fe1-aa26-892141295136","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/dashboard?from=2019-11-04&to=2019-11-05","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","alerts",":alert_id","dashboard"],"host":["{{api_host}}"],"query":[{"key":"from","value":"2019-11-04"},{"key":"to","value":"2019-11-05"}],"variable":[{"id":"7c98667c-f37c-4c8f-941c-d83d22d4b9e7","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"61ec07a1-85c6-4013-ad98-6f951cdfb996","name":"Get Instagram alert dashboard","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/dashboard?from=2019-11-04&to=2019-11-05","host":["{{api_host}}"],"path":["{{api_version}}","instagram","alerts",":alert_id","dashboard"],"query":[{"key":"from","value":"2019-11-04"},{"key":"to","value":"2019-11-05"}],"variable":[{"key":"alert_id","value":"57094"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"93"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"85200911bc876d1b6001a849efba7ce0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"ca35804b4c46d47529cfd36a9079136a"},{"key":"X-Runtime","value":"1.410261"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_count\": 723,\n        \"instagram_public_count\": 572,\n        \"instagram_public_videos_count\": 151\n    }\n}"}],"_postman_id":"ed6c8cd0-65ac-4fe1-aa26-892141295136"},{"name":"Get Instagram alert typology","id":"c49eb1e2-b0e0-4f3c-a9da-69ebe560c498","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/typology?from=2019-10-05&to=2019-11-06&granularity=daily","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>granularity</td>\n<td>String</td>\n<td>Stats granularity, period unit used to gather data</td>\n<td>optional</td>\n<td><code>monthly</code></td>\n<td><code>daily</code>, <code>weekly</code>, <code>monthly</code></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","alerts",":alert_id","typology"],"host":["{{api_host}}"],"query":[{"key":"from","value":"2019-10-05"},{"key":"to","value":"2019-11-06"},{"key":"granularity","value":"daily"}],"variable":[{"id":"3ad6b6ed-5b4b-4021-bb6d-3c5795f3b137","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"4b0c157e-de8d-49e5-ab5a-4e951e41a77b","name":"Get Instagram alert typology","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/typology?from=2019-10-05&to=2019-11-06&granularity=daily","host":["{{api_host}}"],"path":["{{api_version}}","instagram","alerts",":alert_id","typology"],"query":[{"key":"from","value":"2019-10-05"},{"key":"to","value":"2019-11-06"},{"key":"granularity","value":"daily"}],"variable":[{"key":"alert_id","value":"57094"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"655"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"3fab9be9df4b5cb6765cf649b6d53924\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"e49b69567b8df393cbcf64ed87ae7c4f"},{"key":"X-Runtime","value":"1.156231"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"date\": \"2019-10-31\",\n            \"instagram_public_count\": 223,\n            \"instagram_public_videos_count\": 31\n        },\n        {\n            \"date\": \"2019-11-01\",\n            \"instagram_public_count\": 322,\n            \"instagram_public_videos_count\": 112\n        },\n        {\n            \"date\": \"2019-11-02\",\n            \"instagram_public_count\": 345,\n            \"instagram_public_videos_count\": 101\n        },\n        {\n            \"date\": \"2019-11-03\",\n            \"instagram_public_count\": 351,\n            \"instagram_public_videos_count\": 85\n        },\n        {\n            \"date\": \"2019-11-04\",\n            \"instagram_public_count\": 313,\n            \"instagram_public_videos_count\": 64\n        },\n        {\n            \"date\": \"2019-11-05\",\n            \"instagram_public_count\": 259,\n            \"instagram_public_videos_count\": 87\n        },\n        {\n            \"date\": \"2019-11-06\",\n            \"instagram_public_count\": 261,\n            \"instagram_public_videos_count\": 69\n        }\n    ],\n    \"updated_at\": \"2019-11-07T13:55:47+01:00\"\n}"}],"_postman_id":"c49eb1e2-b0e0-4f3c-a9da-69ebe560c498"},{"name":"Get Instagram alert sentiment analysis","id":"4cf4ed6f-7d5e-4caa-aa98-608f1afe4a65","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/sentiment_analysis?from=2019-10-05&to=2019-11-05","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Date</td>\n<td>From date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Date</td>\n<td>To date</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","alerts",":alert_id","sentiment_analysis"],"host":["{{api_host}}"],"query":[{"key":"from","value":"2019-10-05"},{"key":"to","value":"2019-11-05"}],"variable":[{"id":"acea4f0d-99d3-4908-893c-1b3a9b7c5316","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"68ed0bf3-a349-4705-8501-9183e7e82289","name":"Get Instagram alert sentiment analysis","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/sentiment_analysis?from=2019-10-05&to=2019-11-05","host":["{{api_host}}"],"path":["{{api_version}}","instagram","alerts",":alert_id","sentiment_analysis"],"query":[{"key":"from","value":"2019-10-05"},{"key":"to","value":"2019-11-05"}],"variable":[{"key":"alert_id","value":"57094"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"95"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"ee456b7137210c257f2b994e132250b8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"580852c21fb9899a9f6a2147bbcbd053"},{"key":"X-Runtime","value":"1.151306"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"neutral\": 2106,\n        \"negative\": 25,\n        \"positive\": 162\n    },\n    \"updated_at\": \"2019-11-07T13:55:47+01:00\"\n}"}],"_postman_id":"4cf4ed6f-7d5e-4caa-aa98-608f1afe4a65"},{"name":"Get Instagram alert top media","id":"1f3ead4f-921a-4205-ad95-85a992b38964","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/top_media?from=2019-10-05&to=2019-11-05&per_page=3","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sort</td>\n<td>String</td>\n<td>Sorting order</td>\n<td>optional</td>\n<td><code>asc</code></td>\n<td><code>asc</code>, <code>desc</code></td>\n</tr>\n<tr>\n<td>sort_by</td>\n<td>String</td>\n<td>Sorting attribute</td>\n<td>optional</td>\n<td><code>position</code></td>\n<td><code>position</code>, <code>likes_count</code>, <code>comments_count</code>, <code>caption</code>, <code>media_type</code></td>\n</tr>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>irrelevant</td>\n<td>Boolean</td>\n<td>Filter by irrelevance</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dl</td>\n<td>Boolean</td>\n<td>Download a file instead of giving json</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>file_format</td>\n<td>String</td>\n<td>when passing the 'dl' params for downloading, specify which format you want the file</td>\n<td>optional</td>\n<td><code>csv</code></td>\n<td><code>excel</code>, <code>csv</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","alerts",":alert_id","top_media"],"host":["{{api_host}}"],"query":[{"key":"from","value":"2019-10-05"},{"key":"to","value":"2019-11-05"},{"key":"per_page","value":"3"}],"variable":[{"id":"1de87265-d687-4da2-b1d3-c358c421031a","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"2cad7136-5e6a-44f9-be6a-649193bc5cb9","name":"Get Instagram alert top media","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/top_media?from=2019-10-05&to=2019-11-05&per_page=3","host":["{{api_host}}"],"path":["{{api_version}}","instagram","alerts",":alert_id","top_media"],"query":[{"key":"from","value":"2019-10-05"},{"key":"to","value":"2019-11-05"},{"key":"per_page","value":"3"}],"variable":[{"key":"alert_id","value":"57094"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"1623"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"b4c8d0b6d3f4b1b3aa9929c8002dea8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"9ce90dc8900711464372f31845031385"},{"key":"X-Runtime","value":"1.199035"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"per_page\": 3,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": 2,\n        \"total_count\": 48,\n        \"total_pages\": 16,\n        \"out_of_bounds\": false\n    },\n    \"data\": [\n        {\n            \"id\": 474536,\n            \"media_id\": \"17851568128663279\",\n            \"caption\": \"I’m in love with this photo\",\n            \"media_type\": \"IMAGE\",\n            \"link\": \"https://www.instagram.com/p/B4f-PJ9DpBS/\",\n            \"picture\": \"https://scontent.xx.fbcdn.net/v/t51.2885-15/72648044_2794251503941372_5895120326075022518_n.jpg?_nc_cat=105&_nc_oc=AQlzDo_QaFvIHPMVNfYPsOERMSrNKYwpNw54ar6Z970SygUqP_V6oQNjtDll9POBGoA&_nc_ht=scontent.xx&oh=02ab53b26dffc56b93aa6913b539634a&oe=5E51F907\",\n            \"video\": null,\n            \"likes_count\": 1307,\n            \"comments_count\": 19,\n            \"irrelevant\": false\n        },\n        {\n            \"id\": 474537,\n            \"media_id\": \"18110420404036207\",\n            \"caption\": \"his outfit \",\n            \"media_type\": \"VIDEO\",\n            \"link\": \"https://www.instagram.com/p/B4iEElUD9KJ/\",\n            \"picture\": null,\n            \"video\": \"https://scontent.xx.fbcdn.net/v/t50.2886-16/76177321_126853435012513_2290212208371818151_n.mp4?_nc_cat=110&_nc_oc=AQnNL8ntfeOppCLphl8TnTnw-ngrR7qBjaC6Xipwsy4aP0IKX68etEWoVB6OO0E3AsA&_nc_ht=scontent.xx&oh=e866355217d2a00b04bc0242b080530f&oe=5E526F49\",\n            \"likes_count\": 2669,\n            \"comments_count\": 27,\n            \"irrelevant\": false\n        },\n        {\n            \"id\": 474538,\n            \"media_id\": \"17859614959583870\",\n            \"caption\": \"I stan this look\",\n            \"media_type\": \"IMAGE\",\n            \"link\": \"https://www.instagram.com/p/B4dZ_4ajMi1/\",\n            \"picture\": \"https://scontent.xx.fbcdn.net/v/t51.2885-15/73393190_156923155669690_1486092489953332326_n.jpg?_nc_cat=101&_nc_oc=AQnd2scbagGX0CYJRkaM2xAYnbyY-009mpxgkcqn1EhXKajR5YKmg_xFvnCJ9hSCBqk&_nc_ht=scontent.xx&oh=ab1cb37624fcccac87a9a924f670b15b&oe=5E5FA874\",\n            \"video\": null,\n            \"likes_count\": 1163,\n            \"comments_count\": 21,\n            \"irrelevant\": false\n        }\n    ],\n    \"updated_at\": \"2019-11-07T13:40:25+01:00\"\n}"},{"id":"d0f38a77-46a3-47d7-97b2-cf840ba7c036","name":"Get dashboard stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/v3/instagram/business_accounts/:instagram_business_account_id/stats/dashboard/?period=week&to=2018-10-24","host":["{{api_host}}"],"path":["v3","instagram","business_accounts",":instagram_business_account_id","stats","dashboard",""],"query":[{"key":"period","value":"week"},{"key":"to","value":"2018-10-24"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"3fd69baa72519f52b7b594653b943639\""},{"key":"X-Runtime","value":"0.606059"},{"key":"X-Request-Id","value":"16a6b3f57508f4a582af2b78b862e2ea"},{"key":"Date","value":"Mon, 29 Oct 2018 10:11:33 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"dashboard\": {\n        \"instagram_business_account\": {\n            \"id\": 38\n        },\n        \"stats_at_date\": \"2018-10-24\",\n        \"previous_date\": null,\n        \"period\": \"week\",\n        \"stats\": {\n            \"followers_total\": {\n                \"current_value\": 2,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"followers_delta\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_entries\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_reach\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_impressions\": {\n                \"current_value\": 2,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts_average_reach\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts_average_engagement\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories_average_reach\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories_completion_rate\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            }\n        }\n    }\n}"}],"_postman_id":"1f3ead4f-921a-4205-ad95-85a992b38964"},{"name":"Mark top media as relevant","id":"87e7e470-ea29-4926-b842-ff877bbec155","request":{"method":"PUT","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/top_media/:top_media_id/relevant","urlObject":{"path":["{{api_version}}","instagram","alerts",":alert_id","top_media",":top_media_id","relevant"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"65aa3d16-a857-4d58-81c6-355ea5018d08","type":"string","value":"","key":"alert_id"},{"id":"1eaa9276-59a6-4554-ac6a-19bba0f3ac3e","type":"string","value":"","key":"top_media_id"}]}},"response":[{"id":"9d170e8d-06c7-4ec6-92cd-8167a7350e71","name":"Get dashboard stats","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/v3/instagram/business_accounts/:instagram_business_account_id/stats/dashboard/?period=week&to=2018-10-24","host":["{{api_host}}"],"path":["v3","instagram","business_accounts",":instagram_business_account_id","stats","dashboard",""],"query":[{"key":"period","value":"week"},{"key":"to","value":"2018-10-24"}],"variable":[{"key":"instagram_business_account_id","value":"38"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"3fd69baa72519f52b7b594653b943639\""},{"key":"X-Runtime","value":"0.606059"},{"key":"X-Request-Id","value":"16a6b3f57508f4a582af2b78b862e2ea"},{"key":"Date","value":"Mon, 29 Oct 2018 10:11:33 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"dashboard\": {\n        \"instagram_business_account\": {\n            \"id\": 38\n        },\n        \"stats_at_date\": \"2018-10-24\",\n        \"previous_date\": null,\n        \"period\": \"week\",\n        \"stats\": {\n            \"followers_total\": {\n                \"current_value\": 2,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"followers_delta\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_entries\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_reach\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"account_impressions\": {\n                \"current_value\": 2,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts\": {\n                \"current_value\": 1,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts_average_reach\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"posts_average_engagement\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories\": {\n                \"current_value\": 0,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories_average_reach\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            },\n            \"stories_completion_rate\": {\n                \"current_value\": null,\n                \"previous_value\": null,\n                \"delta_value\": null,\n                \"delta_percentage\": null\n            }\n        }\n    }\n}"}],"_postman_id":"87e7e470-ea29-4926-b842-ff877bbec155"}],"id":"2362b3f2-3b60-4228-bfcd-1de3174a8130","_postman_id":"2362b3f2-3b60-4228-bfcd-1de3174a8130","description":""}],"id":"e44bba51-36f5-422e-8b31-5efb28351f95","_postman_id":"e44bba51-36f5-422e-8b31-5efb28351f95","description":""},{"name":"Google","item":[{"name":"Get my Google accounts","id":"d53605a1-ec8b-4aaa-b25c-7e604e7404bb","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{url}}/{{api_version}}/google_plus/accounts","urlObject":{"path":["{{api_version}}","google_plus","accounts"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"34094738-e91f-4001-9a19-9999210cd13a","name":"Get Google accounts","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"}],"url":"{{url}}/v3/google_plus/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"27bee14f31ec1c2679ce6bab8be8983c"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"671f59d9b2362ce6953059958ec7a4a3\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.163402"},{"key":"Date","value":"Mon, 25 Nov 2019 09:26:51 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"google_accounts\": [\n        {\n            \"id\": 46,\n            \"email\": \"John@example.com\",\n            \"full_name\": \"John Wayne\",\n            \"profile_picture_url\": \"https://lh5.googleusercontent.com/-OiW2n9NR1eA/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfIxds42dCHNnmv-GK4pxHk0A_j5w/photo.jpg\",\n            \"status_name\": \"Valid\",\n            \"scopes\": [\n                \"https://www.googleapis.com/auth/userinfo.email\",\n                \"https://www.googleapis.com/auth/business.manage\",\n                \"openid\",\n                \"https://www.googleapis.com/auth/userinfo.profile\"\n            ],\n            \"is_valid\": true\n        }\n    ]\n}"}],"_postman_id":"d53605a1-ec8b-4aaa-b25c-7e604e7404bb"},{"name":"Get my Google business locations","id":"226cff17-6530-4ed4-a741-c43a740dca1c","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{url}}/{{api_version}}/google_plus/my_business_locations","urlObject":{"path":["{{api_version}}","google_plus","my_business_locations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"37e813b2-3ad9-45f1-a0b0-446011625cf2","name":"Get Google my business locations","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"}],"url":"{{url}}/v3/google_plus/my_business_locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"5b08d7ae64d4266a7f007d1a813e49f4"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"46ea1e2580cb0c425ee1ceaf989a19db\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"1.639324"},{"key":"Date","value":"Mon, 25 Nov 2019 09:32:16 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"my_business_locations\": [\n        {\n            \"name\": \"accounts/106598045384943701885/locations/10156041791523806612\",\n            \"location_name\": \"Awesome Fake Cafe\",\n            \"google_plus_account_id\": 46,\n            \"address\": {\n                \"address_lines\": [\n                    \"2 rue du var\"\n                ],\n                \"administrative_area\": \"Marseille\",\n                \"locality\": \"Marseille\",\n                \"postal_code\": \"13000\",\n                \"region_code\": \"FR\"\n            }\n        },\n        {\n            \"name\": \"accounts/106598045384943701885/locations/16871217276328111579\",\n            \"location_name\": \"Alerti\",\n            \"google_plus_account_id\": 46,\n            \"address\": {\n                \"address_lines\": [\n                    \"7, rue Pelee\"\n                ],\n                \"locality\": \"Paris\",\n                \"postal_code\": \"75011\",\n                \"region_code\": \"FR\"\n            }\n        }\n    ]\n}"}],"_postman_id":"226cff17-6530-4ed4-a741-c43a740dca1c"},{"name":"Create or update Google my business review's reply","id":"88d80d89-999f-4dd8-b684-815be1868b5d","request":{"method":"PUT","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{url}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/google_my_business/reply?message=a reply","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>String</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","google_my_business","reply"],"host":["{{url}}"],"query":[{"key":"message","value":"a reply"}],"variable":[{"id":"513ae2c3-f987-484e-a154-16ebfe462870","type":"string","value":"","key":"alert_id"},{"id":"eb5d3c35-5dd7-42e4-a2f3-6a25cec9920c","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"88d80d89-999f-4dd8-b684-815be1868b5d"},{"name":"Delete Google my business review's reply","id":"622f7319-7b67-418d-9413-46515602acb1","request":{"method":"DELETE","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{url}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/google_my_business/reply","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","google_my_business","reply"],"host":["{{url}}"],"query":[],"variable":[{"id":"3104aaf9-89d2-4329-827e-e6811c08b373","type":"string","value":"","key":"alert_id"},{"id":"84c5a486-34d3-4afb-8ab2-bfef8f5227b9","type":"string","value":"","key":"entry_id"}]}},"response":[],"_postman_id":"622f7319-7b67-418d-9413-46515602acb1"}],"id":"f2a71feb-ccd0-4263-b05a-b6b65ddf876f","_postman_id":"f2a71feb-ccd0-4263-b05a-b6b65ddf876f","description":""},{"name":"Tags","item":[{"name":"Get tags for a taggable object","id":"81922c8d-77b8-4e1e-99fe-8f65eaf3b940","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/tags?alert_id=54639&from_date=31/12/2015&to_date=31/01/2016&period=custom","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td>Alert id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>gsource</td>\n<td>String</td>\n<td>Entries source group. possible values meaning: {\"noweb\"=&gt;\"All except web\", \"stories\"=&gt;\"Articles\", \"news\"=&gt;\"News\", \"blogs\"=&gt;\"Blogs\", \"comments\"=&gt;\"Forums\", \"updates\"=&gt;\"Twitter\", \"gr_videos\"=&gt;\"Videos\", \"gr_images\"=&gt;\"Images\", \"web\"=&gt;\"Web\", \"social_network\"=&gt;\"Facebook\", \"google_plus\"=&gt;\"Google+\", \"facebook_comments\"=&gt;\"Facebook Fan pages\", \"instagram_business\"=&gt;\"Instagram business accounts\", \"twitter_accounts\"=&gt;\"Twitter accounts\", \"reviews\"=&gt;\"All results\", \"0\"=&gt;\"All\"}</td>\n<td>optional</td>\n<td><code>0</code></td>\n<td><code>stories</code>, <code>blogs</code>, <code>news</code>, <code>comments</code>, <code>updates</code>, <code>gr_videos</code>, <code>gr_images</code>, <code>all_instagram_public</code>, <code>web</code>, <code>social_network</code>, <code>facebook_comments</code>, <code>google_plus</code>, <code>instagram_business</code>, <code>all_instagram</code>, <code>twitter_accounts</code>, <code>reviews</code>, <code>noweb</code>, <code>0</code>, <code>-updates</code></td>\n</tr>\n<tr>\n<td>filter</td>\n<td>String</td>\n<td>Entries filter</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>last</code>, <code>unread</code>, <code>read</code>, <code>unqualified</code>, <code>qualified</code>, <code>reviews</code>, <code>positives</code>, <code>negatives</code>, <code>neutrals</code>, <code>questions</code>, <code>suggestions</code>, <code>trash</code>, <code>irrelevant</code>, <code>sent</code>, <code>moderated</code>, <code>unmoderated</code></td>\n</tr>\n<tr>\n<td>rating</td>\n<td>Integer</td>\n<td>Entry Rating, possible values: {9=&gt;\"positive\", 5=&gt;\"neutral\", 1=&gt;\"negative\"}</td>\n<td>optional</td>\n<td>-</td>\n<td><code>9</code>, <code>1</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>review_filter_stars</td>\n<td>Integer</td>\n<td>Filter by stars given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>1</code>, <code>2</code>, <code>3</code>, <code>4</code>, <code>5</code></td>\n</tr>\n<tr>\n<td>review_filter_trip_type</td>\n<td>String</td>\n<td>Filter by type of trip given on review site</td>\n<td>optional</td>\n<td>-</td>\n<td><code>family</code>, <code>couple</code>, <code>solo</code>, <code>friends</code>, <code>business</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter_country</td>\n<td>String</td>\n<td>Filter by nationality of the reviewer. Iso 03166 country codes</td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code>, <code>undefined</code></td>\n</tr>\n<tr>\n<td>review_filter_has_owner_reply</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>lang</td>\n<td>String</td>\n<td>Language code from iso-639-1</td>\n<td>optional</td>\n<td>-</td>\n<td><code>aa</code>, <code>ab</code>, <code>ae</code>, <code>af</code>, <code>ak</code>, <code>am</code>, <code>an</code>, <code>ar</code>, <code>as</code>, <code>av</code>, <code>ay</code>, <code>az</code>, <code>ba</code>, <code>be</code>, <code>bg</code>, <code>bh</code>, <code>bi</code>, <code>bm</code>, <code>bn</code>, <code>bo</code>, <code>br</code>, <code>bs</code>, <code>ca</code>, <code>ce</code>, <code>ch</code>, <code>co</code>, <code>cr</code>, <code>cs</code>, <code>cu</code>, <code>cv</code>, <code>cy</code>, <code>da</code>, <code>de</code>, <code>dv</code>, <code>dz</code>, <code>ee</code>, <code>el</code>, <code>en</code>, <code>eo</code>, <code>es</code>, <code>et</code>, <code>eu</code>, <code>fa</code>, <code>ff</code>, <code>fi</code>, <code>fj</code>, <code>fo</code>, <code>fr</code>, <code>fy</code>, <code>ga</code>, <code>gd</code>, <code>gl</code>, <code>gn</code>, <code>gu</code>, <code>gv</code>, <code>ha</code>, <code>he</code>, <code>hi</code>, <code>ho</code>, <code>hr</code>, <code>ht</code>, <code>hu</code>, <code>hy</code>, <code>hz</code>, <code>ia</code>, <code>id</code>, <code>ie</code>, <code>ig</code>, <code>ii</code>, <code>ik</code>, <code>io</code>, <code>is</code>, <code>it</code>, <code>iu</code>, <code>ja</code>, <code>jv</code>, <code>ka</code>, <code>kg</code>, <code>ki</code>, <code>kj</code>, <code>kk</code>, <code>kl</code>, <code>km</code>, <code>kn</code>, <code>ko</code>, <code>kr</code>, <code>ks</code>, <code>ku</code>, <code>kv</code>, <code>kw</code>, <code>ky</code>, <code>la</code>, <code>lb</code>, <code>lg</code>, <code>li</code>, <code>ln</code>, <code>lo</code>, <code>lt</code>, <code>lu</code>, <code>lv</code>, <code>mg</code>, <code>mh</code>, <code>mi</code>, <code>mk</code>, <code>ml</code>, <code>mn</code>, <code>mr</code>, <code>ms</code>, <code>mt</code>, <code>my</code>, <code>na</code>, <code>nb</code>, <code>nd</code>, <code>ne</code>, <code>ng</code>, <code>nl</code>, <code>nn</code>, <code>no</code>, <code>nr</code>, <code>nv</code>, <code>ny</code>, <code>oc</code>, <code>oj</code>, <code>om</code>, <code>or</code>, <code>os</code>, <code>pa</code>, <code>pi</code>, <code>pl</code>, <code>ps</code>, <code>pt</code>, <code>qu</code>, <code>rm</code>, <code>rn</code>, <code>ro</code>, <code>ru</code>, <code>rw</code>, <code>sa</code>, <code>sc</code>, <code>sd</code>, <code>se</code>, <code>sg</code>, <code>si</code>, <code>sk</code>, <code>sl</code>, <code>sm</code>, <code>sn</code>, <code>so</code>, <code>sq</code>, <code>sr</code>, <code>ss</code>, <code>st</code>, <code>su</code>, <code>sv</code>, <code>sw</code>, <code>ta</code>, <code>te</code>, <code>tg</code>, <code>th</code>, <code>ti</code>, <code>tk</code>, <code>tl</code>, <code>tn</code>, <code>to</code>, <code>tr</code>, <code>ts</code>, <code>tt</code>, <code>tw</code>, <code>ty</code>, <code>ug</code>, <code>uk</code>, <code>ur</code>, <code>uz</code>, <code>ve</code>, <code>vi</code>, <code>vo</code>, <code>wa</code>, <code>wo</code>, <code>xh</code>, <code>yi</code>, <code>yo</code>, <code>za</code>, <code>zh</code>, <code>zu</code></td>\n</tr>\n<tr>\n<td>entity_en_name</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entity_is_positive</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entity_is_neutral</td>\n<td>Boolean</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact_id</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>period</td>\n<td>String</td>\n<td>Period</td>\n<td>optional</td>\n<td><code>all</code></td>\n<td><code>all</code>, <code>today</code>, <code>this_week</code>, <code>this_month</code>, <code>1month</code>, <code>30days</code>, <code>last_month</code>, <code>3months</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>Date</td>\n<td>From date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Date</td>\n<td>To date</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>fb_filter</td>\n<td>String</td>\n<td>Filter by type of facebook items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>comments</code>, <code>admin_posts</code>, <code>fans_posts</code>, <code>mentions</code>, <code>reviews</code></td>\n</tr>\n<tr>\n<td>instagram_filter</td>\n<td>String</td>\n<td>Filter by type of Instagram items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>posts</code>, <code>comments</code>, <code>mentions</code>, <code>tagged_posts</code>, <code>stories</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>twitter_filter</td>\n<td>String</td>\n<td>Filter by type of Twitter items</td>\n<td>optional</td>\n<td>-</td>\n<td><code>tweets</code>, <code>replies</code>, <code>mentions</code></td>\n</tr>\n<tr>\n<td>review_filter</td>\n<td>String</td>\n<td>Filter by review site the entry came from</td>\n<td>optional</td>\n<td>-</td>\n<td><code>google_places</code>, <code>opinion_assurances</code>, <code>trip_advisor</code>, <code>booking</code>, <code>expedia</code>, <code>agoda</code>, <code>trustpilot</code>, <code>facebook_reviews</code></td>\n</tr>\n<tr>\n<td>read</td>\n<td>Boolean</td>\n<td>filter entries by read/unread</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>default_filter</td>\n<td>Boolean</td>\n<td>use the default filter</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>twitto_id</td>\n<td>Integer</td>\n<td>Filter by entries twitto id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>facebook_author_id</td>\n<td>Integer</td>\n<td>Filter by entries facebook author id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>tag</td>\n<td>String</td>\n<td>Filter entries by tag</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>id_list</td>\n<td>Array</td>\n<td>retrieve specific list of entries ids</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entry_id</td>\n<td>Integer</td>\n<td>Entry id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>contact_id</td>\n<td>Integer</td>\n<td>Contact user id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","tags"],"host":["{{api_host}}"],"query":[{"key":"alert_id","value":"54639"},{"key":"from_date","value":"31/12/2015"},{"key":"to_date","value":"31/01/2016"},{"key":"period","value":"custom"}],"variable":[]}},"response":[{"id":"b36c27d6-0988-4d04-8541-31d4d442c3e1","name":"Get all tags for an alert","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":{"raw":"{{api_host}}/{{api_version}}/tags?alert_id=56555","host":["{{api_host}}"],"path":["{{api_version}}","tags"],"query":[{"key":"alert_id","value":"56555"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"148"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"09cc8bce0848698e2ff28162edc6c878\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"7eb24755155b870fa474a3c77c4e170c"},{"key":"X-Runtime","value":"1.821758"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tags\": [\n        {\n            \"id\": 30,\n            \"name\": \"tag1\",\n            \"entries_count\": 2\n        },\n        {\n            \"id\": 7712,\n            \"name\": \"app.alerti.com\",\n            \"entries_count\": 1\n        },\n        {\n            \"id\": 31,\n            \"name\": \"tag2\",\n            \"entries_count\": 1\n        }\n    ]\n}"}],"_postman_id":"81922c8d-77b8-4e1e-99fe-8f65eaf3b940"},{"name":"Get tag by id","id":"4e1dc0f7-25b0-4554-aecc-bea04dd373b1","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/tags/:tag_id","urlObject":{"path":["{{api_version}}","tags",":tag_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"1a11c937-d1f8-4e9c-887a-baec72b433ee","type":"string","value":"","key":"tag_id"}]}},"response":[{"id":"91b7bcaa-6468-4ea8-b812-f14b0da0bb35","name":"alert tags list ","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_host}}/tags?alert_id=54639&token={{api_key}}&from_date=31/12/2015&to_date=31/01/2016&period=custom","host":["{{api_host}}"],"path":["tags"],"query":[{"key":"alert_id","value":"54639"},{"key":"token","value":"{{api_key}}"},{"key":"from_date","value":"31/12/2015"},{"key":"to_date","value":"31/01/2016"},{"key":"period","value":"custom"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"288","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 17 Mar 2017 10:33:06 GMT","name":"Date","description":""},{"key":"ETag","value":"\"232ac41c2bb3907045445963019c5254\"","name":"ETag","description":""},{"key":"Server","value":"nginx/1.10.1 + Phusion Passenger 5.0.26","name":"Server","description":""},{"key":"Status","value":"200 OK","name":"Status","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"X-Meta-Request-Version","value":"0.2.8","name":"X-Meta-Request-Version","description":""},{"key":"X-Powered-By","value":"Phusion Passenger 5.0.26","name":"X-Powered-By","description":""},{"key":"X-Request-Id","value":"8f37fa0ef2420bd12be3d6338f7566e7","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.040054","name":"X-Runtime","description":""},{"key":"X-UA-Compatible","value":"IE=Edge","name":"X-UA-Compatible","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"alerti.local","path":"/","secure":false,"value":"BAh7CEkiDnJldHVybl90bwY6BkVGImwvdjMvNTQ2MzkvZW50cmllcy8yNzA3NjUzODAvdW5kZWxldGU%2FdG9rZW49ZDEwNzEyNDVlZDhkYzk0ZGZhMzM2ZjYyOWUxZTIzY2YyNjcxYjIxZjgyZDVlNDE3MTRjNTE0NDAxMDI3SSIPc2Vzc2lvbl9pZAY7AEZJIiVmMDBiZWJhMmYyYzZkOGU1MzM5M2MyZThkNjY0MTYyZgY7AFRJIhBfY3NyZl90b2tlbgY7AEZJIjE2bTNNL0M5TURGY1pVNnU3OXA1Y0dNYjhBV3FGa0o3TC9FbGhtcHovSmFVPQY7AEY%3D--2b3a72507df2bc58901b69b8079f572ffaa97889","key":"_alerti_session"}],"responseTime":null,"body":"{\"tags\":[{\"id\":7157,\"name\":\"loic\",\"entries_count\":68},{\"id\":1,\"name\":\"test\",\"entries_count\":58},{\"id\":3265,\"name\":\"paris\",\"entries_count\":58},{\"id\":7167,\"name\":\"2016_0601\",\"entries_count\":50},{\"id\":7158,\"name\":\"fh\",\"entries_count\":18},{\"id\":7161,\"name\":\"tag062016_1\",\"entries_count\":14}]}"}],"_postman_id":"4e1dc0f7-25b0-4554-aecc-bea04dd373b1"},{"name":"Set tags for a taggable object","id":"e53ef817-7318-4db6-92bb-d139e4e0ca12","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"entry_id\": 307727763,\n    \"tags\":\"tag test\"\n}"},"url":"{{api_host}}/{{api_version}}/tags","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tags</td>\n<td>[String]</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entry_id</td>\n<td>Integer</td>\n<td>Entry id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>contact_id</td>\n<td>Integer</td>\n<td>Contact user id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","tags"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"f964b62d-910f-49c7-a1d2-edace61ec6f8","name":"Set tags for a taggable object","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"entry_id\": 307727763,\n    \"tags\":\"tag test\"\n}"},"url":"{{api_host}}/{{api_version}}/tags"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"64"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"baf2bc7b063277d81971ff381be07533\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"d6a3136bbcc593aa214cddc54427ddba"},{"key":"X-Runtime","value":"7.436666"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The tag was added successfully\",\n    \"tags\": [\n        \"tag test\"\n    ]\n}"}],"_postman_id":"e53ef817-7318-4db6-92bb-d139e4e0ca12"},{"name":"Add tags to taggable object","id":"42f38097-b72c-468a-9014-ec6047a56d22","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"entry_id\": 307727763,\n    \"tags\":[\"tag1\",\"tag2\"]\n}"},"url":"{{api_host}}/{{api_version}}/tags","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tags</td>\n<td>[String]</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entry_id</td>\n<td>Integer</td>\n<td>Entry id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>contact_id</td>\n<td>Integer</td>\n<td>Contact user id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","tags"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"683e1ab3-4091-4d81-be39-e2d11df3bc45","name":"Add tags to taggable object","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"raw","raw":"{\n    \"entry_id\": 307727763,\n    \"tags\":[\"tag1\",\"tag2\"]\n}"},"url":"{{api_host}}/{{api_version}}/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"80"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"3c121e3bc70e5a76eb083c79b80c87d1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"6ef79cd76397f09cfb95559d60113f9e"},{"key":"X-Runtime","value":"5.216232"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The tag was updated successfully\",\n    \"tags\": [\n        \"tag test\",\n        \"tag1\",\n        \"tag2\"\n    ]\n}"}],"_postman_id":"42f38097-b72c-468a-9014-ec6047a56d22"},{"name":"Add tags to multiple taggable objects in bulk","id":"a6df2f7a-4d19-437d-ab64-5c21cd2fb149","request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"entry_ids\": [307727763, 307705106],\n  \"tags\": [\"tag 1\", \"tag 2\"]\n}"},"url":"{{api_host}}/{{api_version}}/tags/bulk","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tags</td>\n<td>[String]</td>\n<td>Tag list to add</td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entry_ids</td>\n<td>[Integer]</td>\n<td>Entry ids to apply tags</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>contact_ids</td>\n<td>[Integer]</td>\n<td>Contact user ids to apply tags</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","tags","bulk"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"4322675c-ab0b-4376-a32f-2e474c627326","name":"Add tags to multiple taggable objects in bulk","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"entry_ids\": [307727763, 307705106],\n  \"tags\": [\"tag 1\", \"tag 2\"]\n}"},"url":"{{api_host}}/{{api_version}}/tags/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"169"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"784975dd69d9bcf18ab839693e5e4f03\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"3e0ea8043b24ddfe028d5bd46020c2f4"},{"key":"X-Runtime","value":"9.931103"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The tag was added successfully\",\n    \"data\": [\n        {\n            \"id\": 307705106,\n            \"tags\": [\n                \"tag1\",\n                \"tag 1\",\n                \"tag 2\"\n            ]\n        },\n        {\n            \"id\": 307727763,\n            \"tags\": [\n                \"tag1\",\n                \"tag2\",\n                \"tag test\",\n                \"tag 1\",\n                \"tag 2\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"a6df2f7a-4d19-437d-ab64-5c21cd2fb149"},{"name":"Delete tags for a taggable object","id":"ded8c2c5-42bb-4cc1-be68-a8eecc257c9e","request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/tags?entry_id=307727763&tags=tag 1","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tags</td>\n<td>String</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>entry_id</td>\n<td>Integer</td>\n<td>Entry id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>contact_id</td>\n<td>Integer</td>\n<td>Contact user id</td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","tags"],"host":["{{api_host}}"],"query":[{"key":"entry_id","value":"307727763"},{"key":"tags","value":"tag 1"}],"variable":[]}},"response":[{"id":"5ce0f381-fcef-4576-b298-05d64d6408a0","name":"Delete tags for a taggable object","originalRequest":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{api_host}}/{{api_version}}/tags?entry_id=307727763&tags=tag 1","host":["{{api_host}}"],"path":["{{api_version}}","tags"],"query":[{"key":"entry_id","value":"307727763"},{"key":"tags","value":"tag 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"88"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"54b9bb7fce396c056ac67e124e4bdf74\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"f424be78bc61d84147782bf48ad5e69a"},{"key":"X-Runtime","value":"3.813979"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The tag was deleted successfully\",\n    \"tags\": [\n        \"tag1\",\n        \"tag2\",\n        \"tag test\",\n        \"tag 2\"\n    ]\n}"}],"_postman_id":"ded8c2c5-42bb-4cc1-be68-a8eecc257c9e"},{"name":"Delete a tag by id","id":"b7b4930a-4208-413b-9cd6-e6a70abf5521","request":{"method":"DELETE","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{api_host}}/{{api_version}}/tags/:tag_id","urlObject":{"path":["{{api_version}}","tags",":tag_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"c5a200f9-c734-496d-b15e-fafe0c323fc7","type":"string","value":"","key":"tag_id"}]}},"response":[],"_postman_id":"b7b4930a-4208-413b-9cd6-e6a70abf5521"}],"id":"17d4250c-bac5-4922-9cd3-a8ec36a35665","_postman_id":"17d4250c-bac5-4922-9cd3-a8ec36a35665","description":""},{"name":"Helpers","item":[{"name":"List of languages supported","id":"63f9a229-9f1c-42b7-a2b4-d590759adef1","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/helpers/languages","description":"<p>language codes given in response can be used as a demographic value when filtering facebook stats on language demographic filter</p>\n","urlObject":{"path":["{{api_version}}","helpers","languages"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"ad18346c-8632-4cd8-9f77-a030a4d76e59","name":"List of language supported","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/helpers/languages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"2839"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"3e91d9f645cab1a27c8e1dca7224b394\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"e862e673dcc0f97462667c2afb53d4ca"},{"key":"X-Runtime","value":"0.142377"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"aa\": \"Afar\",\n    \"ab\": \"Abkhaz\",\n    \"ae\": \"Avestan\",\n    \"af\": \"Afrikaans\",\n    \"ak\": \"Akan\",\n    \"am\": \"Amharic\",\n    \"an\": \"Aragonese\",\n    \"ar\": \"Arabic\",\n    \"as\": \"Assamese\",\n    \"av\": \"Avaric\",\n    \"ay\": \"Aymara\",\n    \"az\": \"Azerbaijani\",\n    \"ba\": \"Bashkir\",\n    \"be\": \"Belarusian\",\n    \"bg\": \"Bulgarian\",\n    \"bh\": \"Bihari\",\n    \"bi\": \"Bislama\",\n    \"bm\": \"Bambara\",\n    \"bn\": \"Bengali\",\n    \"bo\": \"Tibetan Standard\",\n    \"br\": \"Breton\",\n    \"bs\": \"Bosnian\",\n    \"ca\": \"Catalan\",\n    \"ce\": \"Chechen\",\n    \"ch\": \"Chamorro\",\n    \"co\": \"Corsican\",\n    \"cr\": \"Cree\",\n    \"cs\": \"Czech\",\n    \"cu\": \"Old Church Slavonic\",\n    \"cv\": \"Chuvash\",\n    \"cy\": \"Welsh\",\n    \"da\": \"Danish\",\n    \"de\": \"German\",\n    \"dv\": \"Divehi\",\n    \"dz\": \"Dzongkha\",\n    \"ee\": \"Ewe\",\n    \"el\": \"Greek\",\n    \"en\": \"English\",\n    \"eo\": \"Esperanto\",\n    \"es\": \"Spanish\",\n    \"et\": \"Estonian\",\n    \"eu\": \"Basque\",\n    \"fa\": \"Perse\",\n    \"ff\": \"Fula\",\n    \"fi\": \"Finnish\",\n    \"fj\": \"Fijian\",\n    \"fo\": \"Faroese\",\n    \"fr\": \"French\",\n    \"fy\": \"Western Frisian\",\n    \"ga\": \"Irish\",\n    \"gd\": \"Scottish Gaelic\",\n    \"gl\": \"Galician\",\n    \"gn\": \"Guaraní\",\n    \"gu\": \"Gujarati\",\n    \"gv\": \"Manx\",\n    \"ha\": \"Hausa\",\n    \"he\": \"Hebrew\",\n    \"hi\": \"Hindi\",\n    \"ho\": \"Hiri Motu\",\n    \"hr\": \"Croatian\",\n    \"ht\": \"Haitian\",\n    \"hu\": \"Hungarian\",\n    \"hy\": \"Armenian\",\n    \"hz\": \"Herero\",\n    \"ia\": \"Interlingua\",\n    \"id\": \"Indonesian\",\n    \"ie\": \"Interlingua\",\n    \"ig\": \"Igbo\",\n    \"ii\": \"Nuosu\",\n    \"ik\": \"Inupiaq\",\n    \"io\": \"Ido\",\n    \"is\": \"Icelandic\",\n    \"it\": \"Italian\",\n    \"iu\": \"Inuktitut\",\n    \"ja\": \"Japanese\",\n    \"jv\": \"Javanese\",\n    \"ka\": \"Georgian\",\n    \"kg\": \"Kongo\",\n    \"ki\": \"Kikuyu\",\n    \"kj\": \"Kwanyama\",\n    \"kk\": \"Kazakh\",\n    \"kl\": \"Kalaallisut\",\n    \"km\": \"Khmer\",\n    \"kn\": \"Kannada\",\n    \"ko\": \"Korean\",\n    \"kr\": \"Kanuri\",\n    \"ks\": \"Kashmiri\",\n    \"ku\": \"Kurdish\",\n    \"kv\": \"Komi\",\n    \"kw\": \"Cornish\",\n    \"ky\": \"Kyrgyz\",\n    \"la\": \"Latin\",\n    \"lb\": \"Luxembourgish\",\n    \"lg\": \"Ganda\",\n    \"li\": \"Limburgish\",\n    \"ln\": \"Lingala\",\n    \"lo\": \"Lao\",\n    \"lt\": \"Lithuanian\",\n    \"lu\": \"Luba-Katanga\",\n    \"lv\": \"Latvian\",\n    \"mg\": \"Malagasy\",\n    \"mh\": \"Marshallese\",\n    \"mi\": \"Māori\",\n    \"mk\": \"Macedonian\",\n    \"ml\": \"Malayalam\",\n    \"mn\": \"Mongolian\",\n    \"mr\": \"Marathi\",\n    \"ms\": \"Malay\",\n    \"mt\": \"Maltese\",\n    \"my\": \"Burmese\",\n    \"na\": \"Nauru\",\n    \"nb\": \"Norwegian Bokmål\",\n    \"nd\": \"Northern Ndebele\",\n    \"ne\": \"Nepali\",\n    \"ng\": \"Ndonga\",\n    \"nl\": \"Dutch\",\n    \"nn\": \"Norwegian Nynorsk\",\n    \"no\": \"Norwegian\",\n    \"nr\": \"Southern Ndebele\",\n    \"nv\": \"Navajo\",\n    \"ny\": \"Chichewa\",\n    \"oc\": \"Occitan\",\n    \"oj\": \"Ojibwe\",\n    \"om\": \"Oromo\",\n    \"or\": \"Oriya\",\n    \"os\": \"Ossetian\",\n    \"pa\": \"Panjabi\",\n    \"pi\": \"Pāli\",\n    \"pl\": \"Polish\",\n    \"ps\": \"Pashto\",\n    \"pt\": \"Portuguese\",\n    \"qu\": \"Quechua\",\n    \"rm\": \"Romansh\",\n    \"rn\": \"Kirundi\",\n    \"ro\": \"Romanian\",\n    \"ru\": \"Russian\",\n    \"rw\": \"Kinyarwanda\",\n    \"sa\": \"Sanskrit\",\n    \"sc\": \"Sardinian\",\n    \"sd\": \"Sindhi\",\n    \"se\": \"Northern Sami\",\n    \"sg\": \"Sango\",\n    \"si\": \"Sinhala\",\n    \"sk\": \"Slovak\",\n    \"sl\": \"Slovene\",\n    \"sm\": \"Samoan\",\n    \"sn\": \"Shona\",\n    \"so\": \"Somali\",\n    \"sq\": \"Albanian\",\n    \"sr\": \"Serbian\",\n    \"ss\": \"Swati\",\n    \"st\": \"Southern Sotho\",\n    \"su\": \"Sundanese\",\n    \"sv\": \"Swedish\",\n    \"sw\": \"Swahili\",\n    \"ta\": \"Tamil\",\n    \"te\": \"Telugu\",\n    \"tg\": \"Tajik\",\n    \"th\": \"Thai\",\n    \"ti\": \"Tigrinya\",\n    \"tk\": \"Turkmen\",\n    \"tl\": \"Tagalog\",\n    \"tn\": \"Tswana\",\n    \"to\": \"Tonga\",\n    \"tr\": \"Turkish\",\n    \"ts\": \"Tsonga\",\n    \"tt\": \"Tatar\",\n    \"tw\": \"Twi\",\n    \"ty\": \"Tahitian\",\n    \"ug\": \"Uyghur\",\n    \"uk\": \"Ukrainian\",\n    \"ur\": \"Urdu\",\n    \"uz\": \"Uzbek\",\n    \"ve\": \"Venda\",\n    \"vi\": \"Vietnamese\",\n    \"vo\": \"Volapük\",\n    \"wa\": \"Walloon\",\n    \"wo\": \"Wolof\",\n    \"xh\": \"Yiddish\",\n    \"yi\": \"Yiddish\",\n    \"yo\": \"Yoruba\",\n    \"za\": \"Zhuang\",\n    \"zh\": \"Chinese\",\n    \"zu\": \"Zulu\"\n}"}],"_postman_id":"63f9a229-9f1c-42b7-a2b4-d590759adef1"},{"name":"List of countries supported","id":"0865444a-76ba-4222-8fa2-1ea75a753578","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/helpers/countries","description":"<p>countries codes given in response can be used as a demographic value when filtering facebook stats on countries demographic filter</p>\n","urlObject":{"path":["{{api_version}}","helpers","countries"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"49b991a1-5f3c-4f08-a361-5b28468b409f","name":"List of countries supported","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/helpers/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"4263"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"e6c66d53ea9710a930fa8ffb17288fb5\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"7056875fc9d5fdacabf1b9653778ab3a"},{"key":"X-Runtime","value":"0.139943"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"AF\": \"Afghanistan\",\n    \"AX\": \"Aland Islands\",\n    \"AL\": \"Albania\",\n    \"DZ\": \"Algeria\",\n    \"AS\": \"American Samoa\",\n    \"AD\": \"Andorra\",\n    \"AO\": \"Angola\",\n    \"AI\": \"Anguilla\",\n    \"AQ\": \"Antarctica\",\n    \"AG\": \"Antigua and Barbuda\",\n    \"AR\": \"Argentina\",\n    \"AM\": \"Armenia\",\n    \"AW\": \"Aruba\",\n    \"AU\": \"Australia\",\n    \"AT\": \"Austria\",\n    \"AZ\": \"Azerbaijan\",\n    \"BS\": \"Bahamas\",\n    \"BH\": \"Bahrain\",\n    \"BD\": \"Bangladesh\",\n    \"BB\": \"Barbados\",\n    \"BY\": \"Biélorussie\",\n    \"BE\": \"Belgique\",\n    \"BZ\": \"Belize\",\n    \"BJ\": \"Benin\",\n    \"BM\": \"Bermuda\",\n    \"BT\": \"Bhutan\",\n    \"BO\": \"Bolivia\",\n    \"BA\": \"Bosnia And Herzegovina\",\n    \"BW\": \"Botswana\",\n    \"BV\": \"Bouvet Island\",\n    \"BR\": \"Brazil\",\n    \"IO\": \"British Indian Ocean Territory\",\n    \"BN\": \"Brunei Darussalam\",\n    \"BG\": \"Bulgaria\",\n    \"BF\": \"Burkina Faso\",\n    \"BI\": \"Burundi\",\n    \"KH\": \"Cambodia\",\n    \"CM\": \"Cameroon\",\n    \"CA\": \"Canada\",\n    \"CV\": \"Cape Verde\",\n    \"KY\": \"Cayman Islands\",\n    \"CF\": \"Central African Rep.\",\n    \"TD\": \"Chad\",\n    \"CL\": \"Chile\",\n    \"CN\": \"China\",\n    \"CX\": \"Christmas Island\",\n    \"CC\": \"Cocos Islands\",\n    \"CO\": \"Colombia\",\n    \"KM\": \"Comoros\",\n    \"CK\": \"Cook Islands\",\n    \"CR\": \"Costa Rica\",\n    \"CI\": \"Côte d'Ivoire\",\n    \"HR\": \"Croatia\",\n    \"CU\": \"Cuba\",\n    \"CY\": \"Cyprus\",\n    \"CZ\": \"Czech Republic\",\n    \"CD\": \"Democratic Republic of Congo\",\n    \"DK\": \"Denmark\",\n    \"DJ\": \"Djibouti\",\n    \"DM\": \"Dominican\",\n    \"DO\": \"Dominican Republic\",\n    \"EC\": \"Ecuador\",\n    \"EG\": \"Egypt\",\n    \"SV\": \"El Salvador\",\n    \"GQ\": \"Equatorial Guinea\",\n    \"ER\": \"Eritrea\",\n    \"EE\": \"Estonia\",\n    \"ET\": \"Ethiopia\",\n    \"FK\": \"Falkland Islands\",\n    \"FO\": \"Faroe Islands\",\n    \"FJ\": \"Fiji\",\n    \"FI\": \"Finland\",\n    \"FR\": \"France\",\n    \"GF\": \"French Guiana\",\n    \"PF\": \"French Polynesia\",\n    \"TF\": \"French Overseas Territories\",\n    \"GA\": \"Gabon\",\n    \"GM\": \"Gambia\",\n    \"GE\": \"Georgia\",\n    \"DE\": \"Germany\",\n    \"GH\": \"Ghana\",\n    \"GI\": \"Gibraltar\",\n    \"GR\": \"Greece\",\n    \"GL\": \"Greenland\",\n    \"GD\": \"Grenada\",\n    \"GP\": \"Guadeloupe\",\n    \"GU\": \"Guam\",\n    \"GT\": \"Guatemala\",\n    \"GN\": \"Guinea\",\n    \"GW\": \"Guinea-Bissau\",\n    \"GY\": \"Guyana\",\n    \"HT\": \"Haiti\",\n    \"HM\": \"Heard Island And Mcdonald Islands\",\n    \"HN\": \"Honduras\",\n    \"HK\": \"Hong Kong\",\n    \"HU\": \"Hungary\",\n    \"IS\": \"Iceland\",\n    \"IN\": \"India\",\n    \"ID\": \"Indonesia\",\n    \"IR\": \"Iran\",\n    \"IQ\": \"Iraq\",\n    \"IE\": \"Ireland\",\n    \"IL\": \"Israel\",\n    \"IT\": \"Italy\",\n    \"JM\": \"Jamaica\",\n    \"JP\": \"Japan\",\n    \"JO\": \"Jordan\",\n    \"KZ\": \"Kazakhstan\",\n    \"KE\": \"Kenya\",\n    \"KI\": \"Kiribati\",\n    \"KP\": \"Korea, North\",\n    \"KR\": \"Korea, South\",\n    \"KW\": \"Kuwait\",\n    \"KG\": \"Kyrgyzstan\",\n    \"LA\": \"Laos\",\n    \"LV\": \"Latvia\",\n    \"LB\": \"Lebanon\",\n    \"LS\": \"Lesotho\",\n    \"LR\": \"Liberia\",\n    \"LY\": \"Libya\",\n    \"LI\": \"Liechtenstein\",\n    \"LT\": \"Lithuania\",\n    \"LU\": \"Luxembourg\",\n    \"MO\": \"Macau\",\n    \"MK\": \"Macedonia\",\n    \"MG\": \"Madagascar\",\n    \"MW\": \"Malawi\",\n    \"MY\": \"Malaysia\",\n    \"MV\": \"Maldives\",\n    \"ML\": \"Mali\",\n    \"MT\": \"Malta\",\n    \"MH\": \"Marshall Islands\",\n    \"MQ\": \"Martinique\",\n    \"MR\": \"Mauritania\",\n    \"MU\": \"Mauritius\",\n    \"YT\": \"Mayotte\",\n    \"MX\": \"Mexico\",\n    \"FM\": \"Micronesia\",\n    \"MD\": \"Moldova\",\n    \"MC\": \"Monaco\",\n    \"MN\": \"Mongolia\",\n    \"MS\": \"Montserrat\",\n    \"MA\": \"Morocco\",\n    \"MZ\": \"Mozambique\",\n    \"MM\": \"Myanmar\",\n    \"NA\": \"Namibia\",\n    \"NR\": \"Nauru\",\n    \"NP\": \"Nepal\",\n    \"NL\": \"Netherlands\",\n    \"AN\": \"Netherlands Antilles\",\n    \"NC\": \"New Caledonia\",\n    \"NZ\": \"New Zealand\",\n    \"NI\": \"Nicaragua\",\n    \"NE\": \"Niger\",\n    \"NG\": \"Nigeria\",\n    \"NU\": \"Niue\",\n    \"NF\": \"Norfolk Island\",\n    \"MP\": \"Northern Mariana Islands\",\n    \"NO\": \"Norway\",\n    \"OM\": \"Oman\",\n    \"PK\": \"Pakistan\",\n    \"PW\": \"Palau\",\n    \"PS\": \"Palestinian Territory\",\n    \"PA\": \"Panama\",\n    \"PG\": \"Papua New Guinea\",\n    \"PI\": \"Pi\",\n    \"PY\": \"Paraguay\",\n    \"PE\": \"Peru\",\n    \"PH\": \"Philippines\",\n    \"PN\": \"Pitcairn Island\",\n    \"PL\": \"Poland\",\n    \"PT\": \"Portugal\",\n    \"PR\": \"Puerto Rico\",\n    \"QA\": \"Qatar\",\n    \"CG\": \"Republic of Congo\",\n    \"RE\": \"Reunion\",\n    \"RO\": \"Romania\",\n    \"RU\": \"Russia\",\n    \"RW\": \"Rwanda\",\n    \"SH\": \"Saint Helena\",\n    \"KN\": \"Saint Kitts And Nevis\",\n    \"LC\": \"Saint Lucia\",\n    \"PM\": \"Saint Pierre And Miquelon\",\n    \"VC\": \"Saint Vincent And The Grenadines\",\n    \"WS\": \"Samoa\",\n    \"SM\": \"San Marino\",\n    \"ST\": \"Sao Tome et Principe\",\n    \"SA\": \"Saudi Arabia\",\n    \"SN\": \"Senegal\",\n    \"CS\": \"Serbia And Montenegro\",\n    \"SC\": \"Seychelles\",\n    \"SL\": \"Sierra Leone\",\n    \"SG\": \"Singapore\",\n    \"SK\": \"Slovakia\",\n    \"SI\": \"Slovenia\",\n    \"SB\": \"Solomon Islands\",\n    \"SO\": \"Somalia\",\n    \"ZA\": \"South Africa\",\n    \"GS\": \"South Georgia\",\n    \"ES\": \"Spain\",\n    \"LK\": \"Sri Lanka\",\n    \"SD\": \"Sudan\",\n    \"SR\": \"Suriname\",\n    \"SJ\": \"Svalbard et Jan Mayen\",\n    \"SZ\": \"Swaziland\",\n    \"SE\": \"Sweden\",\n    \"CH\": \"Switzerland\",\n    \"SY\": \"Syria\",\n    \"TW\": \"Taiwan\",\n    \"TJ\": \"Tajikistan\",\n    \"TZ\": \"Tanzania\",\n    \"TH\": \"Thailand\",\n    \"TL\": \"Timor-Leste\",\n    \"TG\": \"Togo\",\n    \"TK\": \"Tokelau\",\n    \"TO\": \"Tonga\",\n    \"TT\": \"Trinidad And Tobago\",\n    \"TN\": \"Tunisia\",\n    \"TR\": \"Turkey\",\n    \"TM\": \"Turkmenistan\",\n    \"TC\": \"Turks And Caicos Islands\",\n    \"TV\": \"Tuvalu\",\n    \"UG\": \"Uganda\",\n    \"UA\": \"Ukraine\",\n    \"AE\": \"United Arab Emirates\",\n    \"GB\": \"United Kingdom\",\n    \"US\": \"United States\",\n    \"UY\": \"Uruguay\",\n    \"UZ\": \"Uzbekistan\",\n    \"VU\": \"Vanuatu\",\n    \"VA\": \"Vatican City State\",\n    \"VE\": \"Venezuela\",\n    \"VN\": \"Vietnam\",\n    \"VG\": \"Virgin Islands, British\",\n    \"VI\": \"Virgin Islands, U.S.\",\n    \"WF\": \"Wallis And Futuna\",\n    \"EH\": \"Western Sahara\",\n    \"YE\": \"Yiddish\",\n    \"ZM\": \"Zambia\",\n    \"ZW\": \"Zimbabwe\"\n}"}],"_postman_id":"0865444a-76ba-4222-8fa2-1ea75a753578"},{"name":"List of ages supported","id":"cf811c61-2007-4b76-9da0-a0e975a24090","request":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"<p>authentication token</p>\n"}],"url":"{{api_host}}/{{api_version}}/helpers/ages","description":"<p>age codes given in response can be used as a demographic value when filtering facebook stats on age demographic filter</p>\n","urlObject":{"path":["{{api_version}}","helpers","ages"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"d9289e6c-4a62-4248-a85f-3467f7413340","name":"List of ages supported","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":"{{api_key}}","description":"authentication token"}],"url":"{{api_host}}/{{api_version}}/helpers/ages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"357"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"32f4123e93fc5f0886bf8e1c1bebdfb8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"953bb68c45bb906b525e54a03ce02039"},{"key":"X-Runtime","value":"0.137254"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"M.13-17\": \"Male - 13-17\",\n    \"M.18-24\": \"Male - 18-24\",\n    \"M.25-34\": \"Male - 25-34\",\n    \"M.35-44\": \"Male - 35-44\",\n    \"M.45-54\": \"Male - 45-54\",\n    \"M.55-64\": \"Male - 55-64\",\n    \"M.65+\": \"Male - 65+\",\n    \"F.13-17\": \"Female - 13-17\",\n    \"F.18-24\": \"Female - 18-24\",\n    \"F.25-34\": \"Female - 25-34\",\n    \"F.35-44\": \"Female - 35-44\",\n    \"F.45-54\": \"Female - 45-54\",\n    \"F.55-64\": \"Female - 55-64\",\n    \"F.65+\": \"Female - 65+\"\n}"}],"_postman_id":"cf811c61-2007-4b76-9da0-a0e975a24090"}],"id":"d5704d76-4114-4414-b86a-9f289da11cc0","event":[{"listen":"prerequest","script":{"id":"2aaca176-d951-41a5-b382-d27aa44d339c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0d2ec096-682b-4582-9919-77261e5667b3","type":"text/javascript","exec":[""]}}],"_postman_id":"d5704d76-4114-4414-b86a-9f289da11cc0","description":""},{"name":"Qualifiable Contacts","item":[{"name":"List all qualifiable contacts","id":"40d3aec3-8441-4399-a288-b914e402e8be","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/qualifiable_contacts?","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>Page requested</td>\n<td>optional</td>\n<td><code>1</code></td>\n<td>-</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Integer</td>\n<td>Items per page</td>\n<td>optional</td>\n<td><code>10</code></td>\n<td><code>1..100</code></td>\n</tr>\n<tr>\n<td>tag</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td><code>GF</code>, <code>ZA</code>, <code>TT</code>, <code>ET</code>, <code>PL</code>, <code>BT</code>, <code>AS</code>, <code>LB</code>, <code>IN</code>, <code>AI</code>, <code>YT</code>, <code>JE</code>, <code>MQ</code>, <code>IM</code>, <code>GE</code>, <code>CY</code>, <code>SG</code>, <code>LK</code>, <code>SX</code>, <code>ID</code>, <code>SR</code>, <code>CO</code>, <code>NR</code>, <code>RU</code>, <code>CH</code>, <code>AO</code>, <code>MN</code>, <code>EC</code>, <code>LI</code>, <code>SI</code>, <code>PM</code>, <code>NU</code>, <code>IR</code>, <code>VU</code>, <code>US</code>, <code>RO</code>, <code>MT</code>, <code>VC</code>, <code>IQ</code>, <code>MZ</code>, <code>GP</code>, <code>TL</code>, <code>CR</code>, <code>BS</code>, <code>GT</code>, <code>MC</code>, <code>GD</code>, <code>NO</code>, <code>MM</code>, <code>GA</code>, <code>BL</code>, <code>KM</code>, <code>UM</code>, <code>SD</code>, <code>SK</code>, <code>SB</code>, <code>TV</code>, <code>DK</code>, <code>MU</code>, <code>MH</code>, <code>DZ</code>, <code>KP</code>, <code>TG</code>, <code>CK</code>, <code>ST</code>, <code>PT</code>, <code>GR</code>, <code>IS</code>, <code>MP</code>, <code>NC</code>, <code>NF</code>, <code>AE</code>, <code>LY</code>, <code>PS</code>, <code>CI</code>, <code>KN</code>, <code>KH</code>, <code>AU</code>, <code>UG</code>, <code>FK</code>, <code>BD</code>, <code>MG</code>, <code>TW</code>, <code>CC</code>, <code>ZW</code>, <code>CL</code>, <code>PE</code>, <code>NE</code>, <code>IO</code>, <code>GL</code>, <code>AQ</code>, <code>KW</code>, <code>CA</code>, <code>TR</code>, <code>EH</code>, <code>AF</code>, <code>KE</code>, <code>TC</code>, <code>AX</code>, <code>TN</code>, <code>SA</code>, <code>AW</code>, <code>LS</code>, <code>RE</code>, <code>NI</code>, <code>TF</code>, <code>TD</code>, <code>PH</code>, <code>GY</code>, <code>VE</code>, <code>GS</code>, <code>PY</code>, <code>VN</code>, <code>AZ</code>, <code>BQ</code>, <code>HN</code>, <code>MW</code>, <code>LV</code>, <code>TO</code>, <code>ML</code>, <code>BR</code>, <code>BJ</code>, <code>BH</code>, <code>SO</code>, <code>IL</code>, <code>PR</code>, <code>DO</code>, <code>HR</code>, <code>AR</code>, <code>NL</code>, <code>BV</code>, <code>LR</code>, <code>AG</code>, <code>ES</code>, <code>JO</code>, <code>CZ</code>, <code>PN</code>, <code>DE</code>, <code>HK</code>, <code>CW</code>, <code>FO</code>, <code>MY</code>, <code>SE</code>, <code>YE</code>, <code>GW</code>, <code>WS</code>, <code>BW</code>, <code>CN</code>, <code>LA</code>, <code>BF</code>, <code>JM</code>, <code>BA</code>, <code>VG</code>, <code>VI</code>, <code>TH</code>, <code>HM</code>, <code>KG</code>, <code>MO</code>, <code>SL</code>, <code>TZ</code>, <code>PW</code>, <code>TJ</code>, <code>CM</code>, <code>MV</code>, <code>BB</code>, <code>KY</code>, <code>HT</code>, <code>GB</code>, <code>NG</code>, <code>MA</code>, <code>MS</code>, <code>GN</code>, <code>MR</code>, <code>SM</code>, <code>KR</code>, <code>EE</code>, <code>TK</code>, <code>CX</code>, <code>IE</code>, <code>LT</code>, <code>RW</code>, <code>UA</code>, <code>EG</code>, <code>GI</code>, <code>WF</code>, <code>ME</code>, <code>PA</code>, <code>NZ</code>, <code>AL</code>, <code>SS</code>, <code>BM</code>, <code>ZM</code>, <code>UZ</code>, <code>GM</code>, <code>ER</code>, <code>CD</code>, <code>RS</code>, <code>GG</code>, <code>PG</code>, <code>BY</code>, <code>GU</code>, <code>QA</code>, <code>GQ</code>, <code>BG</code>, <code>NP</code>, <code>AM</code>, <code>KI</code>, <code>HU</code>, <code>CF</code>, <code>LC</code>, <code>BE</code>, <code>JP</code>, <code>SZ</code>, <code>FI</code>, <code>PK</code>, <code>MD</code>, <code>GH</code>, <code>MK</code>, <code>SY</code>, <code>OM</code>, <code>BI</code>, <code>LU</code>, <code>CG</code>, <code>SV</code>, <code>AD</code>, <code>MX</code>, <code>TM</code>, <code>SC</code>, <code>BO</code>, <code>SN</code>, <code>FM</code>, <code>CU</code>, <code>VA</code>, <code>AT</code>, <code>SH</code>, <code>UY</code>, <code>IT</code>, <code>NA</code>, <code>FJ</code>, <code>BZ</code>, <code>FR</code>, <code>KZ</code>, <code>MF</code>, <code>CV</code>, <code>BN</code>, <code>DM</code>, <code>SJ</code>, <code>DJ</code>, <code>PF</code></td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>query</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>instagram_username_query</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","qualifiable_contacts"],"host":["{{api_host}}"],"query":[{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"per_page","value":"10"},{"disabled":true,"description":{"content":"<p>to filter contacts by tag</p>\n","type":"text/plain"},"key":"tag","value":""},{"disabled":true,"description":{"content":"<p>to filter contacts by alert id</p>\n","type":"text/plain"},"key":"alert_id","value":""},{"disabled":true,"description":{"content":"<p>to filter contacts by country code</p>\n","type":"text/plain"},"key":"country","value":""},{"disabled":true,"description":{"content":"<p>to filter contacts by city</p>\n","type":"text/plain"},"key":"city","value":""},{"disabled":true,"description":{"content":"<p>to filter contacts by name containing query</p>\n","type":"text/plain"},"key":"query","value":""},{"disabled":true,"description":{"content":"<p>to filter contacts by Instagram username containing query</p>\n","type":"text/plain"},"key":"instagram_username_query","value":""}],"variable":[]}},"response":[{"id":"e22c8fb8-67a4-4f50-b288-54f14a26b06b","name":"List all qualifiable contacts","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{api_key}}"}],"url":{"raw":"{{api_host}}/{{api_version}}/qualifiable_contacts.json?","host":["{{api_host}}"],"path":["{{api_version}}","qualifiable_contacts.json"],"query":[{"key":"page","value":"1","disabled":true},{"key":"per_page","value":"10","disabled":true},{"key":"tag","value":null,"description":"to filter contacts by tag","disabled":true},{"key":"alert_id","value":null,"description":"to filter contacts by alert id","disabled":true},{"key":"country","value":null,"description":"to filter contacts by country code","disabled":true},{"key":"city","value":null,"description":"to filter contacts by city","disabled":true},{"key":"query","value":null,"description":"to filter contacts by name containing query","disabled":true},{"key":"instagram_username_query","value":null,"description":"to filter contacts by Instagram username containing query","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"Content-Length","value":"3952"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"632dd76bec3c8dfd0f769ba5f16e23f9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-Request-Id","value":"5e80405b1f3e735ebea5b8c358ab48a5"},{"key":"X-Runtime","value":"0.050682"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"thin"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"per_page\": 10,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 3,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    },\n    \"contact_infos\": [\n        {\n            \"qualifiable_contact\": {\n                \"id\": 3,\n                \"author_info_id\": 3,\n                \"city\": \"Paris\",\n                \"company\": null,\n                \"country_code\": \"FR\",\n                \"username\": null,\n                \"title\": null,\n                \"user_id\": 37,\n                \"first_name\": \"human\",\n                \"last_name\": \"coder\",\n                \"bio\": \"human coder\",\n                \"facebook\": null,\n                \"twitter\": null,\n                \"instagram\": null,\n                \"instagram_followers_count\": null,\n                \"youtube\": null,\n                \"linkedin\": null,\n                \"pinterest\": null,\n                \"tripadvisor\": null,\n                \"website\": null,\n                \"email\": null,\n                \"telephone\": null,\n                \"facebook_messenger\": null,\n                \"whatsapp\": null,\n                \"note\": null,\n                \"google_maps_local_guide\": null,\n                \"tags\": [\n                    {\n                        \"id\": 2222,\n                        \"name\": \"dev\"\n                    }\n                ]\n            },\n            \"author_info\": {\n                \"id\": 3,\n                \"username\": \"Human Coders News\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"city\": null,\n                \"company\": null,\n                \"country_code\": null,\n                \"title\": null,\n                \"profile_image_url\": null,\n                \"bio\": null,\n                \"facebook\": null,\n                \"twitter\": \"@HumanCodersNews\",\n                \"instagram\": null,\n                \"youtube\": null,\n                \"linkedin\": null,\n                \"pinterest\": null,\n                \"tripadvisor\": null,\n                \"website\": null,\n                \"email\": null,\n                \"telephone\": null,\n                \"facebook_messenger\": null,\n                \"whatsapp\": null,\n                \"google_maps_local_guide\": null,\n                \"unverified_infos\": {},\n                \"author_info_mappings\": [\n                    {\n                        \"author_identifier_source\": 20,\n                        \"author_identifier\": \"HumanCodersNews\",\n                        \"url\": \"https://twitter.com/HumanCodersNews\",\n                        \"author_domain\": \"twitter.com\",\n                        \"author_identifier_source_name\": \"twitter\"\n                    }\n                ]\n            }\n        },\n        {\n            \"qualifiable_contact\": {\n                \"id\": 1,\n                \"author_info_id\": 1,\n                \"city\": null,\n                \"company\": null,\n                \"country_code\": null,\n                \"username\": null,\n                \"title\": null,\n                \"user_id\": 37,\n                \"first_name\": null,\n                \"last_name\": null,\n                \"bio\": null,\n                \"facebook\": null,\n                \"twitter\": null,\n                \"instagram\": null,\n                \"instagram_followers_count\": null,\n                \"youtube\": null,\n                \"linkedin\": null,\n                \"pinterest\": null,\n                \"tripadvisor\": null,\n                \"website\": null,\n                \"email\": null,\n                \"telephone\": null,\n                \"facebook_messenger\": null,\n                \"whatsapp\": null,\n                \"note\": \"super\",\n                \"google_maps_local_guide\": null,\n                \"tags\": []\n            },\n            \"author_info\": {\n                \"id\": 1,\n                \"username\": \"Julie Butler Brown\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"city\": null,\n                \"company\": null,\n                \"country_code\": null,\n                \"title\": null,\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/965796122123014144/aCfjt49j.jpg\",\n                \"bio\": \"Living life! Certified Personal trainer\",\n                \"facebook\": null,\n                \"twitter\": \"@JButlerBrown\",\n                \"instagram\": null,\n                \"youtube\": null,\n                \"linkedin\": null,\n                \"pinterest\": null,\n                \"tripadvisor\": null,\n                \"website\": null,\n                \"email\": null,\n                \"telephone\": null,\n                \"facebook_messenger\": null,\n                \"whatsapp\": null,\n                \"google_maps_local_guide\": null,\n                \"unverified_infos\": {},\n                \"author_info_mappings\": [\n                    {\n                        \"author_identifier_source\": 20,\n                        \"author_identifier\": \"JButlerBrown\",\n                        \"url\": \"https://twitter.com/JButlerBrown\",\n                        \"author_domain\": \"twitter.com\",\n                        \"author_identifier_source_name\": \"twitter\"\n                    }\n                ]\n            }\n        },\n        {\n            \"qualifiable_contact\": {\n                \"id\": 2,\n                \"author_info_id\": 2,\n                \"city\": null,\n                \"company\": null,\n                \"country_code\": null,\n                \"username\": null,\n                \"title\": null,\n                \"user_id\": 37,\n                \"first_name\": null,\n                \"last_name\": null,\n                \"bio\": null,\n                \"facebook\": null,\n                \"twitter\": null,\n                \"instagram\": null,\n                \"instagram_followers_count\": null,\n                \"youtube\": null,\n                \"linkedin\": null,\n                \"pinterest\": null,\n                \"tripadvisor\": null,\n                \"website\": null,\n                \"email\": null,\n                \"telephone\": null,\n                \"facebook_messenger\": null,\n                \"whatsapp\": null,\n                \"note\": null,\n                \"google_maps_local_guide\": null,\n                \"tags\": [\n                    {\n                        \"id\": 7462,\n                        \"name\": \"tagtao\"\n                    }\n                ]\n            },\n            \"author_info\": {\n                \"id\": 2,\n                \"username\": \"Rashad's Love\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"city\": null,\n                \"company\": null,\n                \"country_code\": null,\n                \"title\": null,\n                \"profile_image_url\": \"https://pbs.twimg.com/profile_images/960784908493914112/iVwvsoO7.jpg\",\n                \"bio\": \"Meditation Instructor ♻️ Personality Developer Guided#Meditations\\n#Sleep #Deep \\u200d♂️#Mindfulness #antiinsomnia #positiverelationships #positiveattitudes\",\n                \"facebook\": null,\n                \"twitter\": \"@Taodaomere\",\n                \"instagram\": null,\n                \"youtube\": null,\n                \"linkedin\": null,\n                \"pinterest\": null,\n                \"tripadvisor\": null,\n                \"website\": null,\n                \"email\": null,\n                \"telephone\": null,\n                \"facebook_messenger\": null,\n                \"whatsapp\": null,\n                \"google_maps_local_guide\": null,\n                \"unverified_infos\": {},\n                \"author_info_mappings\": [\n                    {\n                        \"author_identifier_source\": 20,\n                        \"author_identifier\": \"Taodaomere\",\n                        \"url\": \"https://twitter.com/Taodaomere\",\n                        \"author_domain\": \"twitter.com\",\n                        \"author_identifier_source_name\": \"twitter\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"40d3aec3-8441-4399-a288-b914e402e8be"},{"name":"Get contact info - using entry_id","id":"13aa2292-d32a-4288-88c4-b2959fd7d850","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/contact_info","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","contact_info"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"1c8017aa-8ee8-4b84-9a52-dc68f9227d1f","type":"string","value":"","key":"alert_id"},{"id":"ff9d5da0-2125-4ac2-9442-a8232c5b2464","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"2e3844d0-d9a7-442b-a18c-444c64ca5849","name":"Get contact info - using entry_id","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"}],"url":{"raw":"{{url}}/v3/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/contact_info","host":["{{url}}"],"path":["v3","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","contact_info"],"variable":[{"key":"alert_id","value":"56125"},{"key":"entry_id","value":"52840"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"c6d956a0d0c871fe91f445c6e5397186"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"f327172acb5c4689d4f17d3f2dbf792b\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.133934"},{"key":"Date","value":"Wed, 30 Oct 2019 07:55:17 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 120,\n        \"author_info_id\": 1703,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"BTS World\",\n        \"last_name\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": [\n            {\n                \"id\": 7543,\n                \"name\": \"ancd\"\n            }\n        ]\n    },\n    \"author_info\": {\n        \"id\": 1703,\n        \"username\": \"bts_world_is_tae\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": \"bts_world_is_tae\",\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 42,\n                \"author_identifier\": \"bts_world_is_tae\",\n                \"url\": \"https://www.instagram.com/bts_world_is_tae\",\n                \"author_domain\": \"instagram.com\",\n                \"author_identifier_source_name\": \"instagram_public\"\n            }\n        ]\n    },\n    \"entry_author_identifier\": \"bts_world_is_tae\"\n}"}],"_postman_id":"13aa2292-d32a-4288-88c4-b2959fd7d850"},{"name":"Get contact info - using twitto_id","id":"ad9d1e23-1717-4a37-8ced-e71c4d7d2a76","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_twittos/qualifiable_contacts/contact_info?twitto_id=45635736","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitto_id</td>\n<td>Integer</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_twittos","qualifiable_contacts","contact_info"],"host":["{{api_host}}"],"query":[{"key":"twitto_id","value":"45635736"}],"variable":[{"id":"c4dd4c20-8777-4313-b689-d80a28b7dff6","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"a4951f8c-afb1-4aac-8938-fb75f6189c8e","name":"Get contact info - using twitto_id","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"}],"url":{"raw":"{{url}}/v3/twitter/alert_stats/:alert_id/top_twittos/qualifiable_contacts/contact_info?twitto_id=45635736","host":["{{url}}"],"path":["v3","twitter","alert_stats",":alert_id","top_twittos","qualifiable_contacts","contact_info"],"query":[{"key":"twitto_id","value":"45635736"}],"variable":[{"key":"alert_id","value":"56091"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"58c254cf333dc45dc3d0651c28d648c4"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"96cf6b56eb2e1606e5f02672eec603d0\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.166617"},{"key":"Date","value":"Wed, 30 Oct 2019 07:57:10 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 41,\n        \"author_info_id\": 65,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"DFM\",\n        \"last_name\": \"Radio\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": [\n            {\n                \"id\": 7484,\n                \"name\": \"another tag\"\n            },\n            {\n                \"id\": 7510,\n                \"name\": \"tada\"\n            },\n            {\n                \"id\": 7593,\n                \"name\": \"a tag\"\n            },\n            {\n                \"id\": 7596,\n                \"name\": \"red\"\n            }\n        ]\n    },\n    \"author_info\": {\n        \"id\": 65,\n        \"username\": \"DFM Radio\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": \"https://pbs.twimg.com/profile_images/1137425150176104448/aF0O8N4K_normal.png\",\n        \"bio\": \"DFM Dance Radio, hitting you with fresh hits, every day,playing the music you love,your favourite music, on your favourite radio.\",\n        \"facebook\": null,\n        \"twitter\": \"@dfmliveradio\",\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 20,\n                \"author_identifier\": \"dfmliveradio\",\n                \"url\": \"https://twitter.com/dfmliveradio\",\n                \"author_domain\": null,\n                \"author_identifier_source_name\": \"twitter\"\n            }\n        ]\n    }\n}"}],"_postman_id":"ad9d1e23-1717-4a37-8ced-e71c4d7d2a76"},{"name":"Get contact info - using Instagram top media id","id":"7c516a8d-5523-42f9-b73f-7d15b1586d8a","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"}],"url":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/top_media/:top_media_id/qualifiable_contacts/contact_info","urlObject":{"path":["{{api_version}}","instagram","alerts",":alert_id","top_media",":top_media_id","qualifiable_contacts","contact_info"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"d5ce0ae2-0029-47b3-9df9-98186933b171","type":"string","value":"","key":"alert_id"},{"id":"c2d45d7b-6ec1-4f22-a008-8c5e476dcb09","type":"string","value":"","key":"top_media_id"}]}},"response":[{"id":"dae8f896-1610-4d9b-98a2-91e578f0ba52","name":"Get contact info - using Instagram top media id","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"}],"url":{"raw":"{{url}}/v3/instagram/alerts/:alert_id/top_media/:top_media_id/qualifiable_contacts/contact_info","host":["{{url}}"],"path":["v3","instagram","alerts",":alert_id","top_media",":top_media_id","qualifiable_contacts","contact_info"],"variable":[{"key":"alert_id","value":"56125"},{"key":"top_media_id","value":"2038"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"e6f45dcef574bd2e6528a1b90f59c18c"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"830f97cac2affe26d08dd2b1391c1974\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.171494"},{"key":"Date","value":"Tue, 05 Nov 2019 10:01:45 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 132,\n        \"author_info_id\": 1795,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"girlgroups\",\n        \"last_name\": \"\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"instagram_followers_count\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": [\n            {\n                \"id\": 7526,\n                \"name\": \"haha\"\n            },\n            {\n                \"id\": 7530,\n                \"name\": \"hahahah\"\n            },\n            {\n                \"id\": 7580,\n                \"name\": \"hah\"\n            }\n        ]\n    },\n    \"author_info\": {\n        \"id\": 1795,\n        \"username\": \"ioizone._\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": \"ioizone._\",\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 42,\n                \"author_identifier\": \"ioizone._\",\n                \"url\": \"https://www.instagram.com/ioizone._\",\n                \"author_domain\": null,\n                \"author_identifier_source_name\": \"instagram_public\"\n            }\n        ]\n    },\n    \"instagram_top_media_username\": \"ioizone._\"\n}"}],"_postman_id":"7c516a8d-5523-42f9-b73f-7d15b1586d8a"},{"name":"Qualify contact - associate existing contact to entry","id":"cd2bbfa6-eec7-40bd-8696-a8cbc3f414be","request":{"method":"POST","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact_id\": 126,\n    \"qualifiable_contact\": {\n        \"author_info_id\": 1707,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"RSM\",\n        \"last_name\": \"Discover\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": []\n    }\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/qualify_contact","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>qualifiable_contact</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[city]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[company]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[country_code]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[username]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[first_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[last_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[title]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[bio]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[twitter]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram_followers_count]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[youtube]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[linkedin]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[pinterest]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tripadvisor]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[website]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[email]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[telephone]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook_messenger]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[whatsapp]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[note]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[google_maps_local_guide]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tag_list]</td>\n<td>[String]</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","qualify_contact"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"4ed72133-ad6f-4c49-809f-db4a69a2c779","type":"string","value":"","key":"alert_id"},{"id":"dee8a0d5-ff08-48d5-a93e-7ad0d4b96f77","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"0c01ff4e-2e8e-4028-9e68-78dc8ce9d8ea","name":"Qualify contact - associate existing contact to entry","originalRequest":{"method":"POST","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact_id\": 126,\n    \"qualifiable_contact\": {\n        \"author_info_id\": 1707,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"RSM\",\n        \"last_name\": \"Discover\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": []\n    }\n}"},"url":{"raw":"{{url}}/v3/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/qualify_contact","host":["{{url}}"],"path":["v3","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","qualify_contact"],"variable":[{"key":"alert_id","value":"56090"},{"key":"entry_id","value":"50112"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1086"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"e65654828e1c6e6708d6ad2d372608c2"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"2f53582f398c400094fed8b38606d5b0\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.164585"},{"key":"Date","value":"Wed, 30 Oct 2019 07:47:42 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 126,\n        \"author_info_id\": 1707,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"RSM\",\n        \"last_name\": \"Discover\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": []\n    },\n    \"author_info\": {\n        \"id\": 1707,\n        \"username\": null,\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 30,\n                \"author_identifier\": \"alerti_entry_50112\",\n                \"url\": null,\n                \"author_domain\": \"forbes.com\",\n                \"author_identifier_source_name\": \"videos\"\n            }\n        ]\n    },\n    \"entry_author_identifier\": \"alerti_entry_50112\"\n}"}],"_postman_id":"cd2bbfa6-eec7-40bd-8696-a8cbc3f414be"},{"name":"Qualify contact - new contact for current entry only","id":"4f670307-f4c3-4273-b5ad-cdba3be61633","request":{"method":"POST","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact\": {\n        \"first_name\": \"RSM\",\n        \"last_name\": \"Discovery\",\n        \"tag_list\": []\n    }\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/single_qualify","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>qualifiable_contact_id</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[city]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[company]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[country_code]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[username]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[first_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[last_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[title]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[bio]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[twitter]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram_followers_count]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[youtube]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[linkedin]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[pinterest]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tripadvisor]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[website]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[email]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[telephone]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook_messenger]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[whatsapp]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[note]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[google_maps_local_guide]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tag_list]</td>\n<td>[String]</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","single_qualify"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"b755a900-7736-45e2-945a-b07ebc62d7c5","type":"string","value":"","key":"alert_id"},{"id":"0edccf70-7144-494e-9e25-068d7e79450c","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"aa91744f-8d90-4ece-b5ac-b96e988ef7e2","name":"Qualify contact - new contact for current entry only","originalRequest":{"method":"POST","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact\": {\n        \"first_name\": \"RSM\",\n        \"last_name\": \"Discovery\",\n        \"tag_list\": []\n    }\n}"},"url":{"raw":"{{url}}/v3/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/single_qualify","host":["{{url}}"],"path":["v3","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","single_qualify"],"variable":[{"key":"alert_id","value":"56090"},{"key":"entry_id","value":"50112"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1087"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"61df2d180217266e57cc54a9afabd85e"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"c694fda389ffdf4a349e0e5358ab5a18\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.216061"},{"key":"Date","value":"Wed, 30 Oct 2019 07:38:55 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 124,\n        \"author_info_id\": 1705,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"RSM\",\n        \"last_name\": \"Discovery\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": []\n    },\n    \"author_info\": {\n        \"id\": 1705,\n        \"username\": null,\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 30,\n                \"author_identifier\": \"alerti_entry_50112\",\n                \"url\": null,\n                \"author_domain\": \"forbes.com\",\n                \"author_identifier_source_name\": \"videos\"\n            }\n        ]\n    },\n    \"entry_author_identifier\": \"alerti_entry_50112\"\n}"}],"_postman_id":"4f670307-f4c3-4273-b5ad-cdba3be61633"},{"name":"Qualify contact - using entry Instagram username","id":"fd55abc7-06d7-4c25-b246-f2d20c4e759e","request":{"method":"PUT","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"instagram_username\": \"bts_world_is_tae\",\n    \"qualifiable_contact\": {\n        \"author_info_id\": 1703,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"BTS World\",\n        \"last_name\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": [\n            \"ancd\"\n        ]\n    }\n}"},"url":"{{api_host}}/{{api_version}}/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/instagram_username","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>instagram_username</td>\n<td>String</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[city]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[company]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[country_code]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[username]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[first_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[last_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[title]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[bio]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[twitter]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram_followers_count]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[youtube]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[linkedin]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[pinterest]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tripadvisor]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[website]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[email]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[telephone]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook_messenger]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[whatsapp]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[note]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[google_maps_local_guide]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tag_list]</td>\n<td>[String]</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","instagram_username"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"24a8f8ae-e9d6-4c8a-8a16-2cc39db359d4","type":"string","value":"","key":"alert_id"},{"id":"5f49fdf1-2b5b-45a1-b722-db0bfbb29e19","type":"string","value":"","key":"entry_id"}]}},"response":[{"id":"fbfdcf62-e6af-4c75-9b65-09359950a383","name":"Qualify contact - using entry Instagram username","originalRequest":{"method":"PUT","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"instagram_username\": \"bts_world_is_tae\",\n    \"qualifiable_contact\": {\n        \"author_info_id\": 1703,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"BTS World\",\n        \"last_name\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": [\n            \"ancd\"\n        ]\n    }\n}"},"url":{"raw":"{{url}}/v3/alerts/:alert_id/entries/:entry_id/qualifiable_contacts/instagram_username","host":["{{url}}"],"path":["v3","alerts",":alert_id","entries",":entry_id","qualifiable_contacts","instagram_username"],"variable":[{"key":"alert_id","value":"56125"},{"key":"entry_id","value":"52840"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"f53cfa8af5fdde916a3f4988e62085ca"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"f327172acb5c4689d4f17d3f2dbf792b\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.184816"},{"key":"Date","value":"Wed, 30 Oct 2019 07:59:49 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 120,\n        \"author_info_id\": 1703,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"BTS World\",\n        \"last_name\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": [\n            {\n                \"id\": 7543,\n                \"name\": \"ancd\"\n            }\n        ]\n    },\n    \"author_info\": {\n        \"id\": 1703,\n        \"username\": \"bts_world_is_tae\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": \"bts_world_is_tae\",\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 42,\n                \"author_identifier\": \"bts_world_is_tae\",\n                \"url\": \"https://www.instagram.com/bts_world_is_tae\",\n                \"author_domain\": \"instagram.com\",\n                \"author_identifier_source_name\": \"instagram_public\"\n            }\n        ]\n    },\n    \"entry_author_identifier\": \"bts_world_is_tae\"\n}"}],"_postman_id":"fd55abc7-06d7-4c25-b246-f2d20c4e759e"},{"name":"Qualify contact - using Instagram top media username","id":"0450298a-28c9-4c0e-a887-a1f1a3714747","request":{"method":"PUT","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"instagram_username\": \"rexhabrasil\",\n    \"qualifiable_contact\": {\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"Bebe Rexha\",\n        \"last_name\": \"Brasil\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": [\n            \"ancd\"\n        ]\n    }\n}"},"url":"{{api_host}}/{{api_version}}/instagram/alerts/:alert_id/top_media/:top_media_id/qualifiable_contacts/instagram_username","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>instagram_username</td>\n<td>String</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[city]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[company]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[country_code]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[username]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[first_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[last_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[title]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[bio]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[twitter]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram_followers_count]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[youtube]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[linkedin]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[pinterest]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tripadvisor]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[website]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[email]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[telephone]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook_messenger]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[whatsapp]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[note]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[google_maps_local_guide]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tag_list]</td>\n<td>[String]</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","instagram","alerts",":alert_id","top_media",":top_media_id","qualifiable_contacts","instagram_username"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"539420a1-032f-46b0-8dec-6a435ea33a35","type":"string","value":"","key":"alert_id"},{"id":"b6c26666-5347-4809-ae92-da1650c7c251","type":"string","value":"","key":"top_media_id"}]}},"response":[{"id":"dca91848-b78d-4cf2-a775-814249429642","name":"Qualify contact - using Instagram top media username","originalRequest":{"method":"PUT","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"instagram_username\": \"rexhabrasil\",\n    \"qualifiable_contact\": {\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"Bebe Rexha\",\n        \"last_name\": \"Brasil\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": [\n            \"ancd\"\n        ]\n    }\n}"},"url":{"raw":"{{url}}/v3/instagram/alerts/:alert_id/top_media/:top_media_id/qualifiable_contacts/instagram_username","host":["{{url}}"],"path":["v3","instagram","alerts",":alert_id","top_media",":top_media_id","qualifiable_contacts","instagram_username"],"variable":[{"key":"alert_id","value":"56125"},{"key":"top_media_id","value":"2033"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"e8ed93265361af8565cc01615f2f51df"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"3c7ed0d912ec24c3a885dd7a2beb820d\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.317674"},{"key":"Date","value":"Tue, 05 Nov 2019 10:04:14 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 135,\n        \"author_info_id\": 1798,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"Bebe Rexha\",\n        \"last_name\": \"Brasil\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"instagram_followers_count\": 11300,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": [\n            {\n                \"id\": 7543,\n                \"name\": \"ancd\"\n            }\n        ]\n    },\n    \"author_info\": {\n        \"id\": 1798,\n        \"username\": \"rexhabrasil\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": \"rexhabrasil\",\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 42,\n                \"author_identifier\": \"rexhabrasil\",\n                \"url\": \"https://www.instagram.com/rexhabrasil\",\n                \"author_domain\": null,\n                \"author_identifier_source_name\": \"instagram_public\"\n            }\n        ]\n    },\n    \"instagram_top_media_username\": \"rexhabrasil\"\n}"}],"_postman_id":"0450298a-28c9-4c0e-a887-a1f1a3714747"},{"name":"Qualify contact - using twitto_id","id":"f5bc7767-b28a-4494-ab53-ec2fe3f7504e","request":{"method":"POST","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact\": {\n        \"tag_list\": []\n    },\n    \"twitto_id\": 45636001\n}"},"url":"{{api_host}}/{{api_version}}/twitter/alert_stats/:alert_id/top_twittos/qualifiable_contacts/qualify_contact","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>twitto_id</td>\n<td>Integer</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[city]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[company]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[country_code]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[username]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[first_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[last_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[title]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[bio]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[twitter]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram_followers_count]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[youtube]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[linkedin]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[pinterest]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tripadvisor]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[website]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[email]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[telephone]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook_messenger]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[whatsapp]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[note]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[google_maps_local_guide]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tag_list]</td>\n<td>[String]</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","twitter","alert_stats",":alert_id","top_twittos","qualifiable_contacts","qualify_contact"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"f3a45c43-aacf-41ac-aef5-e2beb2231691","type":"string","value":"","key":"alert_id"}]}},"response":[{"id":"e0b91970-4a51-4d61-a6b9-cbe3048fb9af","name":"Qualify contact - using twitto_id","originalRequest":{"method":"POST","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact\": {\n        \"tag_list\": []\n    },\n    \"twitto_id\": 45636001\n}"},"url":{"raw":"{{url}}/v3/twitter/alert_stats/:alert_id/top_twittos/qualifiable_contacts/qualify_contact","host":["{{url}}"],"path":["v3","twitter","alert_stats",":alert_id","top_twittos","qualifiable_contacts","qualify_contact"],"variable":[{"key":"alert_id","value":"56091"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1176"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"755462e6f1335357d05362ab86cbd5ab"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"232bd7571da49b8eb28dfc48d44c0035\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.195770"},{"key":"Date","value":"Wed, 30 Oct 2019 07:35:40 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 122,\n        \"author_info_id\": 330,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": null,\n        \"last_name\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": []\n    },\n    \"author_info\": {\n        \"id\": 330,\n        \"username\": \"-S. \\u200d♀️ 濾\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": \"https://pbs.twimg.com/profile_images/950688090363977734/hgWTDvx1.jpg\",\n        \"bio\": \"Cantante de ducha y soñadora profesional.\",\n        \"facebook\": null,\n        \"twitter\": \"@badidibum\",\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 20,\n                \"author_identifier\": \"badidibum\",\n                \"url\": \"https://twitter.com/badidibum\",\n                \"author_domain\": null,\n                \"author_identifier_source_name\": \"twitter\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f5bc7767-b28a-4494-ab53-ec2fe3f7504e"},{"name":"Qualify contact - update contact using contact id","id":"7131f12e-3fd0-4ecf-add9-1a6cc349d696","request":{"method":"PUT","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact\": {\n        \"author_info_id\": 1170,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"AJ\",\n        \"last_name\": \"Mitchell\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": []\n    }\n}"},"url":"{{api_host}}/{{api_version}}/qualifiable_contacts/:qualifiable_contact_id/contact_info","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>qualifiable_contact</td>\n<td>Hash</td>\n<td></td>\n<td>mandatory</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[city]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[company]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[country_code]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[username]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[first_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[last_name]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[title]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[bio]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[twitter]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[instagram_followers_count]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[youtube]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[linkedin]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[pinterest]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tripadvisor]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[website]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[email]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[telephone]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[facebook_messenger]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[whatsapp]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[note]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[google_maps_local_guide]</td>\n<td>String</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>qualifiable_contact[tag_list]</td>\n<td>[String]</td>\n<td></td>\n<td>optional</td>\n<td></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","qualifiable_contacts",":qualifiable_contact_id","contact_info"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"07bc2d9e-2de5-468e-a16b-8ea7cb1be097","type":"string","value":"","key":"qualifiable_contact_id"}]}},"response":[{"id":"551bebfd-b300-4dec-ae31-97efe9a68bae","name":"Qualify contact - update contact using contact id","originalRequest":{"method":"PUT","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"qualifiable_contact\": {\n        \"author_info_id\": 1170,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"AJ\",\n        \"last_name\": \"Mitchell\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tag_list\": []\n    }\n}"},"url":{"raw":"{{url}}/v3/qualifiable_contacts/:qualifiable_contact_id/contact_info","host":["{{url}}"],"path":["v3","qualifiable_contacts",":qualifiable_contact_id","contact_info"],"variable":[{"key":"qualifiable_contact_id","value":"98"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"6d797a2acdfa3ceff2174945c0b094a3"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"e6192b5a53a99415a1ca9ab2be4a251b\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.130226"},{"key":"Date","value":"Wed, 30 Oct 2019 07:52:07 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"qualifiable_contact\": {\n        \"id\": 98,\n        \"author_info_id\": 1170,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": \"AJ\",\n        \"last_name\": \"Mitchell\",\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": []\n    },\n    \"author_info\": {\n        \"id\": 1170,\n        \"username\": \"ajmitchell.tr\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"title\": null,\n        \"profile_image_url\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": \"ajmitchell.tr\",\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"google_maps_local_guide\": null,\n        \"author_info_mappings\": [\n            {\n                \"author_identifier_source\": 42,\n                \"author_identifier\": \"ajmitchell.tr\",\n                \"url\": \"https://www.instagram.com/ajmitchell.tr\",\n                \"author_domain\": \"instagram.com\",\n                \"author_identifier_source_name\": \"instagram_public\"\n            }\n        ]\n    }\n}"}],"_postman_id":"7131f12e-3fd0-4ecf-add9-1a6cc349d696"},{"name":"Get contact tags","id":"d2a8d995-b636-486c-991c-c0830fe23faa","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{api_host}}/{{api_version}}/qualifiable_contacts/tags?alert_id","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>key</th>\n<th>type</th>\n<th>description</th>\n<th>required</th>\n<th>default value</th>\n<th>restricted values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert_id</td>\n<td>Integer</td>\n<td></td>\n<td>optional</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["{{api_version}}","qualifiable_contacts","tags"],"host":["{{api_host}}"],"query":[{"key":"alert_id","value":""}],"variable":[]}},"response":[{"id":"15af4cd7-26b3-400f-809b-08c916367fa7","name":"Get contact tags","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/v3/qualifiable_contacts/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"6cc36c5c1b2bcdc22e977c3cc3616c88"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"2e4ff67b37a51503f9c71ed27a9429d4\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.100288"},{"key":"Date","value":"Mon, 28 Oct 2019 06:59:22 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"tags\": [\n        {\n            \"id\": 7510,\n            \"name\": \"tada\",\n            \"contacts_count\": 2\n        },\n        {\n            \"id\": 7596,\n            \"name\": \"red\",\n            \"contacts_count\": 2\n        },\n        {\n            \"id\": 7597,\n            \"name\": \"aahah\",\n            \"contacts_count\": 1\n        },\n        {\n            \"id\": 7598,\n            \"name\": \"ghahahah\",\n            \"contacts_count\": 1\n        },\n        {\n            \"id\": 30,\n            \"name\": \"tag1\",\n            \"contacts_count\": 1\n        },\n        {\n            \"id\": 31,\n            \"name\": \"tag2\",\n            \"contacts_count\": 1\n        },\n        {\n            \"id\": 7484,\n            \"name\": \"another tag\",\n            \"contacts_count\": 1\n        },\n        {\n            \"id\": 7593,\n            \"name\": \"a tag\",\n            \"contacts_count\": 1\n        },\n        {\n            \"id\": 7580,\n            \"name\": \"hah\",\n            \"contacts_count\": 1\n        }\n    ]\n}"}],"_postman_id":"d2a8d995-b636-486c-991c-c0830fe23faa"},{"name":"Get all contacts alerts","id":"3890f01d-4f57-43b8-a331-8eedb4ac638b","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{api_host}}/{{api_version}}/qualifiable_contacts/alerts","urlObject":{"path":["{{api_version}}","qualifiable_contacts","alerts"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"0ae227c3-5638-4a05-8a4e-4fbaf17c421a","name":"Get all contact alerts","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/v3/qualifiable_contacts/alerts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"784b006be302d49f68539175d6476b4a"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"b3158881aac4069c9e9241e465a79305\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.102279"},{"key":"Date","value":"Mon, 28 Oct 2019 07:03:28 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"alert_ids\": [\n        56091,\n        55965,\n        56090,\n        55908,\n        56093,\n        56110,\n        56123,\n        56120,\n        56124,\n        56125\n    ]\n}"}],"_postman_id":"3890f01d-4f57-43b8-a331-8eedb4ac638b"},{"name":"Get all contacts countries","id":"d44520ae-cd3b-46e0-9c88-c94f03911b3f","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{api_host}}/{{api_version}}/qualifiable_contacts/countries","urlObject":{"path":["{{api_version}}","qualifiable_contacts","countries"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"3a8418c1-36be-453d-a75f-5a53c4961f4e","name":"Get contact countries","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/v3/qualifiable_contacts/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"44"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"b14d7ae480e92284dba0eb24cef8eb8c"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"aced2c58c57dc292cc47132cb5c394e3\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.099576"},{"key":"Date","value":"Mon, 28 Oct 2019 07:00:31 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"country_codes\": [\n        \"AF\",\n        \"GB\",\n        \"US\",\n        \"CZ\",\n        \"FR\"\n    ]\n}"}],"_postman_id":"d44520ae-cd3b-46e0-9c88-c94f03911b3f"},{"name":"Get all contacts cities","id":"6914e765-1b87-4641-9c1a-30a941b535a0","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{api_host}}/{{api_version}}/qualifiable_contacts/cities","urlObject":{"path":["{{api_version}}","qualifiable_contacts","cities"],"host":["{{api_host}}"],"query":[],"variable":[]}},"response":[{"id":"b23cd138-97f6-4333-aff9-e33c18f81d84","name":"Get all contact cities","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/v3/qualifiable_contacts/cities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"56"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"fb57e4e88e9e5a8b5348c078cb337ca7"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"\"1de12b5243f3926608b98476f1d6bd5d\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.090920"},{"key":"Date","value":"Mon, 28 Oct 2019 07:03:40 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"cities\": [\n        \"a city\",\n        \"aaa\",\n        \"city city\",\n        \"hah\",\n        \"New York\"\n    ]\n}"}],"_postman_id":"6914e765-1b87-4641-9c1a-30a941b535a0"},{"name":"Get all alerts of a contact","id":"6f990412-7524-4b17-ba45-2584b2ebf790","request":{"method":"GET","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{api_host}}/{{api_version}}/qualifiable_contacts/:qualifiable_contact_id/alerts?page=1&per_page=2","urlObject":{"path":["{{api_version}}","qualifiable_contacts",":qualifiable_contact_id","alerts"],"host":["{{api_host}}"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"2"}],"variable":[{"id":"7562c121-9d94-41d2-be97-e2a527f04755","type":"string","value":"","key":"qualifiable_contact_id"}]}},"response":[{"id":"8db99f4c-ee01-47ee-aca1-5e744acdbfa9","name":"Get all alerts of a contact","originalRequest":{"method":"GET","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{url}}/v3/qualifiable_contacts/48/alerts?page=1&per_page=2","host":["{{url}}"],"path":["v3","qualifiable_contacts","48","alerts"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"78c65ddaa18cdb376a200c74dab47890"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"69f3c2e096c2d330b76bcf224599167f\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.184182"},{"key":"Date","value":"Mon, 28 Oct 2019 07:07:02 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"per_page\": 2,\n        \"current_page\": 1,\n        \"previous_page\": null,\n        \"next_page\": null,\n        \"total_count\": 2,\n        \"total_pages\": 1,\n        \"out_of_bounds\": false\n    },\n    \"alerts\": [\n        {\n            \"id\": 56093,\n            \"entries_count\": 28,\n            \"newest_entry\": {\n                \"id\": 50977,\n                \"alert_id\": 56093,\n                \"published_at\": \"2019-09-18T16:45:00+07:00\",\n                \"period\": \"2019-09-18\",\n                \"source\": 91,\n                \"rating\": 5,\n                \"lang\": \"fr\",\n                \"author_id\": null,\n                \"author_identifier\": \"alerti\",\n                \"question\": null,\n                \"suggestion\": null,\n                \"retrieved_at\": \"2019-10-14T11:03:20+07:00\",\n                \"parent_id\": null,\n                \"child_entries_count\": 0,\n                \"comments_count\": 0,\n                \"todos_count\": 0,\n                \"bound_tags_count\": 0,\n                \"tags_count\": 0,\n                \"parent_published_at\": \"2019-09-18T16:45:00+07:00\",\n                \"parent_period\": \"2019-09-18\",\n                \"irrelevant\": false,\n                \"moderated\": false,\n                \"trashed\": false,\n                \"replies_count\": 0,\n                \"title\": \"alerti (Alerti)\",\n                \"tags\": [],\n                \"alert_query_setting_id\": null,\n                \"link_domain\": \"twitter.com\",\n                \"read_by_current_user\": false,\n                \"author_name\": \"alerti (Alerti)\",\n                \"source_name\": \"twitter_non_admin\",\n                \"link\": \"http://twitter.com/alerti/statuses/1174258007045111808\",\n                \"publisher\": null,\n                \"teaser\": \"Les conseils marketing des pros pour booster vos ventes Amazon, par @niko_jaimes : https://t.co/9BHm0Kiiqu via @journaldunet\",\n                \"is_domain_excluded\": false,\n                \"twitter_screen_name\": \"alerti\",\n                \"twitter_id\": \"alerti\",\n                \"twitter_account_type\": \"tweet\"\n            }\n        },\n        {\n            \"id\": 55965,\n            \"entries_count\": 1,\n            \"newest_entry\": {\n                \"id\": 43990,\n                \"alert_id\": 55965,\n                \"published_at\": \"2019-07-08T14:53:00+07:00\",\n                \"period\": \"2019-07-08\",\n                \"source\": 20,\n                \"rating\": 5,\n                \"lang\": \"en\",\n                \"author_id\": null,\n                \"author_identifier\": \"alerti\",\n                \"question\": null,\n                \"suggestion\": null,\n                \"retrieved_at\": \"2019-07-11T17:36:39+07:00\",\n                \"parent_id\": null,\n                \"child_entries_count\": 0,\n                \"comments_count\": 0,\n                \"todos_count\": 0,\n                \"bound_tags_count\": 0,\n                \"tags_count\": 0,\n                \"parent_published_at\": \"2019-07-08T14:53:00+07:00\",\n                \"parent_period\": \"2019-07-08\",\n                \"irrelevant\": false,\n                \"moderated\": false,\n                \"trashed\": false,\n                \"replies_count\": 0,\n                \"title\": \"alerti (Alerti)\",\n                \"tags\": [],\n                \"alert_query_setting_id\": 1280,\n                \"link_domain\": \"twitter.com\",\n                \"read_by_current_user\": false,\n                \"author_name\": \"alerti (Alerti)\",\n                \"source_name\": \"twitter\",\n                \"link\": \"http://twitter.com/alerti/statuses/1148137897532547072\",\n                \"publisher\": null,\n                \"teaser\": \"Robots.txt et Directive Noindex: : les alternatives https://t.co/mF8zN8aVqS\",\n                \"is_domain_excluded\": false,\n                \"is_twitto_excluded\": false,\n                \"twitter_id\": \"alerti\",\n                \"twitto\": {\n                    \"id\": 45635006,\n                    \"followers_count\": 2100\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"6f990412-7524-4b17-ba45-2584b2ebf790"},{"name":"Delete contact","id":"1dac6aa1-7699-4455-af58-d7774016fc3f","request":{"method":"DELETE","header":[{"description":"<p>authentication token</p>\n","key":"X-Auth-Token","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{api_host}}/{{api_version}}/qualifiable_contacts/:qualifiable_contact_id","urlObject":{"path":["{{api_version}}","qualifiable_contacts",":qualifiable_contact_id"],"host":["{{api_host}}"],"query":[],"variable":[{"id":"980d2e55-6135-45db-a594-2fa4df968971","type":"string","value":"","key":"qualifiable_contact_id"}]}},"response":[{"id":"27d88f19-2e7a-4020-8965-74e15ae29709","name":"Delete contact","originalRequest":{"method":"DELETE","header":[{"description":"authentication token","key":"X-Auth-Token","value":"{{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/v3/qualifiable_contacts/90"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Option","value":"nosniff"},{"key":"X-Request-Id","value":"c52b16a040112792a6b8756fa41614e7"},{"key":"X-Meta-Request-Version","value":"0.6.0"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"4041c2868a7433f0b6d40e9f5b45e31f\""},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Runtime","value":"0.154081"},{"key":"Date","value":"Mon, 28 Oct 2019 07:05:18 GMT"},{"key":"X-Powered-By","value":"Phusion Passenger 6.0.4"},{"key":"Server","value":"nginx/1.17.3 + Phusion Passenger 6.0.4"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"qualifiable_contact\": {\n        \"id\": 90,\n        \"author_info_id\": 1148,\n        \"city\": null,\n        \"company\": null,\n        \"country_code\": null,\n        \"username\": null,\n        \"title\": null,\n        \"user_id\": 312,\n        \"first_name\": null,\n        \"last_name\": null,\n        \"bio\": null,\n        \"facebook\": null,\n        \"twitter\": null,\n        \"instagram\": null,\n        \"youtube\": null,\n        \"linkedin\": null,\n        \"pinterest\": null,\n        \"tripadvisor\": null,\n        \"website\": null,\n        \"email\": null,\n        \"telephone\": null,\n        \"facebook_messenger\": null,\n        \"whatsapp\": null,\n        \"note\": null,\n        \"google_maps_local_guide\": null,\n        \"tags\": []\n    }\n}"}],"_postman_id":"1dac6aa1-7699-4455-af58-d7774016fc3f"}],"id":"803ecf31-8309-4d0b-be32-096bab0d6459","description":"<p>Qualifiable contacts are contacts that you qualified in the search results page of an alert.</p>\n<p>Here is an explanation of the main related objects : </p>\n<p>AuthorInfo: Storing author info crawled by Alerti. When we can crawl a piece of info of an author, that field is readonly for user. For the fields we couldn't crawl, each user can put in their on data.</p>\n<p>QualifiableContact: Storing author info inputted by a user.</p>\n<p>AuthorInfoMapping: Map multiple source authors into 1 AuthorInfo object. For example, an AuthorInfo can be part of a Twitter and Instagram results (each will be saved as 1 AuthorInfoMapping). When an AuthorInfoMapping has author_info_id field value, the mapping is added by the user and will be applied for that QualifiableContact only.</p>\n","event":[{"listen":"prerequest","script":{"id":"9c5bb42f-d5f0-4d3b-ae70-5629429f5b69","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"02cd073e-594b-4603-afdb-62506b7a262b","type":"text/javascript","exec":[""]}}],"_postman_id":"803ecf31-8309-4d0b-be32-096bab0d6459"}],"event":[{"listen":"prerequest","script":{"id":"14ddb40a-2808-4c33-a46c-8e707b174f03","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a4f24a09-2494-4904-8a29-875ae9f4eee7","type":"text/javascript","exec":[""]}}]}