{"info":{"_postman_id":"4dc07a69-7416-4a7a-8a9c-c7609d57cc89","name":"Accounts APIs","description":"Documentation for Accounts APIs. This collection contains the endpoints available in accounts api. The documentaion details the request and reponse formats. Each request needs to be o-auth authenticated.\n\nAccapi sets cookies after a user has successfuly logged in through either of the auth providers. Each request subsecuently uses that cookie to authorize itself. To test the endpoints you need to login into accapi and then make sure that each request has access to the cookie.\n\nThe collection is divided into three folders:\n - `Apps`: It contains all the apis related to 'apps'.\n - `User`: It contains all the endpoints related to 'user' management.\n - `Clusters`: It contains all the endpoints related to 'EAAS', i.e 'Elasticsearch As A Service'.\n\nAuthentication\n==============\nCurrently, two modes of authentication are supported by Appbase: oauth and basic auth. For oauth there are three supported providers:\n - `Google`\n - `Github`\n - `GitLab`\n\nThe requests need to be authenticated by providing the token for oauth. In order to fetch the token for oauth:  \n\n```curl\ncurl -X POST -d \"client_id=<your_client_id>&client_secret=<your_client_secret>&grant_type=password&username=<username>&password=<password>\" <your_oauth_provider_token_endpoint>\n```  \n  \nAlong with oauth, the users also have an option to login to appbase.io via email-otp based authentication. It is a two step authentication where the user provides the email address via `/user/email` endpoint which triggers an OTP being sent to the provided email. Subsequently, the user must verify the OTP via `/user/verify` endpoint. See `/user/email` and `/user/verify` endpoints for more details. \n\n<br/>\nBasic auth serves as an option for all endpoints along with oauth authentication. To authorize using basic auth, use the `-u` flag with each request:  \n<br/>\n\n```curl\ncurl \"<api_endpoint_here>\" -u $credentials\n```  \n\n<br/>\nAlternatively you can set the `Authorization` header flag directly with \"Basic + base_64($credentials)\".  \n\n```curl\ncurl \"<api_endpoint_here>\" -h \"Authorization: Basic YjdqV2hVSjhYOjcyYmI2ZmMxLWRkZjItNDU5Zi1iNGM3LWU2NzgwNjQyM2MyZA==\"\n```  \n<br/>\n\nAll appbase.io require `$(credentials)`. appbase.io service offers two types of credentials:  \n1. **Read Only**: These are good for public environments.  \n2. **Read and Write**: These are good for secure environments, servers and API users.  \n\n[Get your own credentials from your appbase.io app's dashboard](https://dashboard.appbase.io)\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Apps","item":[{"name":"billing","item":[{"name":"/app/:appname/subscription","id":"4e8c1014-a375-446c-beb0-8b079248af9c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/app/{{app}}/subscription","description":"This endpoint creates/updates a subscription. The following request body is required when a user wants to update its plan from any paid plan:\n\n```\n{\n\t\"plan\": \"type: string, denotes the plan name\"\n}\n```\n\nWhen a user is trying to create a subscription (for the first time), the user needs to get a Stripe token and send it to backend along in the request body."},"response":[{"id":"48b7960b-40a2-41c2-99e2-048d6ab33733","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"plan\": \"growth-monthly\"\n}"},"url":"{{HOST}}/app/{{APP}}/subscription"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4e8c1014-a375-446c-beb0-8b079248af9c"},{"name":"app/:appname/subscription","id":"8af6b4bd-9e8d-42ee-b59b-063b8905eb82","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/app/{{app}}/subscription","description":"Delete existing subscription"},"response":[{"id":"20e46727-545d-4f88-a4bc-07c81e82b16b","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://{{HOST}}/app/{{APP}}/subscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"50","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 27 Aug 2018 14:05:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDc1MDU0M3xOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fAhGm-9JoQZiLSVG6BZECKH86WEfz2iIeS4c_ArltPPu","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"message\": \"Subscription cancelled successfuly.\"\n}"}],"_postman_id":"8af6b4bd-9e8d-42ee-b59b-063b8905eb82"},{"name":"/shopify/plan","id":"0ee9cae6-d742-459f-9b82-ae477d7a1da4","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"token","value":"dG9wZ3Vuc2VjcmV0"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"vastu5996@gmail.com\",\n\t\"plan\": \"growth-monthly\",\n\t\"valid_upto\": 99999999999,\n\t\"appname\": \"movie-store\"\n}"},"url":"{{host}}/shopify/plan","description":"This endpoint updates a user's plan and validity. In order to authenticate the request the user must be logged in and contain the base64 encoded secret key in `token` header.\nThe request body contains the following fields.\n\n`email`: `The data type is string and it should match the email with which the user is logged in`\n\n`plan`: `The data type is string`\n\n`valid_upto`: `The data type is int64. Time format is epoch in seconds`"},"response":[{"id":"209ceb30-17f0-4883-8095-5eb723370e25","name":"200 Ok","originalRequest":{"method":"POST","header":[{"key":"token","value":"ksknkcnsnkdk"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"raj9430647979@gmail.com\",\n\t\"plan\": \"startup\",\n\t\"valid_upto\": 1537955527,\n\t\"appname\": \"sample-app\"\n}"},"url":"{{HOST}}/shopify/plan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"40","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 12 Sep 2018 10:28:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.13.9","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Aug 06 2019 10:30:30 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"appbase.io","path":"/","secure":true,"value":"d370cb0d1886226848093ca0f272501e41533551430","key":"__cfduid"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"accapi.appbase.io","path":"/","secure":false,"value":"MTUzNjc0NzMyMnxOd3dBTkV4R1dFcE5TMGRVTjFRMFZWaE5RazlJVGpWYU5WaEZRa2hQVUVSUFVEZEpWMGRWTWtsWlV6ZGFVMFJHU1ZoRlVqTkRSa0U9fPZeBmJgLGohXoeaqNe2_2vlISXOv7yyb9k1gO56-smp","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"message\": \"User Successfully Updated\"\n}"}],"_postman_id":"0ee9cae6-d742-459f-9b82-ae477d7a1da4"}],"id":"9920b023-1762-46a8-b775-cfc4ccdd3f31","description":"This sub-collection contains endpoints for Appbase apps' billing","event":[{"listen":"prerequest","script":{"id":"5d1b2e99-74cf-42ec-80e5-652ba939bc62","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"41a963a7-51f4-4215-98dc-a57924ccac26","type":"text/javascript","exec":[""]}}],"_postman_id":"9920b023-1762-46a8-b775-cfc4ccdd3f31"},{"name":"Rules","item":[{"name":"/app/:app/rule","id":"9967e41c-c244-4293-bf7d-dc5d78c79eb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"contains_harry_potter\",\n    \"if\": {\n        \"query\": \"harry potter\",\n        \"operator\": \"contains\"\n    },\n    \"then\": {\n        \"promote\": [\n            {\n                \"id\": \"harry_potter_cheat_sheet\",\n                \"name\": \"Harry Potter\",\n                \"section_order\": [\n                    \"Books\",\n                    \"Movies\",\n                    \"Franchise\"\n                ],\n                \"template_type\": \"reference\"\n            }\n        ],\n        \"hide\": [\n            { \"doc_id\": \"AWjmCtx774JxTt-e5G03\" }\n        ]\n    }\n}"},"url":"{{host}}/app/{{app}}/rule","description":"Creates a new rule.\n\n#### Request Body\n\n| Field \t\t| Type \t\t| Optional \t\t\t| Description |\n|:-------------:|:---------:|:-----------------:|:-----------:|\n| `id`\t\t\t| string\t| true\t\t\t\t| Represents the rule id. |\n| `if`  \t\t| object\t| false\t\t\t\t| Represents the rule condition that is executed against the search queries, i.e. if a search query meets the rule condition, then the rule consequence is triggered. |\n| `then`\t\t| object\t| false\t\t\t\t| Represents the action which is to be performed, when the rule condition is fulfilled by a search query. |\n\n#### If clause\n| Field \t\t| Type \t\t| Optional \t\t\t| Description |\n|:-------------:|:---------:|:-----------------:|:-----------:|\n| `query`\t\t| string\t| false\t\t\t\t| Represents the query pattern associated with the rule. |\n| `operator`\t| string\t| false\t\t\t\t| Represents the criterias that are matched against the search requests. Currently supported operators are: (`is`, `starts_with`, `ends_with`, `contains`) |\n\n#### Then clause\n| Field \t\t| Type \t\t| Optional \t\t\t| Description |\n|:-------------:|:---------:|:-----------------:|:-----------:|\n| `promote`\t\t| array\t\t| false\t\t\t\t| Contains docs that should be promoted when the rule is matched.|\n| `hide`\t\t| array\t\t| false\t\t\t\t| Contains document IDs of docs that should be removed from the search results. |"},"response":[{"id":"1dc5de6a-e8b6-41c9-ae1a-d570f080c6fb","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"if\": {\n\t\t\"query\": \"macbook\",\n\t\t\"operator\": \"contains\"\n\t},\n\t\"then\": {\n\t\t\"hide\": [\n\t\t\t{ \"doc_id\": \"5\" }\n\t\t],\n\t\t\"promote\": [\n\t\t\t{\n\t\t\t\t\"brand\": \"Google\",\n\t\t\t\t\"product\": \"Chromebook\"\n\t\t\t}\n\t\t]\n\t}\n}\n"},"url":"https://{{HOST}}/app/{{APP}}/rule"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.9"},{"key":"Date","value":"Tue, 08 Jan 2019 13:37:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"contains_macbook\",\n    \"message\": \"Rule created\"\n}"}],"_postman_id":"9967e41c-c244-4293-bf7d-dc5d78c79eb8"},{"name":"/app/:app/rule/:id","id":"97a7f911-5337-4f29-addd-89bbbf1dc97c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/app/{{app}}/rule/{{rule_id}}","description":"Fetches a rule with a given id, associated with an app."},"response":[{"id":"4a3ba219-9cb8-4451-9e1a-719e7de16ba0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/rule/{{RULE_ID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Wed, 30 Jan 2019 10:32:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"135"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"contains_macbook\",\n    \"then\": {\n        \"promote\": [\n            {\n                \"brand\": \"Google\",\n                \"product\": \"Chromebook\"\n            }\n        ]\n    },\n    \"if\": {\n        \"query\": \"macbook\",\n        \"operator\": \"contains\"\n    }\n}"}],"_postman_id":"97a7f911-5337-4f29-addd-89bbbf1dc97c"},{"name":"/app/:app/rules","id":"23e8ec6c-1684-4974-b789-ce02cf8c82cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/app/{{app}}/rules","description":"Fetches rules associated with the app."},"response":[{"id":"36e8ec1b-0700-48ad-907d-61eea3d81a82","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.9"},{"key":"Date","value":"Tue, 08 Jan 2019 13:39:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"contains_macbook\",\n        \"then\": {\n            \"promote\": [\n                {\n                    \"product\": \"Chromebook\",\n                    \"brand\": \"Google\"\n                }\n            ]\n        },\n        \"if\": {\n            \"query\": \"macbook\",\n            \"operator\": \"contains\"\n        }\n    },\n    {\n        \"id\": \"starts_with_apple\",\n        \"then\": {\n            \"promote\": [\n                {\n                    \"product\": \"Note 9\",\n                    \"brand\": \"Samsung\"\n                }\n            ],\n            \"hide\": [\n                {\n                    \"doc_id\": \"5\"\n                }\n            ]\n        },\n        \"if\": {\n            \"query\": \"apple\",\n            \"operator\": \"starts_with\"\n        }\n    }\n]"},{"id":"f373b3d5-01aa-4805-b539-bf291efab42a","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}}/rules"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.9"},{"key":"Date","value":"Fri, 11 Jan 2019 14:02:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"48"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Rules for app=testmappings not found\"\n}"}],"_postman_id":"23e8ec6c-1684-4974-b789-ce02cf8c82cb"},{"name":"/app/:app/rule/:id","id":"e43f2f65-388e-4074-ba32-6817e71a4ed1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"DELETE","header":[],"url":"{{host}}/app/{{app}}/rule/{{rule_id}}","description":"Delete a query rule with the given id associated with an app."},"response":[{"id":"2dc02589-8480-4bcd-a2e7-c39133edd0cf","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/rule/{{APP}}/{{RULE_ID}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.9"},{"key":"Date","value":"Fri, 11 Jan 2019 14:06:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"54"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"rule with id=contains_samsung not found\"\n}"},{"id":"e22845d9-b65a-4781-a3f4-81db09cc8457","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/rule/{{APP}}/{{RULE_ID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.9"},{"key":"Date","value":"Fri, 11 Jan 2019 14:06:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"31"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"App rule deleted\"\n}"}],"_postman_id":"e43f2f65-388e-4074-ba32-6817e71a4ed1"},{"name":"/app/:app/rules","id":"7007bd24-db0b-426d-8aba-7aabbbb21403","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"DELETE","header":[],"url":"{{host}}/app/{{app}}/rules","description":"Delete all the query rules associated with the app."},"response":[{"id":"691edd9f-7766-4612-a787-ab27ca4df9fb","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/app/{{APP}}/rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.9"},{"key":"Date","value":"Fri, 11 Jan 2019 14:07:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"32"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Deleted app rules\"\n}"},{"id":"6d1696be-bf65-4999-a46b-baaf44e400e1","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/app/{{APP}}/rules"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.9"},{"key":"Date","value":"Fri, 11 Jan 2019 14:08:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"52"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains;"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"App doesn't have any registered rules\"\n}"}],"_postman_id":"7007bd24-db0b-426d-8aba-7aabbbb21403"}],"id":"723b2a22-e515-4950-adec-ab3b64ccfcd7","_postman_id":"723b2a22-e515-4950-adec-ab3b64ccfcd7"},{"name":"Search Templates","item":[{"name":"/app/:app/validatetemplate","id":"e5747442-9976-48db-a86f-baf8503ca487","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"source\": \"{ \\\"query\\\": { \\\"terms\\\": {{#toJson}}statuses{{/toJson}} }}\",\n  \"params\": {\n    \"statuses\" : {\n        \"status\": [ \"pending\", \"published\" ]\n    }\n  }\n}"},"url":"{{host}}/app/{{app}}/validatetemplate","description":"This endpoint can be used to validate a template."},"response":[{"id":"99f39eae-d360-4162-8745-47424a1fc03c","name":"400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"source\": \"{ \\\"query\\\": { \\\"terms\\\": {{#toJson}}statuses{{/toJson}} }}\"\n}"},"url":"{{host}}/app/{{app}}/validatetemplate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 19 Jun 2019 09:50:22 GMT"},{"key":"Content-Length","value":"62"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid request body,`params` field is missing.\"\n}"},{"id":"f0122b81-52df-4f16-8984-745d74fa69d9","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"source\": \"{ \\\"query\\\": { \\\"terms\\\": {{#toJson}}statuses{{/toJson}} }}\",\n  \"params\": {\n    \"statuses\" : {\n        \"status\": [ \"pending\", \"published\" ]\n    }\n  }\n}"},"url":"{{HOST}}/app/{{APP}}/validatetemplate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 10 Jun 2019 10:32:39 GMT"},{"key":"Content-Length","value":"84"}],"cookie":[],"responseTime":null,"body":"{\n    \"template_output\": {\n        \"query\": {\n            \"terms\": {\n                \"status\": [\n                    \"pending\",\n                    \"published\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"e5747442-9976-48db-a86f-baf8503ca487"},{"name":"/app/:app/templates/:template","id":"196db693-bcb5-4407-9d51-ea66fbeb343d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"source\": {\n        \"query\": {\n            \"term\": {\n                \"message\": \"{{query_string}}\"\n            }\n        }\n    }\n}"},"url":"{{host}}/app/{{app}}/templates/{{template}}","description":"This endpoint can be used to create or update a search template."},"response":[{"id":"9b82ca0a-ac6b-4a9d-a04f-c5b07cd287b3","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"source\": \"{ \\\"query\\\": { \\\"terms\\\": {{#toJson}}statuses{{/toJson}} }}\"\n}"},"url":"{{HOST}}/app/{{APP}}/templates/{{TEMPLATE}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 10 Jun 2019 10:49:04 GMT"},{"key":"Content-Length","value":"31"}],"cookie":[],"responseTime":null,"body":"{\n    \"acknowledged\": true\n}"}],"_postman_id":"196db693-bcb5-4407-9d51-ea66fbeb343d"},{"name":"/app/:app/validatetemplate/:template","id":"0d58fed9-9241-4924-b25b-8d36c319f658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"params\": {\n        \"statuses\": {\n            \"status\": [\n                \"pending\",\n                \"published\"\n            ]\n        }\n    }\n}"},"url":"{{host}}/app/{{app}}/validatetemplate/{{template}}","description":"Validates an existing template"},"response":[{"id":"7317f0d7-872f-45a3-84e7-e949dedfabab","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"params\": {\n        \"statuses\": {\n            \"status\": [\n                \"pending\",\n                \"published\"\n            ]\n        }\n    }\n}"},"url":"{{HOST}}/app/{{APP}}/validatetemplate/{{TEMPLATE}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 10 Jun 2019 11:00:57 GMT"},{"key":"Content-Length","value":"84"}],"cookie":[],"responseTime":null,"body":"{\n    \"template_output\": {\n        \"query\": {\n            \"terms\": {\n                \"status\": [\n                    \"pending\",\n                    \"published\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"0d58fed9-9241-4924-b25b-8d36c319f658"},{"name":"/app/:app/templates","id":"6c5e562c-a98e-46b9-9c7e-61e92c807d83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/app/{{app}}/templates","description":"To get all the saved templates."},"response":[{"id":"0dfefd86-72e9-47e2-bb9e-0f8a1ffb79d0","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{HOST}}/app/{{APP}}/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 10 Jun 2019 10:11:53 GMT"},{"key":"Content-Length","value":"96"}],"cookie":[],"responseTime":null,"body":"{\n    \"body\": [\n        {\n            \"template_id\": \"my-template\"\n        }\n    ],\n    \"message\": \"App Found\"\n}"}],"_postman_id":"6c5e562c-a98e-46b9-9c7e-61e92c807d83"},{"name":"/app/:app/templates/:template","id":"0743735c-f661-40f3-8a42-007202e7857b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/app/{{app}}/templates/{{template}}","description":"This endpoint can be used to create or update a search template details."},"response":[{"id":"1c92dd5c-d7b5-4433-bacf-7b314cf3e336","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{HOST}}/app/{{APP}}/templates/{{TEMPLATE}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 10 Jun 2019 10:02:40 GMT"},{"key":"Content-Length","value":"202"}],"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"my-template\",\n    \"found\": true,\n    \"script\": {\n        \"lang\": \"mustache\",\n        \"options\": {\n            \"content_type\": \"application/json; charset=UTF-8\"\n        },\n        \"source\": \"{\\\"query\\\":{\\\"match\\\":{\\\"title\\\":\\\"{{query_string}}\\\"}}}\"\n    }\n}"},{"id":"aa663c38-eaf6-4092-8644-c1afff4b0908","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/app/{{app}}/templates/template-2"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 13 Jun 2019 00:17:46 GMT"},{"key":"Content-Length","value":"35"}],"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"my_template\",\n    \"found\": false\n}"}],"_postman_id":"0743735c-f661-40f3-8a42-007202e7857b"},{"name":"/app/:app/templates/:template","id":"b4ad689b-2239-4c48-a0c9-508759e15bca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"DELETE","header":[],"url":"{{host}}/app/{{app}}/templates/{{template}}","description":"Deletes a search template"},"response":[{"id":"3e6ec9f5-8457-4148-bce4-8411ce441cd0","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/app/{{APP}}/templates/{{TEMPLATE}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 10 Jun 2019 10:26:55 GMT"},{"key":"Content-Length","value":"31"}],"cookie":[],"responseTime":null,"body":"{\n    \"acknowledged\": true\n}"},{"id":"a575b870-91d0-47e8-a30d-f18daf322ddb","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/app/{{APP}}/templates/{{TEMPLATE}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 13 Jun 2019 00:06:38 GMT"},{"key":"Content-Length","value":"257"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Not Found\"\n}"}],"_postman_id":"b4ad689b-2239-4c48-a0c9-508759e15bca"}],"id":"5a859a56-0005-413b-a74c-ee886ac4061b","_postman_id":"5a859a56-0005-413b-a74c-ee886ac4061b"},{"name":"/apps/:app","id":"bf493d0b-3647-4dcd-b871-d45985ede673","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/apps/{{app}}","description":"This endpoint checks if an app with the given 'app_name' exists or not. The response of this endpoint is of type `application/json`.\n\n#### Response Body\n| Field \t| Type\t\t| Description\t\t\t\t\t\t|\n|-----------|-----------|-----------------------------------|\n| `message`\t| string\t| Represents the response status.\t|"},"response":[{"id":"af66475b-8872-4365-9ff6-0b5f84242894","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/apps/{{APP}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Mon, 19 Nov 2018 17:27:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization, Credentials"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"App exists\"\n}"},{"id":"d6b40e63-7a50-4b08-b168-cccfa4748e67","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/apps/{{APP}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"33","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 29 May 2018 19:52:54 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjQ0MjA4MnxOd3dBTkV0SFdGbFNWVXRKUVRkVlVVZFRTVmxSVDFSSldWVklTakpOTTBZM05rODNVMW8wV1VNM1FreFJNell5UlZsUVZrSTJXVkU9fO9_vswJfGFOzmzCw1KaoIlWaIHtSS1TX6Al0NP05muR","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"App does not exist\"}\n"}],"_postman_id":"bf493d0b-3647-4dcd-b871-d45985ede673"},{"name":"/app/:app","id":"853d7469-f8c9-4e80-926e-e3441c48caed","request":{"auth":{"type":"noauth"},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"es_version\": \"5\"\n}"},"url":"{{host}}/app/{{app}}","description":"This endpoint creates a new app with the given app_name.\nRequest body is of content-type `application/json`.\n\n#### Request Body\n\n| Field \t\t| Type\t\t| Optional  | Description |\n|---------------|-----------|-----------|-------------|\n| `category`\t| string\t| true\t\t| An optional field, defaults to `generic`. Other values currently in use are `reactive-apps`, `reactive-maps` |\n| `es_version`\t| number\t| false\t\t| Represents a supported elasticsearch major version, e.g: `2`, `5`, `6`. |\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description\t\t\t\t\t\t|\n|---------------|-----------|-----------------------------------|\n| `id`\t\t\t| number\t| Represents an app ID\t\t\t\t|\n| `password`\t| string\t| Represents an app password\t\t|\n| `username`\t| string\t| Represents an app username\t\t|\n| `message`\t\t| string\t| Represents the response status\t|"},"response":[{"id":"b5b30995-efc6-4024-9c7f-1fbcbd78a612","name":"400 Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"es_version\": \"5\"\n}"},"url":"{{HOST}}/app/{{APP}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Mon, 19 Nov 2018 17:31:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"52"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization, Credentials"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"An App with that name already exists.\"\n}"},{"id":"f55b99e2-1ed8-4e30-8e38-47dd4c776691","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"es_version\": \"5\"\n}"},"url":"{{HOST}}/app/{{APP}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"115","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 14 May 2018 14:06:18 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjMwNjU1NHxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fOMpZeBs6ncDbyEf53_FAAvU9WRlrtQcFmZT8DU5s2BI","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"body\": {\n        \"id\": 2,\n        \"password\": \"c8beb045-bd04-4cb2-8aa7-f0e2a30a27a2\",\n        \"username\": \"tUB0aBIWB\"\n    },\n    \"message\": \"App Created\"\n}"}],"_postman_id":"853d7469-f8c9-4e80-926e-e3441c48caed"},{"name":"/app/:app","id":"c047dd78-c101-4788-996b-8229b9ef0360","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/app/{{app}}","description":"This endpoint returns the app's info by app ID or name.\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `appname`\t\t| string\t| An app name |\n| `created_at`\t| string\t| Represents the time at which the app was created |\n| `es_version`\t| string\t| Represents the elasticsearch version used by the app |\n| `owner`\t\t| string\t| Represents the email ID of user who created/has ownership of the app |\n| `users`\t\t| array\t\t| Represents users' email IDs who has access to the app |\n| `message`\t\t| string\t| Represents the response status |"},"response":[{"id":"50070515-7ced-46b4-902c-dbf74ecf732f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Wed, 24 Oct 2018 10:01:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"206"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"appname\": \"alpha-gama-movie\",\n        \"created_at\": \"2018-10-23T14:34:55.353663Z\",\n        \"es_version\": \"5.6\",\n        \"owner\": \"raaz.crzy@gmail.com\",\n        \"users\": [\n            \"pnc.raj@gmail.com\",\n            \"raaz.crzy@gmail.com\"\n        ]\n    },\n    \"message\": \"Found App\"\n}"}],"_postman_id":"c047dd78-c101-4788-996b-8229b9ef0360"},{"name":"/app/:app/metrics","id":"3a917a50-7b7e-4c9a-8eca-ea991a5aba20","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/app/{{app}}/metrics","description":"It lists the metrics related to the given app."},"response":[{"id":"a1759f85-9cb2-4fa5-b005-e4285ec42935","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/metrics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Wed, 24 Oct 2018 09:17:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"month\": {\n            \"buckets\": [\n                {\n                    \"apiCalls\": {\n                        \"value\": 11\n                    },\n                    \"indexCalls\": {\n                        \"value\": 0\n                    },\n                    \"key\": 1540252800000,\n                    \"key_as_string\": \"2018-10-23T00:00:00.000Z\",\n                    \"miscAggregation\": {\n                        \"value\": 0\n                    },\n                    \"searchCalls\": {\n                        \"value\": 3\n                    },\n                    \"settingsCalls\": {\n                        \"value\": 8\n                    },\n                    \"streamCalls\": {\n                        \"value\": 0\n                    }\n                }\n            ]\n        },\n        \"overall\": {\n            \"numDocs\": 500,\n            \"storage\": 2992965\n        }\n    },\n    \"message\": \"Found App\"\n}"}],"_postman_id":"3a917a50-7b7e-4c9a-8eca-ea991a5aba20"},{"name":"/app/:app/logs","id":"45ba35a9-67e7-4ea4-a1b9-28f1c40f1f37","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/app/{{app}}/logs","description":"This endpoint returns the last (100/1000) logs for an app."},"response":[{"id":"21ab2eb4-5c5b-4142-82da-393c40767f10","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{HOST}}/app/{{APP}}/logs?from=6&size=1","host":["{{HOST}}"],"path":["app","{{APP}}","logs"],"query":[{"key":"from","value":"6"},{"key":"size","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Wed, 24 Oct 2018 09:20:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"hits\": [\n        {\n            \"_id\": \"alpha-gama-movie40\",\n            \"_index\": \"logsaugust18\",\n            \"_source\": {\n                \"appid\": \"15357\",\n                \"appname\": \"alpha-gama-movie\",\n                \"classifier\": \"settings\",\n                \"request\": {\n                    \"body\": \"\",\n                    \"headers\": {\n                        \"Accept\": [\n                            \"application/json, text/javascript, */*; q=0.01\"\n                        ],\n                        \"Accept-Encoding\": [\n                            \"gzip\"\n                        ],\n                        \"Accept-Language\": [\n                            \"en-US,en;q=0.9,hi;q=0.8\"\n                        ],\n                        \"Authorization\": [\n                            \"Basic R29sZjZxV0NBOmQ1NjM2YjYyLWQ2MTAtNGVmYi04MTA4LTQ4NTc4ZTI4MzA1NA==\"\n                        ],\n                        \"Cf-Connecting-Ip\": [\n                            \"103.39.240.58\"\n                        ],\n                        \"Cf-Ipcountry\": [\n                            \"IN\"\n                        ],\n                        \"Cf-Ray\": [\n                            \"46e4e878189aa9fc-SIN\"\n                        ],\n                        \"Cf-Visitor\": [\n                            \"{\\\"scheme\\\":\\\"https\\\"}\"\n                        ],\n                        \"Connection\": [\n                            \"upgrade\"\n                        ],\n                        \"Content-Type\": [\n                            \"application/json; charset=utf-8\"\n                        ],\n                        \"Origin\": [\n                            \"https://opensource.appbase.io\"\n                        ],\n                        \"Referer\": [\n                            \"https://opensource.appbase.io/dejavu/live/\"\n                        ],\n                        \"User-Agent\": [\n                            \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\"\n                        ],\n                        \"X-Forwarded-For\": [\n                            \"103.39.240.58\"\n                        ],\n                        \"X-Forwarded-Host\": [\n                            \"scalr.api.appbase.io\"\n                        ],\n                        \"X-Forwarded-Port\": [\n                            \"80\"\n                        ],\n                        \"X-Forwarded-Proto\": [\n                            \"https\"\n                        ],\n                        \"X-Original-Forwarded-For\": [\n                            \"103.39.240.58\"\n                        ],\n                        \"X-Original-Uri\": [\n                            \"/alpha-gama-movie/_settings?human\"\n                        ],\n                        \"X-Real-Ip\": [\n                            \"10.244.26.25\"\n                        ],\n                        \"X-Request-Id\": [\n                            \"43edfc40502b2cd3cdb3f4dffab9a76f\"\n                        ],\n                        \"X-Scheme\": [\n                            \"https\"\n                        ]\n                    },\n                    \"method\": \"GET\",\n                    \"uri\": \"/alpha-gama-movie/_settings?human\"\n                },\n                \"response\": {\n                    \"body\": \"{\\\"alpha-gama-movie\\\":{\\\"settings\\\":{\\\"index\\\":{\\\"analysis\\\":{\\\"analyzer\\\":{\\\"autosuggest_analyzer\\\":{\\\"filter\\\":[\\\"lowercase\\\",\\\"asciifolding\\\",\\\"autosuggest_filter\\\"],\\\"tokenizer\\\":\\\"standard\\\",\\\"type\\\":\\\"custom\\\"},\\\"ngram_analyzer\\\":{\\\"filter\\\":[\\\"lowercase\\\",\\\"asciifolding\\\",\\\"ngram_filter\\\"],\\\"tokenizer\\\":\\\"standard\\\",\\\"type\\\":\\\"custom\\\"}},\\\"filter\\\":{\\\"autosuggest_filter\\\":{\\\"max_gram\\\":\\\"20\\\",\\\"min_gram\\\":\\\"1\\\",\\\"token_chars\\\":[\\\"letter\\\",\\\"digit\\\",\\\"punctuation\\\",\\\"symbol\\\"],\\\"type\\\":\\\"edge_ngram\\\"},\\\"ngram_filter\\\":{\\\"max_gram\\\":\\\"9\\\",\\\"min_gram\\\":\\\"2\\\",\\\"token_chars\\\":[\\\"letter\\\",\\\"digit\\\",\\\"punctuation\\\",\\\"symbol\\\"],\\\"type\\\":\\\"ngram\\\"}}},\\\"creation_date\\\":\\\"1537022315924\\\",\\\"creation_date_string\\\":\\\"2018-09-15T14:38:35.924Z\\\",\\\"number_of_replicas\\\":\\\"1\\\",\\\"number_of_shards\\\":\\\"2\\\",\\\"provided_name\\\":\\\"alpha-gama-movie\\\",\\\"uuid\\\":\\\"grIro0g_Qj-LaDN4joItrQ\\\",\\\"version\\\":{\\\"created\\\":\\\"5061199\\\",\\\"created_string\\\":\\\"5.6.11\\\"}}}}}\",\n                    \"headers\": {\n                        \"Content-Type\": [\n                            \"application/json; charset=UTF-8\"\n                        ],\n                        \"X-Origin\": [\n                            \"ES\"\n                        ]\n                    },\n                    \"status\": 200\n                },\n                \"timestamp\": \"2018-10-23T14:31:34.790411797Z\"\n            },\n            \"_type\": \"logs\"\n        }\n    ],\n    \"timetaken\": 1,\n    \"total\": 100\n}"}],"_postman_id":"45ba35a9-67e7-4ea4-a1b9-28f1c40f1f37"},{"name":"/app/:app/permissions","id":"0c3f29ed-c6ac-41e5-94b2-904b201d0b3d","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/app/{{app}}/permissions","description":"The response is of type `application/json`. It is an array of permissions.\n\n#### Response Body\n\n| Field \t\t\t| Type\t\t| Description |\n|-------------------|-----------|-------------|\n| `created_at`\t\t| string\t| Represents the time at which the permission was created |\n| `description`\t\t| string\t| Represents a description of a permission |\n| `password`\t\t| string\t| Represents an auto-generated app password |\n| `username`\t\t| string\t| Represents an auto-generated app username\t|\n| `write`\t\t\t| boolean\t| Denotes write access for a permission |\n| `read`\t\t\t| boolean\t| Denotes read access for a permission |\n| `acl`\t\t\t\t| array\t\t| Represents acls a permission has access to. It can have values `get`, `index`, `settings`, `search`, `stream`, `bulk`, `delete`, `analytics`. In addintion to this, any requests that dont come under the above mentioned acl will be accessible to all users. |\n| `exclude_fields`\t| array \t| Fields contained in the array will not be included in the search results |\n| `include_fields`\t| array\t\t| Fields contained in the array will be included in the search results |\n| `referers`\t\t| array\t\t| The requests having valid referers must match one of the referers in order to proceed. It defaults to '*'. |\n| `sources`\t\t\t| array\t\t| All requests must match either of the sources IP in order to be succesful. It defaults to '0.0.0.0/0'. |\n| `index_limit`\t\t| number\t| The field poses a limit on the number of index requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access. |\n| `ip_,imit`\t\t| number\t|  It can be used to limit the number of request per IP per hour. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access. |\n| `search_limit`\t| number\t| The field poses a limit on the number of search requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access. |\n| `get_limit`\t\t| number\t| The field poses a limit on the number of get requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access. |\n| `ttl` \t\t\t| number\t| Represents \"time-to-live\" for the permission. The values are parsed as seconds. `0` value indicates that a permission cannot expire. |"},"response":[{"id":"8734795f-e5f6-403a-9203-09e71d89482f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/permission"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Wed, 24 Oct 2018 09:21:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"body\": [\n        {\n            \"acl\": [\n                \"index\",\n                \"get\",\n                \"search\",\n                \"settings\",\n                \"stream\",\n                \"bulk\",\n                \"delete\"\n            ],\n            \"created_at\": \"2018-10-08T12:52:16.9446743Z\",\n            \"description\": \"\",\n            \"exclude_fields\": [],\n            \"get_limit\": 50,\n            \"include_fields\": [\n                \"*\"\n            ],\n            \"index_limit\": 50,\n            \"ip_limit\": 7200,\n            \"password\": \"3e74d675-c971-4f7a-8a20-16329130d066\",\n            \"read\": true,\n            \"referers\": [\n                \"*\"\n            ],\n            \"role\": \"admin\",\n            \"search_limit\": 50,\n            \"sources\": [\n                \"0.0.0.0/0\"\n            ],\n            \"ttl\": -1,\n            \"username\": \"83T3pi2bn\",\n            \"write\": false\n        },\n        {\n            \"acl\": [\n                \"get\",\n                \"index\",\n                \"search\",\n                \"stream\",\n                \"settings\",\n                \"bulk\",\n                \"delete\"\n            ],\n            \"created_at\": \"2018-09-15T14:38:35.9167515Z\",\n            \"description\": \"Read-only API key\",\n            \"exclude_fields\": [],\n            \"get_limit\": 30,\n            \"include_fields\": [\n                \"*\"\n            ],\n            \"index_limit\": 30,\n            \"ip_limit\": 7200,\n            \"password\": \"d5636b62-d610-4efb-8108-48578e283054\",\n            \"read\": true,\n            \"referers\": [\n                \"*\"\n            ],\n            \"search_limit\": 30,\n            \"sources\": [\n                \"0.0.0.0/0\"\n            ],\n            \"ttl\": 0,\n            \"username\": \"Golf6qWCA\",\n            \"write\": true\n        },\n        {\n            \"acl\": [\n                \"get\",\n                \"index\",\n                \"search\",\n                \"stream\",\n                \"settings\",\n                \"bulk\",\n                \"delete\"\n            ],\n            \"created_at\": \"2018-09-15T14:38:35.9127239Z\",\n            \"description\": \"Admin API key\",\n            \"exclude_fields\": [],\n            \"get_limit\": 30,\n            \"include_fields\": [\n                \"*\"\n            ],\n            \"index_limit\": 30,\n            \"ip_limit\": 7200,\n            \"password\": \"9ff745af-2f3c-410a-b5e0-972f062ce7d0\",\n            \"read\": true,\n            \"referers\": [\n                \"*\"\n            ],\n            \"search_limit\": 30,\n            \"sources\": [\n                \"0.0.0.0/0\"\n            ],\n            \"ttl\": 0,\n            \"username\": \"SYJNbCkas\",\n            \"write\": true\n        }\n    ],\n    \"message\": \"App Found\"\n}"}],"_postman_id":"0c3f29ed-c6ac-41e5-94b2-904b201d0b3d"},{"name":"/app/:app/permissions","id":"6adfaac6-bdf5-4f56-8250-59d8f89f36d6","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"create test credentials\",\n  \"read\": true,\n  \"write\": false,\n  \"acl\": [\n    \"index\",\n    \"get\",\n    \"search\",\n    \"settings\",\n    \"delete\",\n    \"analytics\"\n  ],\n  \"referers\": [\n    \"*\"\n  ],\n  \"sources\": [\n    \"0.0.0.0/0\"\n  ],\n  \"include_fields\": [\n    \"Collections\"\n  ],\n  \"ip_limit\": 7200,\n  \"ttl\": 1200\n}"},"url":"{{host}}/app/{{app}}/permissions","description":"This endpoint allows to change the permission of app for the user. The request body is of type `application/json`.\n\n#### Request Body\n\n| Field \t\t\t| Type\t\t| Description |\n|-------------------|-----------|-------------|\n| `read`\t\t\t| boolean\t| Denotes read access for a permission |\n| `write`\t\t\t| boolean\t| Denotes write access for a permission |\n| `description`\t\t| string\t| Represents a description of a permission |\n| `exclude_fields`\t| array\t\t| Fields contained in the array will not be included in the search results |\n| `include_fields`\t| array\t\t| Fields contained in the array will be included in the search results |\n| `referers`\t\t| array\t\t| Requests will be matched to the referes set through this. If they do not match, an `unauthorized` response will be returned |\n| `sources`\t\t\t| array\t\t| Requests will be matched to the sources set through this. If they do not match, an `unauthorized` response will be returned |\n| `acl`\t\t\t\t| array\t\t|  Valid values include `index`, `get`, `search`, `settings`, `delete`, `bulk`, `stream` and `analytics`. Setting `acl` will restrict access to operations of the passed acl values. If the operation does not match, an `unauthorized` response will be returned |\n| `ip_limit`\t\t| number\t| It can be used to limit the number of request per IP per hour |\n| `search_limit`\t| number\t| The field poses a limit on the number of search requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n| `get_limit`\t\t| number\t| The field poses a limit on the number of get requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n\n#### Response Body\n\n| Field \t\t\t| Type\t\t| Description |\n|-------------------|-----------|-------------|\n| `created_at`\t\t| string\t| Represents the time at which the permission was created |\n| `description`\t\t| string\t| Represents a description of a permission |\n| `password`\t\t| string\t| Represents an auto-generated app password |\n| `username`\t\t| string\t| Represents an auto-generated app username\t|\n| `write`\t\t\t| boolean\t| Denotes write access for a permission |\n| `read`\t\t\t| boolean\t| Denotes read access for a permission |\n| `acl`\t\t\t\t| array\t\t| Represents acls a permission has access to. It can have values `get`, `index`, `settings`, `search`, `stream`, `bulk`, `delete`, `analytics`. In addintion to this, any requests that dont come under the above mentioned acl will be accessible to all users. |\n| `exclude_fields`\t| array \t| Fields contained in the array will not be included in the search results |\n| `include_fields`\t| array\t\t| Fields contained in the array will be included in the search results |\n| `referers`\t\t| array\t\t| The requests having valid referers must match one of the referers in order to proceed. It defaults to '*'. |\n| `sources`\t\t\t| array\t\t| All requests must match either of the sources IP in order to be succesful. It defaults to '0.0.0.0/0'. |\n| `index_limit`\t\t| number\t| The field poses a limit on the number of index requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access. |\n| `ip_,imit`\t\t| number\t|  It can be used to limit the number of request per IP per hour. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access. |\n| `search_limit`\t| number\t| The field poses a limit on the number of search requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n| `get_limit`\t\t| number\t| The field poses a limit on the number of get requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n| `ttl` \t\t\t| number\t| Represents \"time-to-live\" for the permission. The values are parsed as seconds. `0` value indicates that a permission cannot expire. All expired permissions get cleaned from the system every 24 hours |"},"response":[{"id":"52b247d3-d63c-4cad-a33e-8aa480e3b663","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"read\": true,\n  \"write\": true,\n  \"description\": \"changing permission\",\n  \"referers\": [\"google.com\"],\n  \"sources\": [\"0.0.0.0/0\"],\n  \"include_fields\": [\"name\"],\n  \"exclude_fields\": [\"city\"],\n  \"acl\": [\"index\"]\n}"},"url":"{{HOST}}/app/{{APP}}/permissions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 03 Jul 2018 22:06:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.13.12","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUyODcyNTIyMXxOd3dBTkVORVdrSldNbFpQVVU5QlZ6TlhTalpYTWtGSFV6TlFTbEpZTmxCWE0wVk9UMDVTVTBWTlREWlBObGxZVlZsTVNsVkRSbEU9fIvmYYIptWJUfbziwLWNQW5FTfa3CPQIAyWMGF_zXsQM","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"acl\":[\"index\"],\"description\":\"changing permission\",\"exclude_fields\":[\"city\"],\"include_fields\":[\"name\"],\"password\":\"de217849-a185-4535-8fb4-10a96faec0f1\",\"read\":true,\"referers\":[\"google.com\"],\"sources\":[\"0.0.0.0/0\"],\"username\":\"nR87IoVge\",\"write\":true},\"message\":\"Permissions created.\"}\n"},{"id":"8ed9e66c-1935-42be-9452-b065f38a4bd3","name":"/app/:app_id/permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"create test credentials\",\n  \"read\": true,\n  \"write\": false,\n  \"acl\": [\n    \"index\",\n    \"get\",\n    \"search\",\n    \"settings\",\n    \"delete\",\n    \"analytics\"\n  ],\n  \"referers\": [\n    \"*\"\n  ],\n  \"sources\": [\n    \"0.0.0.0/0\"\n  ],\n  \"include_fields\": [\n    \"Collections\"\n  ],\n  \"ip_limit\": 7200,\n  \"ttl\": 1200\n}"},"url":"https://{{HOST}}/app/{{APP}}/permissions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Wed, 24 Oct 2018 09:27:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"acl\": [\n            \"index\",\n            \"get\",\n            \"search\",\n            \"settings\",\n            \"delete\",\n            \"analytics\"\n        ],\n        \"description\": \"create test credentials\",\n        \"exclude_fields\": [],\n        \"get_limit\": 50,\n        \"include_fields\": [\n            \"Collections\"\n        ],\n        \"index_limit\": 50,\n        \"ip_limit\": 7200,\n        \"password\": \"7512ae3a-cdef-4f35-b6fc-539dd568cfea\",\n        \"read\": true,\n        \"referers\": [\n            \"*\"\n        ],\n        \"search_limit\": 50,\n        \"sources\": [\n            \"0.0.0.0/0\"\n        ],\n        \"ttl\": 1200,\n        \"username\": \"0CJZCQZ7J\",\n        \"write\": false\n    },\n    \"message\": \"Permissions created.\"\n}"},{"id":"ef9e047e-52de-40db-bd06-b86e88acf1c9","name":"/app/:app_id/permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"read\": true,\n\t\"write\": true,\n\t\"description\": \"changing permission\"\n}"},"url":"https://{{HOST}}/app/{{APP}}/permissions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"141","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 14 May 2018 14:38:41 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjMwNjU1NHxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fOMpZeBs6ncDbyEf53_FAAvU9WRlrtQcFmZT8DU5s2BI","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"password\":\"067fb96e-90a6-4dd9-aba6-3ff065a531ea\",\"read\":true,\"username\":\"tVqUHxmPt\",\"write\":true},\"message\":\"Permissions Created\"}\n"}],"_postman_id":"6adfaac6-bdf5-4f56-8250-59d8f89f36d6"},{"name":"/app/:app/permission/:username","id":"8603175c-ae7e-41ed-a0d5-76b2f039309f","request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"update test credentials\",\n  \"read\": true,\n  \"write\": true,\n  \"acl\": [\n    \"index\",\n    \"get\",\n    \"search\",\n    \"settings\",\n    \"delete\",\n    \"analytics\",\n    \"bulk\",\n    \"stream\"\n  ],\n  \"referers\": [\n    \"google.com\"\n  ],\n  \"sources\": [\n    \"132.112.89.24\"\n  ],\n  \"include_fields\": [\n    \"Collection\"\n  ],\n  \"ip_limit\": 3600,\n  \"ttl\": 1500\n}"},"url":"{{host}}/app/{{app}}/permission/{{username}}","description":"This endpoint allows modification to existing scope of app credentials. The request body is of type `application/json`.\n\n#### Request Body\n\n| Field \t\t\t| Type\t\t| Description |\n|-------------------|-----------|-------------|\n| `read`\t\t\t| boolean\t| Denotes read access for a permission |\n| `write`\t\t\t| boolean\t| Denotes write access for a permission |\n| `description`\t\t| string\t| Represents a description of a permission |\n| `exclude_fields`\t| array\t\t| Fields contained in the array will not be included in the search results |\n| `include_fields`\t| array\t\t| Fields contained in the array will be included in the search results |\n| `referers`\t\t| array\t\t| Requests will be matched to the referes set through this. If they do not match, an `unauthorized` response will be returned |\n| `sources`\t\t\t| array\t\t| Requests will be matched to the sources set through this. If they do not match, an `unauthorized` response will be returned |\n| `acl`\t\t\t\t| array\t\t|  Valid values include `index`, `get`, `search`, `settings`, `delete`, `bulk`, `stream` and `analytics`. Setting `acl` will restrict access to operations of the passed acl values. If the operation does not match, an `unauthorized` response will be returned |\n| `ip_limit`\t\t| number\t| It can be used to limit the number of request per IP per hour |\n| `search_limit`\t| number\t| The field poses a limit on the number of search requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n| `get_limit`\t\t| number\t| The field poses a limit on the number of get requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n| `index_limit`\t\t| number\t| The field poses a limit on the number of index requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access. |\n\n\nThe response body is of type `application/json`. It contains a status message. The content of response is:\n - `message`: Represents the response status.\n - Patched fields will also be returned."},"response":[{"id":"4ef00b16-df91-4a30-b1a4-05b5f015fd12","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"update test credentials\",\n  \"read\": true,\n  \"write\": true,\n  \"acl\": [\n    \"index\",\n    \"get\",\n    \"search\",\n    \"settings\",\n    \"delete\",\n    \"analytics\",\n    \"bulk\",\n    \"stream\"\n  ],\n  \"referers\": [\n    \"google.com\"\n  ],\n  \"sources\": [\n    \"132.112.89.24\"\n  ],\n  \"include_fields\": [\n    \"Collection\"\n  ],\n  \"ip_limit\": 3600,\n  \"ttl\": 1500\n}"},"url":"{{HOST}}/app/{{APP}}/permission/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Wed, 24 Oct 2018 09:33:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"acl\": [\n        \"index\",\n        \"get\",\n        \"search\",\n        \"settings\",\n        \"delete\",\n        \"analytics\",\n        \"bulk\",\n        \"stream\"\n    ],\n    \"description\": \"update test credentials\",\n    \"include_fields\": [\n        \"Collection\"\n    ],\n    \"ip_limit\": 3600,\n    \"message\": \"Permission Updated\",\n    \"read\": true,\n    \"referers\": [\n        \"google.com\"\n    ],\n    \"sources\": [\n        \"132.112.89.24\"\n    ],\n    \"ttl\": 1500,\n    \"write\": true\n}"}],"_postman_id":"8603175c-ae7e-41ed-a0d5-76b2f039309f"},{"name":"/app/:app/permission/:username","id":"01b55336-c502-4e52-a972-764903f8b91b","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/app/{{app}}/permission/{{username}}","description":"Deletes the permission for an app. The app permissions for the particular user is revoked."},"response":[{"id":"425eac2f-3400-4f78-97b1-6b958a873519","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/app/{{APP}}/permission/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"34","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 16:43:01 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"Permissions Deleted\"}\n"}],"_postman_id":"01b55336-c502-4e52-a972-764903f8b91b"},{"name":"/app/:app/share","id":"0a877de6-370a-4aed-ad10-69eb10e9ade7","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"pnc.raj@gmail.com\",\n\t\"read\": true,\n\t\"write\": true,\n\t\"description\": \"sharing app\",\n\t\"referers\": [\"google.com\"],\n\t\"sources\": [\"0.0.0.0/0\"],\n\t\"include_fields\": [\"name\"],\n\t\"exclude_fields\": [\"city\"],\n\t\"acl\": [\"index\"],\n\t\"ip_limit\": 1200\n}"},"url":"{{host}}/app/{{app}}/share","description":"This endpoint allows to share an app with another user. The request body is of type `application/json`.\n#### Request Body\n\n| Field \t\t\t| Type\t\t| Description |\n|-------------------|-----------|-------------|\n| `email`\t\t\t| string\t| Email ID of the user with whom the app needs to be shared |\n| `read`\t\t\t| boolean\t| Denotes read access for a permission |\n| `write`\t\t\t| boolean\t| Denotes write access for a permission |\n| `description`\t\t| string\t| Represents a description of a permission |\n| `exclude_fields`\t| array\t\t| Fields contained in the array will not be included in the search results |\n| `include_fields`\t| array\t\t| Fields contained in the array will be included in the search results |\n| `referers`\t\t| array\t\t| Requests will be matched to the referes set through this. If they do not match, an `unauthorized` response will be returned |\n| `sources`\t\t\t| array\t\t| Requests will be matched to the sources set through this. If they do not match, an `unauthorized` response will be returned |\n| `acl`\t\t\t\t| array\t\t|  Valid values include `index`, `get`, `search`, `settings`, `delete`, `bulk`, `stream` and `analytics`. Setting `acl` will restrict access to operations of the passed acl values. If the operation does not match, an `unauthorized` response will be returned |\n| `ip_limit`\t\t| number\t| It can be used to limit the number of request per IP per hour |\n| `search_limit`\t| number\t| The field poses a limit on the number of search requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n| `get_limit`\t\t| number\t| The field poses a limit on the number of get requests per second. Exceeding this limit results in rate limit exceeded response. `0` value indicates unrestricted access |\n\n\n#### Response Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `body.password` | string | Represents password of the app |\n| `body.username` | string | Represents username of the app |\n| `body.read`\t  | boolean | Denotes read access to the app |\n| `body.write`\t  | boolean | Denotes write access to the app |\n| `body.email`\t  | string | It holds the email ID of user with whom the app has been shared |\n| `message`\t\t  | string | Represents status of the response |"},"response":[{"id":"16032154-601c-401f-b974-cd8a73c00fc5","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"pnc.raj@gmail.com\",\n\t\"read\": true,\n\t\"write\": true,\n\t\"description\": \"sharing app\",\n\t\"referers\": [\"google.com\"],\n\t\"sources\": [\"0.0.0.0/0\"],\n\t\"include_fields\": [\"name\"],\n\t\"exclude_fields\": [\"city\"],\n\t\"acl\": [\"index\"],\n\t\"ip_limit\": 1200\n}"},"url":"{{HOST}}/app/{{APP}}/share"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"161","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 10 Sep 2018 13:42:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.13.12","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNjA4NzE4M3xOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fCBQRcG0VcB2j_nyfH2AcDxobkuGtEMfnKpZaZih6bFQ","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"email\":\"pnc.raj@gmail.com\",\"password\":\"58a633f8-9fef-4f77-89c2-fa65b2a9640d\",\"read\":true,\"username\":\"dYYwAktxS\",\"write\":true},\"message\":\"App shared.\"}\n"}],"_postman_id":"0a877de6-370a-4aed-ad10-69eb10e9ade7"},{"name":"/app/:app/share","id":"3256ebf4-8d40-49bd-882c-4d91cd20693f","request":{"method":"GET","header":[],"url":"{{host}}/app/{{app}}/share","description":"Fetches a list which contains data about the apps sharing. The response body is of type `application/json`. The response is an array of app share details.\n#### Response Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `body.password` | string | Represents password of the app |\n| `body.username` | string | Represents username of the app |\n| `body.read`\t  | boolean | Denotes read access to the app |\n| `body.write`\t  | boolean | Denotes write access to the app |\n| `body.email`\t  | string | It holds the email ID of user with whom the app has been shared |\n| `body.created_at`| string | Represents the time at which the app was shared |\n| `message`\t\t  | string | Represents status of the response |\n| `message`\t\t  | string | Represents status of the response |"},"response":[{"id":"0ea1ac97-0aea-4a36-b367-28efc176012f","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"","value":"","disabled":true}],"url":"{{host}}/app/{{app_name}}/share"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"271","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 16:46:59 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":[{\"created_at\":\"2018-05-12T22:16:14.4101051+05:30\",\"description\":\"sharing an app with another person\",\"email\":\"pnc.raj@gmail.com\",\"password\":\"ed8162c8-eecd-4130-b205-010d09af316f\",\"read\":true,\"username\":\"H5DbyK4pa\",\"write\":true}],\"message\":\"Current Permissions\"}\n"}],"_postman_id":"3256ebf4-8d40-49bd-882c-4d91cd20693f"},{"name":"/app/:app/share/:username","id":"9c5b7ef5-1527-417c-8dbe-ee9e008ef87b","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"{{user_email}}\"\n}"},"url":"{{host}}/app/{{app}}/share/{{username}}","description":"This ecdpoint allows to delete the sharing permissons for a given app username. The request body is of type `application/json` and has the following format:\n\n#### Request Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `email` | string | Email ID associated with the permission to be deleted |\n\nThe credentials of the user is deleted. The reponse of this endpoint is of type `application/json` and has the following format:\n\n#### Response Body \n\n| Field | Type | Description |\n|-------|------|-------------|\n| `message` | string | Represents the status of the response |"},"response":[{"id":"766aa732-2d08-49d5-8d2b-cfa719badc3a","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"{{USER_EMAIL}}\"\n}"},"url":"{{HOST}}/app/{{APP}}/share/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"34","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 10:57:30 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"Permissions Deleted\"}\n"}],"_postman_id":"9c5b7ef5-1527-417c-8dbe-ee9e008ef87b"},{"name":"/app/:app/changeowner","id":"703e750f-6777-4f6c-b8b2-81c6fd872995","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"owner\": \"pnc.raj@gmail.com\"\n}"},"url":"{{host}}/app/{{app}}/changeowner","description":"This endpoint allows to change the ownership of app by identifying the app by app id or name. The request body is of type `application/json`:\n#### Request Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `owner` | string | The field should have a valid email ID. The ownership whill be transfered to that email ID.\n\nThe reponse body contains just a status message. On successful transfer of ownership it will contain 'Owner changed'."},"response":[{"id":"7cad57bb-3ebf-4b46-8485-f79468f02eef","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"owner\": \"pnc.raj@gmail.com\"\n}"},"url":"{{HOST}}/app/{{APP}}/changeowner"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"28","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 16:35:08 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"Owner Changed\"}\n"}],"_postman_id":"703e750f-6777-4f6c-b8b2-81c6fd872995"},{"name":"/app/:app","id":"2a217f78-6860-4b4b-9918-0fc1074b1c81","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/app/{{app}}","description":"This endpoint allows to delete the app by identifing it through app id or app name"},"response":[{"id":"2628762f-ecd5-451f-8c19-308b11c08873","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/app/{{APP}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"26","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 16:33:13 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"App Deleted\"}\n"}],"_postman_id":"2a217f78-6860-4b4b-9918-0fc1074b1c81"},{"name":"/app/:app/preferences","id":"cb9f1e84-3c52-4eb4-ae39-e60d10dbd96b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"header\": \"20px\",\n\t\"footer\": 10\n}"},"url":"{{host}}/app/{{app}}/preferences","description":"This endpoint saves user's preference for persistance. The expected request body is of type `application/json`."},"response":[{"id":"0a54fe97-0a07-44ca-ba56-59b6967314ad","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"head\": \"30px\",\n\t\"footer\": 10\n}"},"url":"{{HOST}}/app/{{APP}}/preferences"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"46","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 07 Jun 2018 13:00:00 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"Preferences saved successfully.\"}\n"}],"_postman_id":"cb9f1e84-3c52-4eb4-ae39-e60d10dbd96b"},{"name":"/app/:app/preferences","id":"08d811f7-1224-4624-9841-0722c63496e9","request":{"method":"GET","header":[],"url":"{{host}}/app/{{app}}/preferences","description":"This endpoint fetches the user's preferences for an app"},"response":[{"id":"a071db90-4e22-485c-bad1-fd2d5caad7cb","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"40","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 07 Jun 2018 10:22:37 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":{\"footer\":10,\"head\":\"30px\"}}\n"}],"_postman_id":"08d811f7-1224-4624-9841-0722c63496e9"},{"name":"/app/:app/reindex","id":"8d6382b6-f16b-40ef-a0e4-fc96eb5f6072","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"mappings\" : {\n        \"test\" : {\n            \"properties\" : {\n                \"name\" : { \"type\" : \"text\" }\n            }\n        }\n    },\n    \"type\": [\"test\"],\n    \"es_version\": \"5\"\n}"},"url":"{{host}}/app/{{app}}/reindex","description":"This endpoint can reindex existing apps. You can specify a different version of elasticsearch while reindexing, however downgrading is not allowed. Also, while reindexing from Elasticsearch 2 to Elasticsearch 2 you may get error saying that \"app not found\". This is because the existing app would be residing on a different internal cluster and Elasticsearch doesnot allow remote indexing in Elasticsearch 2.\n\nThe request body for the endpoint is of type `application/json`:\n\n#### Request Body \n\n| Field | Type | Description |\n|-------|------|-------------|\n| `mappings` | object | Represents the mappings for the new index |\n| `settings` | object | Represents the settings for the new index. eg: `{ \"analysis\":{ ... } }` |\n| `es_version` | string | Represents the elasticsearch version of app the user wants to use |\n| `includes` | array | Represents the source fields to be included during reindexing |\n| `excludes` | array | Represents the source fields to be excluded during reindexing |\n| `type` | array | Represents the types to be included during reindexing |\n| `shard_count` | string | Represents the new shard count of the index. Validation: Should be multiple of 3, For bootstrap plans upper limit is 9 and for growth plans it is 21 |\n\nThe response body is of type `application/json`."},"response":[],"_postman_id":"8d6382b6-f16b-40ef-a0e4-fc96eb5f6072"},{"name":"/app/:app/plan","id":"e01423e4-d9e1-4098-a8d0-027179ca20dc","request":{"method":"GET","header":[],"url":"{{host}}/app/{{app}}/plan","description":"Get the plan details of an app"},"response":[{"id":"ceded0eb-d61c-4443-a41f-581c7fdce42a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/plan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"76","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 30 Aug 2018 17:24:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDc1MDU0M3xOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fAhGm-9JoQZiLSVG6BZECKH86WEfz2iIeS4c_ArltPPu","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"tier\":\"growth-monthly\",\"tier_validity\":1538219438,\"trial\":false}}\n"}],"_postman_id":"e01423e4-d9e1-4098-a8d0-027179ca20dc"},{"name":"/app/:app/migrate","id":"862448f2-f631-4c24-8861-1cc1fa056b59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-Migrate-Secret","type":"text","value":"{{secret}}"}],"body":{"mode":"raw","raw":"{\n\t\"es_version\": \"6\"\n}"},"url":"{{host}}/app/{{app}}/migrate","description":"An internal enpoint to migrate an app from one cluster to another. It accepts `X-Migrate-Secret` header.\n\n#### Request Body\n\n| Field | Type | Optional | Description |\n|-------|------|----------|-------------|\n| `es_version` | string | false | Elasticsearch version of the app |\n| `src_es_url` | string | true | Source cluster url of the app |\n| `dest_es_url` | string | true | Destination cluster url of the app |\n| `tier` | string | true | Represents app tier, should only be used to change the app tier (`free`, `bootstrap-monthly`, `bootstrap-annually`, `growth-monthly`, `growth-annually`). |"},"response":[{"id":"da0a6101-e465-4a79-82c7-f64da265184a","name":"/app/:app/migrate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"X-Migrate-Secret","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"es_version\": \"5\",\n\t\"src_es_url\": \"http://elasticsearch.es-cluster-1:9200\"\n}"},"url":"{{HOST}}/app/{{APP}}/migrate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Wed, 28 Nov 2018 09:33:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"app_name\": \"tweets\",\n        \"dest_app_id\": 544,\n        \"response_info\": {\n            \"batches\": 0,\n            \"created\": 0,\n            \"deleted\": 0,\n            \"failures\": [],\n            \"noops\": 0,\n            \"requests_per_second\": -1,\n            \"retries\": {\n                \"bulk\": 0,\n                \"search\": 0\n            },\n            \"throttled_millis\": 0,\n            \"throttled_until_millis\": 0,\n            \"timed_out\": false,\n            \"took\": 20,\n            \"total\": 0,\n            \"updated\": 0,\n            \"version_conflicts\": 0\n        },\n        \"source_app_id\": \"539\"\n    },\n    \"message\": \"App has been successfully reindexed.\"\n}"}],"_postman_id":"862448f2-f631-4c24-8861-1cc1fa056b59"},{"name":"/analytics/:app/overview","id":"8dc72506-5bfa-4005-962d-d5455fd17009","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/overview","description":"Returns analytics on popular searches, no result searches and search volume. This endpoint is only available for **paid** users.  \n<br/>\n**Note**: `clickanalytics` and customizable `from` and `to` dates are only available for the `growth` plan users.  \nThe endpoint accepts the following paramteres:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`\n - `clickanalytics`: whether click analytics should be enabled or not. It defaults to `false`"},"response":[{"id":"43aee060-401f-4e6c-a3ec-54aea69684aa","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/overview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"302","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 20 Sep 2018 14:36:05 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"noResultSearches\":[{\"count\":1,\"key\":\"\\\"note 9\\\"\"},{\"count\":1,\"key\":\"nokia\"}],\"popularSearches\":[{\"count\":4,\"key\":\"6\"},{\"count\":2,\"key\":\"\\\"note 9\\\"\"},{\"count\":1,\"key\":\"nokia\"}],\"searchVolume\":[{\"count\":7,\"key\":1537401600000,\"key_as_string\":\"2018/09/20 00:00:00\"}]}\n"}],"_postman_id":"8dc72506-5bfa-4005-962d-d5455fd17009"},{"name":"/analytics/:app/popularsearches","id":"e981f051-0057-493e-a2dc-193c7ea7d3da","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/popularsearches","description":"Returns only the popular searches data.  \n<br/>\nThe endpoint accepts the following parameters:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`\n - `clickanalytics`: whether click analytics should be enabled or not. It defaults to `false`\n - `size`: The number of results to be returned. It defaults to 100 and can be set to a maximum value of 1000."},"response":[{"id":"f0c6844d-30b7-4948-a905-ceaeca90d04b","name":"/analytics/:appname/popularsearches","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/popularsearches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"128","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:17:01 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"popularSearches\": [\n        {\n            \"count\": 1,\n            \"key\": \"f\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"f\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fd\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fd\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fda\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fda\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdaf\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdaf\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdafd\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdafd\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdafds\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdafds\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdafdsf\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdafdsf\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdafdsfa\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdafdsfa\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdafdsfas\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdafdsfas\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdafdsfasf\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdafdsfasf\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"fdafdsfasfa\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"fdafdsfasfa\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"m\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"m\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"mo\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"mo\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"mog\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"mog\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"mogl\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"mogl\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"mogli\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"mogli\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"s\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"s\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"title\\\":\\\"Year\\\",\\\"value\\\":[\\\"2017\\\",\\\"2018\\\"],\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"sd\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"sd\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"title\\\":\\\"Year\\\",\\\"value\\\":[\\\"2017\\\",\\\"2018\\\"],\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"t\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"t\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"th\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"th\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"the\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"the\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"ther\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"ther\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there \",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there \\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there c\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there c\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there ca\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there ca\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can \",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can \\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can b\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can b\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be \",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be \\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be n\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be n\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no \",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no \\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no m\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no m\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no mo\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no mo\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no mov\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no mov\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no movi\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no movi\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no movie\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no movie\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview \",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview \\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview l\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview l\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview li\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview li\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview lik\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview lik\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview like\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview like\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview like \",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview like \\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview like t\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview like t\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview like th\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview like th\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview like thi\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview like thi\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        },\n        {\n            \"count\": 1,\n            \"key\": \"there can be no moview like this\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"there can be no moview like this\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        }\n    ]\n}"}],"_postman_id":"e981f051-0057-493e-a2dc-193c7ea7d3da"},{"name":"/analytics/:app/noresultsearches","id":"d229f550-561c-440b-b252-e749a2457fa1","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/noresultsearches","description":"Returns only the no search result data.  \n<br/>\nThe endpoint accepts the following parameters:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`\n - `size`: The number of results to be returned. It defaults to 100 and can be set to a maximum value of 1000."},"response":[{"id":"210c7fb5-eeca-41d8-bffb-7a47ade5287a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/noresultsearches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"80","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:23:41 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"noResultSearches\": [\n        {\n            \"count\": 1,\n            \"key\": \"\\\"noote 9\\\"\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"noote 9\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"title\\\":\\\"Year\\\",\\\"value\\\":[\\\"2017\\\",\\\"2018\\\"],\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n\n        }\n    ]\n}"}],"_postman_id":"d229f550-561c-440b-b252-e749a2457fa1"},{"name":"/analytics/:app/popularfilters","id":"2075c4a8-0a04-4e17-8040-c0e84db0f73c","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/popularfilters","description":"Returns only the popular filters data.\n<br/>\nThe endpoint accepts the following parameters:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`\n - `clickanalytics`: whether click analytics should be enabled or not. It defaults to `false`\n - `size`: The number of results to be returned. It defaults to `100` and can be set to a maximum value of `1000`."},"response":[{"id":"0a5c1d4f-54c8-47f9-9489-5d18046a85cf","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/popularfilters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"67","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 29 Aug 2018 12:48:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNTQ0MjgzOXxOd3dBTkVKRFVGcEhRVGROVlZSUE5VVTBRMGREVGtkRldGZFNSVTFOUlZSRFJraFpOelJVUXpKTFJVZElURkJJTjFOYU0wNVNSRkU9fD9lgPeCOusFBau8lRBNwAWyAyiTMrG7v14eeEmD3ZFW","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"popularFilters\": [\n        {\n            \"count\": 2,\n            \"key\": \"Year\",\n            \"value\": \"2017\",\n            \"search_state\": \"{\\\"SearchSensor\\\":{\\\"dataField\\\":[\\\"original_title\\\",\\\"original_title.autosuggest\\\",\\\"original_title.keyword\\\",\\\"original_title.search\\\",\\\"overview\\\",\\\"overview.autosuggest\\\",\\\"overview.keyword\\\",\\\"overview.search\\\"],\\\"fieldWeights\\\":[10,4,10,4,2,1,2,1],\\\"fuzziness\\\":1,\\\"autosuggest\\\":false,\\\"filterLabel\\\":\\\"search\\\",\\\"placeholder\\\":\\\"Search for movies\\\",\\\"debounce\\\":0,\\\"queryFormat\\\":\\\"or\\\",\\\"showFilter\\\":true,\\\"strictSelection\\\":false,\\\"componentType\\\":\\\"DATASEARCH\\\",\\\"title\\\":\\\"search\\\",\\\"value\\\":\\\"s\\\",\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":\\\"SearchSensor__internal\\\"}},\\\"year-list\\\":{\\\"dataField\\\":\\\"release_year\\\",\\\"size\\\":20,\\\"sortBy\\\":\\\"desc\\\",\\\"queryFormat\\\":\\\"or\\\",\\\"selectAllLabel\\\":\\\"All\\\",\\\"showCheckbox\\\":true,\\\"showSearch\\\":true,\\\"placeholder\\\":\\\"Search for a Year\\\",\\\"showFilter\\\":true,\\\"showCount\\\":false,\\\"filterLabel\\\":\\\"Year\\\",\\\"showMissing\\\":false,\\\"missingLabel\\\":\\\"N/A\\\",\\\"showLoadMore\\\":false,\\\"loadMoreLabel\\\":\\\"Load More\\\",\\\"componentType\\\":\\\"MULTILIST\\\",\\\"title\\\":\\\"Year\\\",\\\"value\\\":[\\\"2017\\\",\\\"2018\\\"],\\\"URLParams\\\":false,\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"results\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list__internal\\\"]}},\\\"results\\\":{\\\"dataField\\\":\\\"original_title\\\",\\\"pagination\\\":true,\\\"size\\\":4,\\\"sortOptions\\\":[{\\\"dataField\\\":\\\"_score\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Best Match   \\\"},{\\\"dataField\\\":\\\"popularity\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Popularity(High to Low)   \\\"},{\\\"dataField\\\":\\\"price\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Price(Low to High)  \\\"},{\\\"dataField\\\":\\\"vote_average\\\",\\\"sortBy\\\":\\\"desc\\\",\\\"label\\\":\\\"Sort by Ratings(High to Low)  \\\"},{\\\"dataField\\\":\\\"original_title.keyword\\\",\\\"sortBy\\\":\\\"asc\\\",\\\"label\\\":\\\"Sort by Title(A-Z)  \\\"}],\\\"includeFields\\\":[\\\"*\\\"],\\\"excludeFields\\\":[],\\\"componentType\\\":\\\"REACTIVELIST\\\",\\\"react\\\":{\\\"and\\\":[\\\"SearchSensor\\\",\\\"price\\\",\\\"language-list\\\",\\\"year-list\\\",\\\"results__internal\\\"]}}}\"\n        }\n    ]\n}"}],"_postman_id":"2075c4a8-0a04-4e17-8040-c0e84db0f73c"},{"name":"/analytics/:app/popularresults","id":"80339461-dc0b-4a66-9399-95983f59720c","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/popularresults","description":"Returns only the popular results data.\n<br/>\nThe endpoint accepts the following parameters:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`\n - `clickanalytics`: whether click analytics should be enabled or not. It defaults to `false`\n - `size`: The number of results to be returned. It defaults to `100` and can be set to a maximum value of `1000`."},"response":[{"id":"1a872549-fe26-40af-98fe-5c73bd951e68","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/popularresults"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"1044","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:19:23 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"popularResults\":[{\"count\":7,\"key\":\"AWX25AVhrgUp8ekeEcoV\",\"source\":\"{\\\"brand\\\":\\\"oneplus\\\",\\\"model\\\":\\\"5\\\",\\\"price\\\":300000}\"},{\"count\":4,\"key\":\"AWX25E0L4UovVGVy6X9C\",\"source\":\"{\\\"brand\\\":\\\"oneplus\\\",\\\"model\\\":\\\"5\\\",\\\"price\\\":300000}\"},{\"count\":3,\"key\":\"AWX243YtrgUp8ekeEcoT\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX247MVrgUp8ekeEcoU\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24mQ_4UovVGVy6X9A\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24qV_4UovVGVy6X9B\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24sYxrgUp8ekeEcoR\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24x4drgUp8ekeEcoS\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX25JIT4UovVGVy6X9D\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"}]}\n"}],"_postman_id":"80339461-dc0b-4a66-9399-95983f59720c"},{"name":"/analytics/:app/advanced","id":"3891dcd4-a86a-4cc3-a5d6-f1620c265ad3","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/advanced","description":"Returns analytics on popular filters and popular results in addition to the other analytics (on popular searches, no result searches) along with search volume.  \n<br/>\n**Note**: This endpoint is only available for `growth` plan users.  \nThe endpoint accepts the following paramteres:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`\n - `clickanalytics`: whether click analytics should be enabled or not. It defaults to `false`"},"response":[{"id":"9c976999-ac3f-41e2-a18a-8c74d6354aa6","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/advanced"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"1425","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:24:27 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"noResultSearches\":[{\"count\":1,\"key\":\"\\\"note 9\\\"\"},{\"count\":1,\"key\":\"nokia\"}],\"popularFilters\":[],\"popularResults\":[{\"count\":7,\"key\":\"AWX25AVhrgUp8ekeEcoV\",\"source\":\"{\\\"brand\\\":\\\"oneplus\\\",\\\"model\\\":\\\"5\\\",\\\"price\\\":300000}\"},{\"count\":4,\"key\":\"AWX25E0L4UovVGVy6X9C\",\"source\":\"{\\\"brand\\\":\\\"oneplus\\\",\\\"model\\\":\\\"5\\\",\\\"price\\\":300000}\"},{\"count\":3,\"key\":\"AWX243YtrgUp8ekeEcoT\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX247MVrgUp8ekeEcoU\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24mQ_4UovVGVy6X9A\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24qV_4UovVGVy6X9B\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24sYxrgUp8ekeEcoR\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX24x4drgUp8ekeEcoS\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"},{\"count\":1,\"key\":\"AWX25JIT4UovVGVy6X9D\",\"source\":\"{\\\"brand\\\":\\\"samsung\\\",\\\"model\\\":\\\"note 9\\\",\\\"price\\\":1500000}\"}],\"popularSearches\":[{\"count\":4,\"key\":\"300000\"},{\"count\":4,\"key\":\"6\"},{\"count\":2,\"key\":\"\\\"note 9\\\"\"},{\"count\":1,\"key\":\"nokia\"}],\"searchVolume\":[{\"count\":7,\"key\":1537401600000,\"key_as_string\":\"2018/09/20 00:00:00\"},{\"count\":4,\"key\":1537488000000,\"key_as_string\":\"2018/09/21 00:00:00\"}]}\n"}],"_postman_id":"3891dcd4-a86a-4cc3-a5d6-f1620c265ad3"},{"name":"/analytics/:app/geoip","id":"ddb0ebc7-d6c3-46ab-9461-8012e954e321","request":{"auth":{"type":"basic","basic":{"password":"8306fc5f-f4e0-4880-a4a5-a146b3db9700","username":"7lsx9ROIM"}},"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/geoip","description":"Returns the distribution of requests across the countries.  \nThe endpoint accepts the following parameters:\n- `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to 7 days ago 0:00:000 UTC\n- `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to today 23:59:999 UTC\n- `size`: The number of results to be returned. It defaults to 100 and can be set to a maximum value of 1000."},"response":[{"id":"f1e7da94-f1d8-4b1e-96b3-784037cbe567","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/geoip"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"47","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:29:54 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"aggrByCountry\":[{\"count\":11,\"key\":\"India\"}]}\n"}],"_postman_id":"ddb0ebc7-d6c3-46ab-9461-8012e954e321"},{"name":"/analytics/:app/latency","id":"cabcc90d-0e9b-40dc-966a-556b252ed5db","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/latency","description":"Returns the distribution of requests According to the latency. Currently we are considering the latency range of 3ms, so the buckets returned would range from\n`[0-10)`, `[10,20)`, `[20,30)` ms and so on.\nThe endpoint accepts the following parameters:\n- `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to 7 days ago 0:00:000 UTC\n- `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to today 23:59:999 UTC\n- `size`: The number of results to be returned. It defaults to 100 and can be set to a maximum value of 1000."},"response":[{"id":"90619b19-5f27-43b1-abb2-eb4be0794762","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/latency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"289","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:26:36 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"latency\":[{\"count\":3,\"key\":0},{\"count\":2,\"key\":10},{\"count\":1,\"key\":20},{\"count\":0,\"key\":30},{\"count\":1,\"key\":40},{\"count\":2,\"key\":50},{\"count\":1,\"key\":60},{\"count\":0,\"key\":70},{\"count\":0,\"key\":80},{\"count\":0,\"key\":90},{\"count\":0,\"key\":100},{\"count\":0,\"key\":110},{\"count\":1,\"key\":120}]}\n"}],"_postman_id":"cabcc90d-0e9b-40dc-966a-556b252ed5db"},{"name":"/analytics/:app/totalsearches","id":"eda6b03b-894c-4f3b-8615-5c04e5849bf5","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/totalsearches","description":"Returns the total number of searches made during a given time frame.\n<br/>\nThe endpoint accepts the following parameters:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`"},"response":[{"id":"4ffb2fbc-ead4-43e2-aed3-e49e43560160","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/totalsearches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"21","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:11:46 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"totalSearches\":11}\n"}],"_postman_id":"eda6b03b-894c-4f3b-8615-5c04e5849bf5"},{"name":"/analytics/:app/avgclickrate","id":"6f8d2e03-a610-434d-966d-5d74e63ecf9f","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/avgclickrate","description":"Returns the average click rate for an app.  \n<br/>\nThe endpoint accepts the following paramteres:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`"},"response":[{"id":"4d4fe3e8-d82f-4a0d-ac51-1d9e3951b84e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/avgclickrate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"23","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:04:49 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"avgClickRate\":44.44}\n"}],"_postman_id":"6f8d2e03-a610-434d-966d-5d74e63ecf9f"},{"name":"/analytics/:app/avgconversionrate","id":"aead2f84-2441-44a0-b69c-93c6beaa3ce3","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/avgconversionrate","description":"Returns the average conversion rate for an app.  \n<br/>\nThe endpoint accepts the following paramteres:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`"},"response":[{"id":"0ebc46e8-9295-48a0-a8eb-ff736dd04747","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/avgconversionrate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"28","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 08:09:58 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"avgConversionRate\":33.33}\n"}],"_postman_id":"aead2f84-2441-44a0-b69c-93c6beaa3ce3"},{"name":"/analytics/:app/summary","id":"750051e5-9681-4fd7-85fd-20c26ee2b751","request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/summary","description":"Returns the total number of searches, average click rate and average conversion rate of an app during a given time frame.\n<br/>\nThe endpoint accepts the following parameters:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`"},"response":[{"id":"590d7863-938f-44cc-a94f-9a2c9e30cdb3","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/summary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"68","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 13:54:18 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzNjY2MTYwNXxOd3dBTkZGSFdWVklNMHRMVWtGS1ZEUklWMFEwU1VWV1IwUlZORWxPUkVGTFFrdzNXbEkyVUVGSlVEUlhSRFpMVGpSSFIwZFpSa0U9fLSLKoqjSdpZRswfIVbuOggg623PhGywEpaguUAC8m9e","key":"appbase_accapi"}],"responseTime":null,"body":"{\"avgClickRate\":36.36,\"avgConversionRate\":27.27,\"totalSearches\":11}\n"}],"_postman_id":"750051e5-9681-4fd7-85fd-20c26ee2b751"},{"name":"/analytics/:app/requestdistribution","id":"970bb802-5615-49cb-826a-480a43094295","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host}}/analytics/{{app}}/requestdistribution","description":"Returns the request distribution according to their response status codes during a given time frame.\n<br/>\nThe endpoint accepts the following parameters:\n - `from`: starting date in string formatted as '2018/07/16' (yyyy/MM/dd). It defaults to `7 days ago 0:00:000 UTC`\n - `to`: ending date in string formatted as '2018/07/23' (yyyy/MM/dd). It defaults to `today 23:59:999 UTC`"},"response":[{"id":"2b6b3274-5ba1-491a-bb72-850670965d5a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/requestdistribution"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"request_distribution\": [\n        {\n            \"buckets\": [\n                {\n                    \"count\": 1,\n                    \"key\": 200\n                }\n            ],\n            \"count\": 1,\n            \"key\": 1545826920000,\n            \"key_as_string\": \"2018-12-26T12:22:00.000Z\"\n        },\n        {\n            \"buckets\": [\n                {\n                    \"count\": 2,\n                    \"key\": 201\n                },\n                {\n                    \"count\": 1,\n                    \"key\": 200\n                }\n            ],\n            \"count\": 3,\n            \"key\": 1545826980000,\n            \"key_as_string\": \"2018-12-26T12:23:00.000Z\"\n        },\n        {\n            \"buckets\": [\n                {\n                    \"count\": 1,\n                    \"key\": 200\n                }\n            ],\n            \"count\": 1,\n            \"key\": 1545827040000,\n            \"key_as_string\": \"2018-12-26T12:24:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827100000,\n            \"key_as_string\": \"2018-12-26T12:25:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827160000,\n            \"key_as_string\": \"2018-12-26T12:26:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827220000,\n            \"key_as_string\": \"2018-12-26T12:27:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827280000,\n            \"key_as_string\": \"2018-12-26T12:28:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827340000,\n            \"key_as_string\": \"2018-12-26T12:29:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827400000,\n            \"key_as_string\": \"2018-12-26T12:30:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827460000,\n            \"key_as_string\": \"2018-12-26T12:31:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827520000,\n            \"key_as_string\": \"2018-12-26T12:32:00.000Z\"\n        },\n        {\n            \"buckets\": [],\n            \"count\": 0,\n            \"key\": 1545827580000,\n            \"key_as_string\": \"2018-12-26T12:33:00.000Z\"\n        },\n        {\n            \"buckets\": [\n                {\n                    \"count\": 1,\n                    \"key\": 401\n                }\n            ],\n            \"count\": 1,\n            \"key\": 1545827640000,\n            \"key_as_string\": \"2018-12-26T12:34:00.000Z\"\n        },\n        {\n            \"buckets\": [\n                {\n                    \"count\": 3,\n                    \"key\": 200\n                },\n                {\n                    \"count\": 2,\n                    \"key\": 404\n                },\n                {\n                    \"count\": 1,\n                    \"key\": 401\n                }\n            ],\n            \"count\": 6,\n            \"key\": 1545827700000,\n            \"key_as_string\": \"2018-12-26T12:35:00.000Z\"\n        },\n        {\n            \"buckets\": [\n                {\n                    \"count\": 1,\n                    \"key\": 401\n                }\n            ],\n            \"count\": 1,\n            \"key\": 1545827760000,\n            \"key_as_string\": \"2018-12-26T12:36:00.000Z\"\n        }\n    ]\n}"}],"_postman_id":"970bb802-5615-49cb-826a-480a43094295"},{"name":"/app/:app/public_key","id":"b7b2afe8-8b8e-4609-a720-9d02d4a201be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"public_key\": \"LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFuenlpczFaamZOQjBiQmdLRk1Tdgp2a1R0d2x2QnNhSnE3UzV3QStremVWT1ZwVld3a1dkVmhhNHMzOFhNL3BhL3lyNDdhdjcrejNWVG12RFJ5QUhjCmFUOTJ3aFJFRnBMdjljajVsVGVKU2lieXIvTXJtL1l0akNaVldnYU9ZSWh3clh3S0xxUHIvMTFpbldzQWtmSXkKdHZIV1R4WllFY1hMZ0FYRnVVdWFTM3VGOWdFaU5Rd3pHVFUxdjBGcWtxVEJyNEI4blczSENONDdYVXUwdDhZMAplK2xmNHM0T3hRYXdXRDc5SjkvNWQzUnkwdmJWM0FtMUZ0R0ppSnZPd1JzSWZWQ2hEcFlTdFRjSFRDTXF0dldiClY2TDExQldrcHpHWFNXNEh2NDNxYStHU1lPRDJRVTY4TWI1OW9TazJPQitCdE9McEpvZm1iR0VHZ3Ztd3lDSTkKTXdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0t\",\n\t\"role_key\": \"role\"\n}"},"url":"{{host}}/app/{{app}}/public_key","description":"This end point allows to add / update JWT public key for a given application. The request body is of type `application/json`.\n\n#### Request Body\n\n| Field \t\t\t| Type\t\t| Description |\n|-------------------|-----------|-------------|\n| `public_key`\t\t| string\t| Base64 encoded Public key implementing RS256 algorithm that can help in verifying and authorizing user based on JWT token. \t |\n| `role_key`\t\t| string\t| Optional body paramter that will be used to indentify the role key from the decoded JWT token. Default Value for `role_key` is `role`. \t |"},"response":[{"id":"4669ee46-5060-433e-ab74-a543ebbf1795","name":"400 Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{HOST}}/app/{{APP}}/public_key"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid public key\"\n}"},{"id":"842d5262-234e-46bc-8353-346f0e6dee64","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"public_key\": \"LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFuenlpczFaamZOQjBiQmdLRk1Tdgp2a1R0d2x2QnNhSnE3UzV3QStremVWT1ZwVld3a1dkVmhhNHMzOFhNL3BhL3lyNDdhdjcrejNWVG12RFJ5QUhjCmFUOTJ3aFJFRnBMdjljajVsVGVKU2lieXIvTXJtL1l0akNaVldnYU9ZSWh3clh3S0xxUHIvMTFpbldzQWtmSXkKdHZIV1R4WllFY1hMZ0FYRnVVdWFTM3VGOWdFaU5Rd3pHVFUxdjBGcWtxVEJyNEI4blczSENONDdYVXUwdDhZMAplK2xmNHM0T3hRYXdXRDc5SjkvNWQzUnkwdmJWM0FtMUZ0R0ppSnZPd1JzSWZWQ2hEcFlTdFRjSFRDTXF0dldiClY2TDExQldrcHpHWFNXNEh2NDNxYStHU1lPRDJRVTY4TWI1OW9TazJPQitCdE9McEpvZm1iR0VHZ3Ztd3lDSTkKTXdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0t\",\n\t\"role_key\": \"role\"\n}"},"url":"{{HOST}}/app/{{APP}}/public_key"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"app\": \"testmappings\",\n        \"public_key\": \"LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFuenlpczFaamZOQjBiQmdLRk1Tdgp2a1R0d2x2QnNhSnE3UzV3QStremVWT1ZwVld3a1dkVmhhNHMzOFhNL3BhL3lyNDdhdjcrejNWVG12RFJ5QUhjCmFUOTJ3aFJFRnBMdjljajVsVGVKU2lieXIvTXJtL1l0akNaVldnYU9ZSWh3clh3S0xxUHIvMTFpbldzQWtmSXkKdHZIV1R4WllFY1hMZ0FYRnVVdWFTM3VGOWdFaU5Rd3pHVFUxdjBGcWtxVEJyNEI4blczSENONDdYVXUwdDhZMAplK2xmNHM0T3hRYXdXRDc5SjkvNWQzUnkwdmJWM0FtMUZ0R0ppSnZPd1JzSWZWQ2hEcFlTdFRjSFRDTXF0dldiClY2TDExQldrcHpHWFNXNEh2NDNxYStHU1lPRDJRVTY4TWI1OW9TazJPQitCdE9McEpvZm1iR0VHZ3Ztd3lDSTkKTXdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0t\",\n        \"role_key\": \"role\"\n    },\n    \"message\": \"Public key updated successfully\"\n}"}],"_postman_id":"b7b2afe8-8b8e-4609-a720-9d02d4a201be"},{"name":"/app/:app/public_key","id":"7f938d63-f82c-4807-abc2-f595d12b9645","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host}}/app/{{app}}/public_key","description":"This endpoint allows you to get `public_key` for a given `app` name in the url parametter."},"response":[{"id":"5717e861-eb73-48fd-85c9-a997020d55f3","name":"400 Bad Request","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/public_key"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"App not found\"\n}"},{"id":"c6a922a8-0390-4b1b-bf24-9145ef28193b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/app/{{APP}}/public_key"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"app\": \"testmappings\",\n    \"public_key\": \"LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFuenlpczFaamZOQjBiQmdLRk1Tdgp2a1R0d2x2QnNhSnE3UzV3QStremVWT1ZwVld3a1dkVmhhNHMzOFhNL3BhL3lyNDdhdjcrejNWVG12RFJ5QUhjCmFUOTJ3aFJFRnBMdjljajVsVGVKU2lieXIvTXJtL1l0akNaVldnYU9ZSWh3clh3S0xxUHIvMTFpbldzQWtmSXkKdHZIV1R4WllFY1hMZ0FYRnVVdWFTM3VGOWdFaU5Rd3pHVFUxdjBGcWtxVEJyNEI4blczSENONDdYVXUwdDhZMAplK2xmNHM0T3hRYXdXRDc5SjkvNWQzUnkwdmJWM0FtMUZ0R0ppSnZPd1JzSWZWQ2hEcFlTdFRjSFRDTXF0dldiClY2TDExQldrcHpHWFNXNEh2NDNxYStHU1lPRDJRVTY4TWI1OW9TazJPQitCdE9McEpvZm1iR0VHZ3Ztd3lDSTkKTXdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0t\",\n\t\"role_key\": \"role\"\n}"}],"_postman_id":"7f938d63-f82c-4807-abc2-f595d12b9645"},{"name":"/app/:app/permission/:username/role/:role","id":"ed424390-26cf-485e-bc9a-70559e078cd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{host}}/app/{{app}}/permission/{{username}}/role/{{role}}","description":"Add role for particular credentail for a given application. This endpoint accepts `app` name, `username` from credentails and `role` name that you would like to put for that particular crendtials in it request params.\n\n`role` name has to be unique for combination of `app` and `username`."},"response":[{"id":"658843bb-e39b-49f4-9570-30d5bd15e3c7","name":"200 OK","originalRequest":{"method":"PUT","header":[],"url":"{{HOST}}/app/{{APP}}/permission/{{USERNAME}}/role/{{ROLE}}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"app\": \"testmappings\",\n        \"role\": \"admin\"\n    },\n    \"message\": \"Role updated successfully\"\n}"},{"id":"b8a82948-cf70-4b43-858c-c2c97b2afb05","name":"500 Internal Server Error","originalRequest":{"method":"PUT","header":[],"url":"{{HOST}}/app/{{APP}}123/permission/{{USERNAME}}/role/{{ROLE}}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Please provide valid application name\"\n}"}],"_postman_id":"ed424390-26cf-485e-bc9a-70559e078cd1"},{"name":"/app/:app/permission/:username/role","id":"5bae07f9-6a24-444d-9f3e-15bf223162f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{host}}/app/{{app}}/permission/{{username}}/role","description":"Endpoint to delete `role` for a given `username` from a credential and `app`."},"response":[{"id":"0f16cd1a-3dae-4fa9-a947-1a97efe14208","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/app/{{APP}}/permission/{{USERNAME}}/role"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"app\": \"testmappings\",\n        \"role\": \"\"\n    },\n    \"message\": \"Role updated successfully\"\n}"},{"id":"cf22aefd-90ca-42d7-9a54-635142f12dfc","name":"500 Internal Server Error","originalRequest":{"method":"DELETE","header":[],"url":"{{HOST}}/app/{{APP}}/permission/{{USERNAME}}/role"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Please provide valid application name\"\n}"}],"_postman_id":"5bae07f9-6a24-444d-9f3e-15bf223162f1"}],"id":"afa062b1-684c-4aae-bf96-8391634db409","description":"Documentation for apps related endpoints.","event":[{"listen":"prerequest","script":{"id":"73ff9c87-8306-4388-b5f6-bd691103234a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c6f2666b-464a-48d2-b36f-99759d039ae9","type":"text/javascript","exec":[""]}}],"_postman_id":"afa062b1-684c-4aae-bf96-8391634db409"},{"name":"User","item":[{"name":"/user","id":"f2dec2e3-364f-4b99-88a8-f606ae26a5c7","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/user","description":"Creates a new user."},"response":[{"id":"427870b9-185d-474e-b2b4-aa9f40815e84","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"27","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 16:53:02 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"message\": \"User Created\"\n}"}],"_postman_id":"f2dec2e3-364f-4b99-88a8-f606ae26a5c7"},{"name":"/user","id":"caa9833a-5e33-44df-a5dc-3baf718c21d4","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/user","description":"Get user related information. The response is of type `application/json`.\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `body.apps`\t| object\t| It is a map of string to string. It consists all the apps of the user and their app id |\n| `body.c_id`\t| string\t| Represents a unique customer id |\n| `body.company`| string\t| Organisation/Company a user is associated with |\n| `body.created_at` | string | Represents the time at which the user was created |\n| `body.deployment-timeframe` | string | |\n| `body.details` | string | It contains data given by o-auth providers such as email, family_name, gender, given_name, link to profile picture |\n| `body.phone`\t| string | It contains the phone number of the user |\n| `body.email`\t| string | It contains the email ID of the user |\n| `body.usecase` | string | It contains the use case given by the user |"},"response":[{"id":"be5cc268-e667-43db-bccc-fbfcdaaf473d","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 20 Nov 2018 12:23:36 GMT"},{"key":"Content-Length","value":"1248"}],"cookie":[],"responseTime":null,"body":"{\n    \"body\": {\n        \"apps\": {\n            \"analytics102\": \"466\",\n            \"cheese-105\": \"505\",\n            \"cheesy-102\": \"476\",\n            \"chhesy-101\": \"473\",\n            \"dummy678\": \"372\",\n            \"es6functionaltest\": \"374\",\n            \"hot-cake10\": \"499\",\n            \"hot-cake11\": \"502\",\n            \"hot-cake5\": \"495\",\n            \"hot-cake6\": \"496\",\n            \"hot-cake7\": \"497\",\n            \"hot-cake8\": \"498\",\n            \"movies-test\": \"459\",\n            \"movies1-dummy\": \"453\",\n            \"otptest101\": \"467\",\n            \"pnc-ana\": \"375\",\n            \"princees6test\": \"381\",\n            \"ratelimit1001\": \"244\",\n            \"router102\": \"296\",\n            \"stage10102\": \"287\",\n            \"stage10103\": \"288\",\n            \"test-111\": \"511\",\n            \"test-hello-world\": \"518\",\n            \"test-hello-world1\": \"520\",\n            \"test-nil-101\": \"503\",\n            \"test-prince-101\": \"514\",\n            \"white206\": \"185\",\n            \"white208\": \"186\"\n        },\n        \"c_id\": \"BD3C7C1D-AE6C-49CD-8EAB-247844CC38A1\",\n        \"company\": \"appbase\",\n        \"created_at\": \"2018-06-12T08:29:55.2417492Z\",\n        \"deployment-timeframe\": \"\",\n        \"details\": {\n            \"email\": \"raaz.crzy@gmail.com\",\n            \"family_name\": \"Raj\",\n            \"gender\": \"male\",\n            \"given_name\": \"Prince\",\n            \"id\": \"109066544601129362145\",\n            \"link\": \"https://plus.google.com/+PrinceRajCrzy\",\n            \"locale\": \"en\",\n            \"name\": \"Prince Raj\",\n            \"picture\": \"https://lh4.googleusercontent.com/-VP0GwJpI2X0/AAAAAAAAAAI/AAAAAAAAAOY/Imdf-lVxzqM/photo.jpg\",\n            \"verified_email\": \"\"\n        },\n        \"email\": \"raaz.crzy@gmail.com\",\n        \"email_optin\": true,\n        \"email_preferences\": [\n            \"security_updates\"\n        ],\n        \"phone\": \"7008963113\",\n        \"reactive_apps\": {\n            \"ecstatic_booth_7f3dab\": \"12\"\n        },\n        \"usecase\": \"generic\"\n    },\n    \"message\": \"Found User\"\n}"}],"_postman_id":"caa9833a-5e33-44df-a5dc-3baf718c21d4"},{"name":"/user/token","id":"ed415935-8885-45c7-bc05-518de1a090be","request":{"method":"GET","header":[],"url":"{{host}}/user/token","description":"It fetches the user token of the logged in user. This token id the oauth token from either Google / Github."},"response":[{"id":"74fce8a1-7371-4796-ad31-49302b01dee7","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"244","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"text/plain","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 17:02:08 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"eyJhcHBiYXNlX2FjY2FwaSI6Ik1UVXlOakEwTmpBM05YeE9kM2RCVGtWc1RsVnNaRk5YUlRBelRsVndWRlJXYUZSU1JXaE9WMFZLUWxSNlpFTk5hMlJQVkZSS1lWWlVTbGRTZWs1WVZUQkdVazVzVmxKVmEyTXdUV3hTVUZFeFdUQlVNVVU5Zkh6YTktc0o4a3VHMVF0R0VXV2Y2aDNmaHQ3Q1pSNUZlSlZidWhYdE03NUYifQ=="}],"_postman_id":"ed415935-8885-45c7-bc05-518de1a090be"},{"name":"/user/profile","id":"22180ef9-2213-44c7-b99f-850d3a4c5a74","request":{"auth":{"type":"noauth"},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"phone\": \"7008963113\",\n\t\"company\": \"appbase\",\n\t\"usecase\": \"generic\",\n\t\"email_preferences\": [\"newsletter\"],\n\t\"email_optin\": true\n}"},"url":"{{host}}/user/profile","description":"Updates a user profile. The request body is of type `application/json`:\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `deployment-timeframe` | string | Deployment timeframe of the user |\n| `phone` | string | Phone number of the user |\n| `company` | string | Company/Organisation that a user is associated with |\n| `usecase` | string | It contains the use case given by the user |\n| `name`\t| string | Name of the user |\n| `picture` | string | URL of the user's avatar |\n| `email_optin` | boolean | |\n| `email_preferences` | array of string |allowed values: security_updates, product_updates, newsletters|\n\nThe response contains a status message which tells if the operation was successful. It contains the following key:\n - `message` : It is of type string, and represents the status of the response e.g - `User Profile Updated`."},"response":[{"id":"1f318e98-9ee8-497c-ab81-482175bd0a5c","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"phone\": \"7008963113\",\n\t\"company\": \"appbase\",\n\t\"usecase\": \"generic\",\n\t\"email_preferences\": [\"newsletter\"],\n\t\"email_optin\": true\n}"},"url":"{{HOST}}/user/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 20 Nov 2018 12:16:21 GMT"},{"key":"Content-Length","value":"35"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User Profile Updated\"\n}"}],"_postman_id":"22180ef9-2213-44c7-b99f-850d3a4c5a74"},{"name":"/user/profile","id":"12693a3f-2f7f-47db-a93e-21e701eabf23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth"},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email_preferences\": [\"security_updates\"]\n}"},"url":"{{host}}/user/profile","description":"Patches a user profile. The request body is of type `application/json`:\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `deployment-timeframe` | string | Deployment timeframe of the user |\n| `phone` | string | Phone number of the user |\n| `company` | string | Company/Organisation that a user is associated with |\n| `usecase` | string | It contains the use case given by the user |\n| `name`\t| string | Name of the user |\n| `picture` | string | URL of the user's avatar |\n| `email_optin` | boolean | |\n| `email_preferences` | array of string | allowed values: security_updates, product_updates, newsletters|"},"response":[{"id":"5775f587-7c7e-4b29-98eb-eb6a1b4c89e0","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email_preferences\": [\"security_updates\"]\n}"},"url":"{{HOST}}/user/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 20 Nov 2018 12:23:27 GMT"},{"key":"Content-Length","value":"35"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User Profile Updated\"\n}"}],"_postman_id":"12693a3f-2f7f-47db-a93e-21e701eabf23"},{"name":"/user/apps","id":"c048da53-0fe1-4b31-81e5-4fcc9ad22d94","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{host}}/user/apps","description":"Fetches a list which contains data about the user's apps. The response body is of type `application/json`. The `body` key in the response is an array of app details. Each object in the array consists of:\n\n#### Response Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `body.appname` | string | It is the name of the app |\n| `body.created_at` | string | It holds the app creation timestamp |\n| `body.es_version` | string | The es version of the app |\n| `body.id` | string | It is the unique ID of the app |\n| `body.owner` | string | It contains the email ID of the app owner |\n| `message` | string | Represents the status of the response |"},"response":[{"id":"8a1c5856-c30c-468f-947b-8194b22bfc0f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/apps"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"257","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 16:59:08 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"{\n  \"body\": [\n    {\n      \"appname\": \"testindex\",\n      \"created_at\": \"2018-05-12T21:52:16.977375+05:30\",\n      \"es_version\": \"5.6\",\n      \"id\": \"10\",\n      \"owner\": \"raaz.crzy@gmail.com\"\n    },\n    {\n      \"appname\": \"prince\",\n      \"created_at\": \"2018-05-12T22:03:49.1472696+05:30\",\n      \"es_version\": \"5.6\",\n      \"id\": \"12\",\n      \"owner\": \"pnc.raj@gmail.com\"\n    }\n  ],\n  \"message\": \"All User Apps\"\n}"}],"_postman_id":"c048da53-0fe1-4b31-81e5-4fcc9ad22d94"},{"name":"/user/metrics","id":"d8425d88-3d6f-4086-8249-7488756f13a2","request":{"method":"GET","header":[],"url":"{{host}}/user/metrics","description":"It lists the metrics for the logged in user. It contains the metrics of the current month. The response body is of type `application/json` and consists of:\n\n#### Response Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `body.month.apiCalls` | number | It contains the total number of API calls made by the user |\n| `body.month.apicalls_breakdown` | object | It contains the list of all types of API calls (index, misc, search, settings, stream) and their number of calls |\n| `body.overall.storage` | number | It denotes the amount of storage being used by the user |\n| `message`\t| string | Represents the status of the response |"},"response":[{"id":"7375c25e-ac10-45d1-8a3d-32f5a3d05151","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/metrics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"161","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 30 May 2018 12:41:52 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNzU5NDA1OXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fPNMwGMhSWRerxnU4YL5d7Nci55FVr99Mds8CQcfr3r4","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"body\": {\n        \"month\": {\n            \"apiCalls\": 5,\n            \"apicalls_breakdown\": {\n                \"index\": 4,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 1\n            }\n        },\n        \"overall\": {\n            \"storage\": 7320\n        }\n    },\n    \"message\": \"Found User\"\n}"},{"id":"bb5cf7cd-1516-4b7d-be29-03dfc9df2941","name":"/user/metrics","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/metrics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"160","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 12 May 2018 16:58:21 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjA0NjA3NXxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fHza9-sJ8kuG1QtGEWWf6h3fht7CZR5FeJVbuhXtM75F","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"body\": {\n        \"month\": {\n            \"apiCalls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            }\n        },\n        \"overall\": {\n            \"storage\": 324\n        }\n    },\n    \"message\": \"Found User\"\n}"}],"_postman_id":"d8425d88-3d6f-4086-8249-7488756f13a2"},{"name":"/user/apps/permissions","id":"ca039ebf-e028-4716-a8e6-fca21689efa5","request":{"method":"GET","header":[],"url":"{{host}}/user/apps/permissions","description":"This endpoint gives the list of all apps of the user along with the read/write basic auth credential of each app. The response body is of type `application/json` and contains the following fields:\n\n#### Response Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `body` | object | It contains list of apps. Each app is an object with app_name as the key. The body of each app object is an array of app's read and write permissions object |\n| `message` | string | Represents the status of the response |"},"response":[{"id":"a9298f58-9f6d-4c5f-933c-b92e98fb9cad","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/apps/permissions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Expose-Headers","value":"X-Search-Id","name":"Access-Control-Expose-Headers","description":"Lets a server whitelist headers that browsers are allowed to access."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 09:02:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.13.12","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNjA4NzE4M3xOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fCBQRcG0VcB2j_nyfH2AcDxobkuGtEMfnKpZaZih6bFQ","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"body\": {\n        \"ana201\": [\n            {\n                \"created_at\": \"2018-09-12T11:30:58.3281392Z\",\n                \"description\": \"changing permission\",\n                \"password\": \"b90ee0e9-05aa-4c4f-9651-2c1e44aad0d3\",\n                \"read\": true,\n                \"username\": \"86WHzvJpK\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-09-12T11:31:29.2278736Z\",\n                \"description\": \"new permission\",\n                \"password\": \"ff245a11-07fc-48ce-8fc2-bd9c55be4343\",\n                \"read\": true,\n                \"username\": \"AmXBhv8up\",\n                \"write\": true\n            }\n        ],\n        \"analytics102\": [\n            {\n                \"created_at\": \"2018-08-03T15:48:04.5736882Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"85112cf2-63f2-4d3e-a3b4-49b0d93944c5\",\n                \"read\": true,\n                \"username\": \"0zOZkoUxl\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-08-03T15:48:04.9136295Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"9b4dbf72-f3da-453f-b9e7-8ae5ef854b03\",\n                \"read\": true,\n                \"username\": \"2ON5kDXki\",\n                \"write\": false\n            }\n        ],\n        \"bugfix-101\": [\n            {\n                \"created_at\": \"2018-08-08T07:54:58.7414221Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"a0d2b4ff-49f4-49e4-bc4a-7b200033e608\",\n                \"read\": true,\n                \"username\": \"JVaDHNKrN\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-08-08T07:54:59.0994361Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"3efb6fec-09d5-41e2-8fd9-731d72804a0d\",\n                \"read\": true,\n                \"username\": \"Zc21pMgdj\",\n                \"write\": false\n            }\n        ],\n        \"dummy678\": [\n            {\n                \"created_at\": \"2018-09-06T06:28:13.705995Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"3b8eaf85-9dae-4ede-889c-22752fd9bf5f\",\n                \"read\": false,\n                \"username\": \"FIDLCgGTn\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-09-12T11:30:35.2656786Z\",\n                \"description\": \"changing permission\",\n                \"password\": \"a610c41d-083e-417d-924b-271320da9b56\",\n                \"read\": true,\n                \"username\": \"N1buWlx6H\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-09-06T06:28:13.3712996Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"ba441cd4-3a8d-4f91-bbe9-bad8e927ba4e\",\n                \"read\": true,\n                \"username\": \"SVuwoRKXK\",\n                \"write\": false\n            }\n        ],\n        \"es6functionaltest\": [\n            {\n                \"created_at\": \"2018-09-15T03:26:49.892881Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"e8fb3a5d-562a-424c-85f4-a2f33d0490f0\",\n                \"read\": true,\n                \"username\": \"PEb9rSvRU\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-09-15T03:26:50.2981512Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"aeceafb9-5586-4565-9a4c-8e24efa5690a\",\n                \"read\": true,\n                \"username\": \"wbRYucH4k\",\n                \"write\": false\n            }\n        ],\n        \"mapping101\": [\n            {\n                \"created_at\": \"2018-07-11T15:54:57.8756239Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"7465877a-3b88-4a23-8a52-de0b6b13bd97\",\n                \"read\": true,\n                \"username\": \"jw9xrug92\",\n                \"write\": false\n            },\n            {\n                \"created_at\": \"2018-07-11T15:54:57.5387811Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"c4a4b9f1-d558-4128-a934-ac759e4e6df8\",\n                \"read\": true,\n                \"username\": \"kTNnAhDMS\",\n                \"write\": true\n            }\n        ],\n        \"pnc-ana\": [\n            {\n                \"created_at\": \"2018-09-15T09:11:13.9032018Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"d086534e-cd2b-4933-8f9a-aa4056f42273\",\n                \"read\": true,\n                \"username\": \"arFuWCKL7\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-09-15T09:11:14.2598427Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"042d03b6-3eb9-48f4-b7aa-927d4e9d91c1\",\n                \"read\": true,\n                \"username\": \"b9zB9p99j\",\n                \"write\": false\n            }\n        ],\n        \"pnc-analytics\": [\n            {\n                \"created_at\": \"2018-09-13T20:09:29.576773+05:30\",\n                \"description\": \"\",\n                \"password\": \"8306fc5f-f4e0-4880-a4a5-a146b3db9700\",\n                \"read\": true,\n                \"username\": \"7lsx9ROIM\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-09-13T20:09:30.57369+05:30\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"e4e5aabf-6120-4373-8c25-f4e22fc464d9\",\n                \"read\": true,\n                \"username\": \"es0H8KR6c\",\n                \"write\": false\n            }\n        ],\n        \"ratelimit1001\": [\n            {\n                \"created_at\": \"2018-07-17T07:11:38.8824186Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"b16242c6-8cd6-4e6d-ba71-a24e3bd31cfa\",\n                \"read\": true,\n                \"username\": \"sYBVohTSf\",\n                \"write\": false\n            },\n            {\n                \"created_at\": \"2018-07-17T07:11:38.5864366Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"ddd1e15a-ff02-49bc-a447-041d839d2944\",\n                \"read\": true,\n                \"username\": \"W7iT4mHCz\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-09-05T16:36:19.2380731Z\",\n                \"description\": \"gggg\",\n                \"password\": \"3f809e79-693b-4865-8798-3dd2a1d32e5b\",\n                \"read\": true,\n                \"username\": \"YTyhRXqoo\",\n                \"write\": false\n            }\n        ],\n        \"resilent101\": [\n            {\n                \"created_at\": \"2018-08-27T11:21:40.1267915Z\",\n                \"description\": \"\",\n                \"password\": \"24b275d3-31c9-4943-9e73-b1a9c38c416e\",\n                \"read\": false,\n                \"username\": \"cYWOEWPzF\",\n                \"write\": false\n            },\n            {\n                \"created_at\": \"2018-09-07T09:35:13.7113504Z\",\n                \"description\": \"\",\n                \"password\": \"a3e03c2a-b939-4cc5-9abd-78e051dabb64\",\n                \"read\": false,\n                \"username\": \"vhfe5p75O\",\n                \"write\": false\n            }\n        ],\n        \"router102\": [\n            {\n                \"created_at\": \"2018-07-30T17:15:33.4242298Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"925a840f-1a5d-4bfd-b1ae-95e017a2e0f8\",\n                \"read\": true,\n                \"username\": \"krwGwacwU\",\n                \"write\": false\n            },\n            {\n                \"created_at\": \"2018-07-30T17:15:33.1609984Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"63d6198f-a9c0-4921-a3f9-8da231bd45a2\",\n                \"read\": true,\n                \"username\": \"Pno11PQZn\",\n                \"write\": true\n            }\n        ],\n        \"router103\": [\n            {\n                \"created_at\": \"2018-08-02T09:28:35.3857237Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"b8e0b9ed-13eb-4a6a-be79-747a4416e1fa\",\n                \"read\": true,\n                \"username\": \"HvXGFgvV2\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-08-02T09:28:35.6979199Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"ec14baaa-fa42-4101-9dc6-1528f656e6fd\",\n                \"read\": true,\n                \"username\": \"SMGA0ge7T\",\n                \"write\": false\n            }\n        ],\n        \"security102\": [\n            {\n                \"created_at\": \"2018-07-16T18:55:13.2027143Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"d82e618f-2f05-406b-b64d-0fb9a283c2e4\",\n                \"read\": true,\n                \"username\": \"8edBCbgWp\",\n                \"write\": false\n            },\n            {\n                \"created_at\": \"2018-07-16T18:55:12.7897006Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"9a5efeb9-a548-4045-8e58-18c5306772cc\",\n                \"read\": true,\n                \"username\": \"YyHrQ1VrV\",\n                \"write\": true\n            }\n        ],\n        \"stage10102\": [\n            {\n                \"created_at\": \"2018-07-26T10:04:45.9118773Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"928cbef2-3e1c-4845-8b5a-1ae9e8866023\",\n                \"read\": true,\n                \"username\": \"dXu55USR6\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-07-26T10:04:46.1740487Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"f51390f3-88d8-4a5d-9f1b-a37d1a22ce94\",\n                \"read\": true,\n                \"username\": \"kI9Ck9gPs\",\n                \"write\": false\n            }\n        ],\n        \"stage10103\": [\n            {\n                \"created_at\": \"2018-07-26T10:07:37.958382Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"db2e4dca-53a1-4df6-af22-1e151d9c20da\",\n                \"read\": true,\n                \"username\": \"CYyOMJDat\",\n                \"write\": true\n            },\n            {\n                \"created_at\": \"2018-07-26T10:07:38.3023022Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"a2961b1e-1eb9-4fa3-b1b1-62a592d4ccf6\",\n                \"read\": true,\n                \"username\": \"tJckuFXLY\",\n                \"write\": false\n            }\n        ],\n        \"white206\": [\n            {\n                \"created_at\": \"2018-07-02T14:05:59.8903453Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"049af294-fa5e-4639-afde-0586aa1c7e47\",\n                \"read\": true,\n                \"username\": \"DTt8kfX9c\",\n                \"write\": false\n            },\n            {\n                \"created_at\": \"2018-07-02T14:05:59.5054762Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"d63dcf97-1f16-4432-a8c0-b7fa6044a2b8\",\n                \"read\": true,\n                \"username\": \"UvmkpUVyU\",\n                \"write\": true\n            }\n        ],\n        \"white208\": [\n            {\n                \"created_at\": \"2018-07-02T14:24:51.9625847Z\",\n                \"description\": \"Read-only API key\",\n                \"password\": \"20bb1df8-0e20-45f2-86f0-b61655f7443b\",\n                \"read\": true,\n                \"username\": \"7IIS4Nukj\",\n                \"write\": false\n            },\n            {\n                \"created_at\": \"2018-07-02T14:24:51.6313891Z\",\n                \"description\": \"Admin API key\",\n                \"password\": \"76852f5f-c53f-46a1-874a-7867f2e9f19b\",\n                \"read\": true,\n                \"username\": \"FGY9YurbX\",\n                \"write\": true\n            }\n        ]\n    },\n    \"message\": \"All User Apps Permissions\"\n}"}],"_postman_id":"ca039ebf-e028-4716-a8e6-fca21689efa5"},{"name":"/user/apps/metrics","id":"81d757cb-c958-4219-a684-60f2006a5b4a","request":{"method":"GET","header":[],"url":"{{host}}/user/apps/metrics","description":"It lists the metrics for all the apps of the logged in user. Each app metric consists of the following fields: \n\n| Field | Type | Description |\n|-------|------|-------------|\n| `api_calls` | number | Total number of api calls made by the app |\n| `apicalls_breakdown` | object | Breakdown (index, misc, search, settings, streams) of all the api calls mage by the app |\n| `records` | number | Total number of records in the app |\n| `storage` | number | Total storage used by the app |\n| `timestamp` | string | Timestamp of the last access |"},"response":[{"id":"c18c2495-ce35-4ec3-8648-ef2ad56852a1","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/apps/metrics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 09 Oct 2018 13:04:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.13.12","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[{"expires":"Tue Aug 06 2019 10:30:30 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"appbase.io","path":"/","secure":true,"value":"d370cb0d1886226848093ca0f272501e41533551430","key":"__cfduid"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"accapi.appbase.io","path":"/","secure":false,"value":"MTUzNjc0NzMyMnxOd3dBTkV4R1dFcE5TMGRVTjFRMFZWaE5RazlJVGpWYU5WaEZRa2hQVUVSUFVEZEpWMGRWTWtsWlV6ZGFVMFJHU1ZoRlVqTkRSa0U9fPZeBmJgLGohXoeaqNe2_2vlISXOv7yyb9k1gO56-smp","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"body\": {\n        \"alpha-gama-movie\": {\n            \"api_calls\": 52,\n            \"apicalls_breakdown\": {\n                \"index\": 2,\n                \"misc\": 4,\n                \"search\": 39,\n                \"settings\": 7,\n                \"stream\": 0\n            },\n            \"records\": 502,\n            \"storage\": 3017963,\n            \"timestamp\": \"2018-10-09T12:24:37.915650288Z\"\n        },\n        \"analytics101\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 2,\n            \"storage\": 3825,\n            \"timestamp\": \"2018-09-04T19:21:19.317451901Z\"\n        },\n        \"es2test\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 1,\n            \"storage\": 3288,\n            \"timestamp\": \"2018-09-15T12:36:05.580158112Z\"\n        },\n        \"firestoretest\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 28,\n            \"storage\": 15531,\n            \"timestamp\": \"0001-01-01T00:00:00Z\"\n        },\n        \"hurricane\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 65112,\n            \"storage\": 276433246,\n            \"timestamp\": \"2018-09-15T06:11:00.093240423Z\"\n        },\n        \"importtest\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 65843,\n            \"storage\": 41075241,\n            \"timestamp\": \"0001-01-01T00:00:00Z\"\n        },\n        \"jsontest\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 2,\n            \"storage\": 6401,\n            \"timestamp\": \"0001-01-01T00:00:00Z\"\n        },\n        \"kjhvjhj\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 0,\n            \"storage\": 382,\n            \"timestamp\": \"0001-01-01T00:00:00Z\"\n        },\n        \"mongotestlocal\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 30,\n            \"storage\": 46817,\n            \"timestamp\": \"2018-09-07T09:46:46.739360405Z\"\n        },\n        \"mysqltest\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 18,\n            \"storage\": 81000,\n            \"timestamp\": \"0001-01-01T00:00:00Z\"\n        },\n        \"pnc-test-analytics\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 4,\n            \"storage\": 17129,\n            \"timestamp\": \"2018-09-26T09:01:37.669994379Z\"\n        },\n        \"shopdemo\": {\n            \"api_calls\": 0,\n            \"apicalls_breakdown\": {\n                \"index\": 0,\n                \"misc\": 0,\n                \"search\": 0,\n                \"settings\": 0,\n                \"stream\": 0\n            },\n            \"records\": 9,\n            \"storage\": 5487,\n            \"timestamp\": \"2018-09-11T10:40:35.650235972Z\"\n        },\n        \"testes6onnewdashboard\": {\n            \"api_calls\": 12,\n            \"apicalls_breakdown\": {\n                \"index\": 3,\n                \"misc\": 4,\n                \"search\": 4,\n                \"settings\": 1,\n                \"stream\": 0\n            },\n            \"records\": 2,\n            \"storage\": 7645,\n            \"timestamp\": \"2018-10-09T12:46:09.845353815Z\"\n        }\n    },\n    \"message\": \"All user apps metrics\"\n}"}],"_postman_id":"81d757cb-c958-4219-a684-60f2006a5b4a"},{"name":"/user/apps/overview","id":"599a0824-f01f-43ae-84af-ccaa7eb7940f","request":{"method":"GET","header":[],"url":"{{host}}/user/apps/overview","description":"It lists the metrics along with app `tier`, `tier_validity` and `timestamp` of last access for all the apps of the logged in user."},"response":[{"id":"6e77dbf0-62d3-4acb-95fd-4c1114f423d4","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/apps/overview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Expose-Headers","value":"X-Search-Id","name":"Access-Control-Expose-Headers","description":"Lets a server whitelist headers that browsers are allowed to access."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 19 Oct 2018 10:10:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.13.12","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[{"expires":"Sat Nov 17 2018 15:32:26 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"accapi-staging.bottleneck.io","path":"/","secure":false,"value":"MTUzOTgzODM0MHxOd3dBTkZBM1VFSlZTVTgxVDFKVVJGZzFXRXhYUTA0eldVWTFRVU5DTlZVMVJFSkdXRFl5UWxaUU5ETk1ObGRZVjA5S1JFTkpNa0U9fJq4q6Ivf5P_tihonVDWtp9_oeCgLW1W-Yvvrz2uKC-H","key":"appbase_accapi"}],"responseTime":null,"body":"{\n  \"body\": {\n    \"aquaman\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 1,\n      \"storage\": 4526,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"batman\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 1,\n      \"storage\": 4534,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"bighero\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 1,\n      \"storage\": 4518,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"captain\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 0,\n      \"storage\": 382,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"fox\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 0,\n      \"storage\": 382,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"hulk\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 0,\n      \"storage\": 382,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"superman\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 1,\n      \"storage\": 4518,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"thor\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 0,\n      \"storage\": 382,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    },\n    \"wonderwoman\": {\n      \"api_calls\": 0,\n      \"es_version\": \"5.6\",\n      \"apicalls_breakdown\": {\n        \"index\": 0,\n        \"misc\": 0,\n        \"search\": 0,\n        \"settings\": 0,\n        \"stream\": 0\n      },\n      \"records\": 1,\n      \"storage\": 4518,\n      \"tier\": \"free\",\n      \"tier_validity\": 0,\n      \"timestamp\": \"0001-01-01T00:00:00Z\"\n    }\n  },\n  \"message\": \"All user apps overview\"\n}"}],"_postman_id":"599a0824-f01f-43ae-84af-ccaa7eb7940f"},{"name":"/user","id":"2fd7c1f4-7e6e-4009-b4b2-de24556a64ae","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/user","description":"It deletes a user from database."},"response":[{"id":"918ca4b3-9bd8-48d6-8d54-bd0ea31b17f4","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"27","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 12 Jun 2018 08:28:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.13.12","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUyODcyNTIyMXxOd3dBTkVORVdrSldNbFpQVVU5QlZ6TlhTalpYTWtGSFV6TlFTbEpZTmxCWE0wVk9UMDVTVTBWTlREWlBObGxZVlZsTVNsVkRSbEU9fIvmYYIptWJUfbziwLWNQW5FTfa3CPQIAyWMGF_zXsQM","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"User Deleted\"}\n"}],"_postman_id":"2fd7c1f4-7e6e-4009-b4b2-de24556a64ae"},{"name":"/user/plan","id":"5c4799ec-24ca-436a-9d21-6ccbf8caa219","request":{"method":"GET","header":[],"url":"{{host}}/user/plan","description":"This endpoint gives back the details of user's plan. The response format is of type `application/json`. It contains the following fields:\n\n#### Response Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `body.tier` | string | It denotes the plan name of the user |\n| `body.tier_validity` | string | It is the validity of plan in Unix timestamp format |\n| `body.trial` | boolean | It denotes wether the user is in trial mode or not |"},"response":[{"id":"695c599b-2e61-40b0-9cd9-ce4be8f1921a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/plan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"76","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 30 Aug 2018 17:11:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDc1MDU0M3xOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fAhGm-9JoQZiLSVG6BZECKH86WEfz2iIeS4c_ArltPPu","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"body\": {\n        \"tier\": \"growth-monthly\",\n        \"tier_validity\": 1538219438,\n        \"trial\": false\n    }\n}"}],"_postman_id":"5c4799ec-24ca-436a-9d21-6ccbf8caa219"},{"name":"/user/email","id":"6b794757-f1b0-4b4e-959e-7a78acd1c184","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"abc@xyz.com\"\n}"},"url":"{{host}}/user/email","description":"Sends a verification email containing the OTP to the email provided in the request body.\n\n#### Request Body\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `email` | string | Email ID on which the OTP is to be sent |"},"response":[{"id":"40b1bf2c-289c-4725-a2ea-5c29708a2eff","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"abc@xyz.com\"\n}"},"url":"{{HOST}}/user/email"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"53","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 18 Oct 2018 15:22:21 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Verification email sent to abc@xyz.com\"\n}"}],"_postman_id":"6b794757-f1b0-4b4e-959e-7a78acd1c184"},{"name":"/user/verify","id":"26c36b4d-de70-4481-bd1e-0b8380e54efd","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"raaz.crzy@gmail.com\",\n\t\"otp\": \"140611\"\n}"},"url":"{{host}}/user/verify","description":"Verifies the email and otp passed in the request body against the OTP sent to user's email provided in the `/user/email` endpoint.\n\n#### Request Body\n\n| Field | Type | Desription |\n|-------|------|------------|\n| `email` | string | Email ID against which the OTP is verified |\n| `otp` | string | OTP to be verified |"},"response":[{"id":"5637a4dd-1105-4eed-935c-086b57466db0","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"abc@xyzl.com\",\n\t\"otp\": \"967444\"\n}"},"url":"{{HOST}}/user/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"90","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 18 Oct 2018 15:24:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Set-Cookie","value":"accapi-session=utsavoza96@gmail.com; Expires=Sat, 17 Nov 2018 15:24:36 GMT","name":"Set-Cookie","description":"an HTTP cookie"}],"cookie":[{"expires":"Sat Nov 17 2018 15:24:36 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/user","secure":false,"value":"utsavoza96@gmail.com","key":"accapi-session"}],"responseTime":null,"body":"{\n    \"message\": \"User with email abc@xyz.com already exists, successfully logged in.\"\n}"}],"_postman_id":"26c36b4d-de70-4481-bd1e-0b8380e54efd"},{"name":"/user/credentials","id":"f2081c5c-4502-4649-bc99-d14bc404c446","request":{"method":"GET","header":[],"url":"{{host}}/user/credentials","description":"Returns user credentials which can be used via basic auth to access accapi endpoints. The credentials are of form `<user>:<password>`."},"response":[{"id":"0c220e4a-3f49-4e4b-9ac5-88d4caa2e362","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{HOST}}/user/credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"65","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 18 Oct 2018 15:34:32 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Nov 17 2018 15:24:36 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/user","secure":false,"value":"utsavoza96@gmail.com","key":"accapi-session"},{"expires":"Sat Nov 17 2018 15:32:26 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUzOTg3Njc1MHxOd3dBTkZoSlJWUkpTRWhGTlVjeVRVRk9RalJHUVU4elNrSlRWMGMwVVZKRFFVOVpNa3RSUjBsSVRrZFdVelphUmxKRVEwNUhXbEU9fJCan0XQMhKU4rGXwIqVR6lH3sTieHk56I1c4HYP_xqW","key":"appbase_accapi"}],"responseTime":null,"body":"{\n    \"credentials\": \"uc_WtUkkN0zx:224D3513-2C91-470C-9B10-226C8D1705B4\"\n}"}],"_postman_id":"f2081c5c-4502-4649-bc99-d14bc404c446"},{"name":"/user/credentials/rotate","id":"d0b5b753-c7ff-4931-8671-4888c24dbc78","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/user/credentials/rotate","description":"Rotates the user credentials."},"response":[{"id":"7c1cc1df-08e9-4fcf-a0d3-feade94be700","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":"{{HOST}}/user/credentials/rotate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Mon, 29 Oct 2018 13:53:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n\t\"message\": \"Successfully rotated user credentials\"\n}"}],"_postman_id":"d0b5b753-c7ff-4931-8671-4888c24dbc78"}],"id":"dd2fd225-70d9-4899-9689-f8faad34a3ae","description":"The user APIs allow creating, updating, and deleting users. It also contains endpoints to get user's apps, metrics, permissions and token.","event":[{"listen":"prerequest","script":{"id":"7d408c3d-5766-47a0-98c5-3fc3272de8e1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"07a3765c-21a8-4a46-9f6b-13b66c10b1ea","type":"text/javascript","exec":[""]}}],"_postman_id":"dd2fd225-70d9-4899-9689-f8faad34a3ae"},{"name":"Clusters","item":[{"name":"billing","item":[{"name":"/subscription/cluster/:cluster_id","id":"3c85fc2c-852f-4366-87b2-35ebcf4c2c94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{HOST}}/v1/subscription/cluster/{{CLUSTER_ID}}","description":"This endpoint creates a new subscription for a cluster. The request body for this request should be the source token recieved from Stripe."},"response":[],"_postman_id":"3c85fc2c-852f-4366-87b2-35ebcf4c2c94"},{"name":"/subscription/cluster/:cluster_id","id":"c3613cea-0f8d-469c-846a-24c85b3be16c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{HOST}}/v1/subscription/cluster/{{CLUSTER_ID}}","description":"This endpoint gives the detailed breakdown of current month bill of an EaaS cluster.\n\nThe response body is of type `application/json` and has the following format:\n\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `from`\t| long integer\t| Start Timestamp (unix format in seconds) of current bill cycle |\n|`plan`| string | It is the pricing plan of the cluster|\n| `to`\t| long integer\t| It is the timestamp (unix format in seconds) upto which the bill has been calculated |\n| `total_invoice`\t| float\t| Total bill amount of the current bill |\n|`invoice_breakdown[].cost`|flaot|Total cost for the current part of invoice|\n|`invoice_breakdown[].disk_count`|integer| Total number of disks attached to the cluster|\n|`invoice_breakdown[].disk_size`|integer|Size of each disk attached to the cluster|\n|`invoice_breakdown[].from`|long integer|Start Timestamp (unix format in seconds) of current part invoice|\n|`invoice_breakdown[].to`|long integer|End Timestamp (unix format in seconds) of current part invoice|\n|`invoice_breakdown[].machine_count`|integer|Total number of machines attached to the cluster|\n|`invoice_breakdown[].machine_type`|string|The type of machine attached to the cluster|"},"response":[{"id":"ab0d7da4-a42e-43db-9ca3-e62836254692","name":"/subscription/cluster/:cluster_id","originalRequest":{"method":"GET","header":[],"url":"{{host}}/v1/subscription/cluster/{{cluster_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 26 Nov 2018 12:40:43 GMT"},{"key":"Content-Length","value":"221"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": 1543232440,\n    \"invoice_breakdown\": [\n        {\n            \"cost\": 0.16,\n            \"disk_count\": 1,\n            \"disk_size\": 30,\n            \"from\": 1543232441,\n            \"machine_count\": 1,\n            \"machine_type\": \"Standard_B2s\",\n            \"to\": 1543236043,\n            \"pricing_plan\": \"Sandbox\"\n        }\n    ],\n    \"current_plan\": \"Sandbox\",\n    \"to\": 1543236043,\n    \"total_invoice\": 0.16\n}"}],"_postman_id":"c3613cea-0f8d-469c-846a-24c85b3be16c"}],"id":"00cff0d1-db10-416e-afec-0b0ed074b3c1","description":"This sub-collection contains endpoints related to cluster billing","_postman_id":"00cff0d1-db10-416e-afec-0b0ed074b3c1"},{"name":"/clusters","id":"ed515286-f364-4d38-96a8-f13bdcc380df","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{HOST}}/v1/clusters","description":"This endpoint retrieves the list of all clusters for the logged-in user. The response is of type `application/json` and format is:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n| `clusters[].name`| string\t| It is the name of the created cluster |\n| `clusters[].id` | string | It is the cluster ID |\n| `clusters[].status` | string | It describes the state of cluster |\n| `clusters[].created_at` | string | It is the time at which cluster creation command got executed |\n| `clusters[].pricing_plan`\t| string | It is the pricing plan which user has opted for |\n| `clusters[].region`\t| string | It is the region in which the cluster has been deployed |\n| `clusters[].es_version` | string | It is the elasticsearch version |\n| `clusters[].total_nodes` | integer | It is the total number of nodes|\n| `clusters[].role` | string | User role of the particular cluster|"},"response":[{"id":"0841cd92-01a2-407a-8295-f5e2e9c50658","name":"/clusters","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{host}}/v1/clusters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Fri, 01 Feb 2019 14:02:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Request executed successfully.\",\n        \"code\": 200\n    },\n    \"clusters\": [\n        {\n            \"name\": \"gke-debug-a012\",\n            \"id\": \"0rJRGqo\",\n            \"status\": \"in progress\",\n            \"created_at\": \"2019-01-23T15:09:23.793931Z\",\n            \"pricing_plan\": \"sandbox\",\n            \"plan_rate\": 59,\n            \"region\": \"us-central1-b\",\n            \"es_version\": \"6.4.2\",\n            \"total_nodes\": 1,\n            \"provider\": \"gke\",\n            \"trial\": false,\n            \"subscription_id\": \"\",\n            \"role\": \"admin\"\n        },\n        {\n            \"name\": \"gke-debug-a0123\",\n            \"id\": \"wwe7IUJ\",\n            \"status\": \"deployments in progress\",\n            \"created_at\": \"2019-01-23T15:21:01.960977Z\",\n            \"pricing_plan\": \"sandbox\",\n            \"plan_rate\": 59,\n            \"region\": \"us-central1-b\",\n            \"es_version\": \"7.0.0-alpha2\",\n            \"total_nodes\": 1,\n            \"provider\": \"gke\",\n            \"trial\": false,\n            \"subscription_id\": \"\",\n            \"role\": \"admin\"\n        },\n        {\n            \"name\": \"test-new-cluster\",\n            \"id\": \"8K83Hkr\",\n            \"status\": \"deleted\",\n            \"created_at\": \"2019-01-17T15:09:19.816194Z\",\n            \"pricing_plan\": \"hobby\",\n            \"plan_rate\": 119,\n            \"region\": \"northamerica-northeast1-b\",\n            \"es_version\": \"6.5.4\",\n            \"total_nodes\": 2,\n            \"provider\": \"gke\",\n            \"trial\": false,\n            \"subscription_id\": \"\",\n            \"role\": \"admin\"\n        },\n        {\n            \"name\": \"foobar\",\n            \"id\": \"lRhoKmf\",\n            \"status\": \"deleted\",\n            \"created_at\": \"2019-01-17T18:30:12.448555Z\",\n            \"pricing_plan\": \"\",\n            \"plan_rate\": 0,\n            \"region\": \"us-east1-b\",\n            \"es_version\": \"\",\n            \"total_nodes\": 1,\n            \"provider\": \"gke\",\n            \"trial\": false,\n            \"subscription_id\": \"si_EMOuDBI8QwRx6m\",\n            \"role\": \"admin\"\n        },\n        {\n            \"name\": \"testnew\",\n            \"id\": \"pv7bZt4\",\n            \"status\": \"active\",\n            \"created_at\": \"2019-01-18T09:05:11.732506Z\",\n            \"pricing_plan\": \"sandbox\",\n            \"plan_rate\": 59,\n            \"region\": \"asia-southeast1-b\",\n            \"es_version\": \"6.5.4\",\n            \"total_nodes\": 3,\n            \"provider\": \"gke\",\n            \"trial\": false,\n            \"subscription_id\": \"si_EMdodnuX2aJWXb\",\n            \"role\": \"viewer\"\n        }\n    ]\n}"}],"_postman_id":"ed515286-f364-4d38-96a8-f13bdcc380df"},{"name":"/_deploy","id":"feca192e-5053-4265-a8d1-3ffeb86c46c1","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"email","value":"raaz.crzy@gmail.com","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n  \"elasticsearch\": {\n    \"nodes\": 1,\n    \"version\": \"6.6.0\",\n    \"volume_size\": 30,\n    \"env\": {\n      \"cluster.name\": \"eks-test122\"\n    }\n  },\n   \"addons\": [\n        {\n            \"name\": \"arc\",\n            \"image\": \"siddharthlatest/arc:0.1.2\",\n            \"exposed_port\": 8000\n        },\n        {\n            \"name\": \"streams\",\n            \"image\": \"appbaseio/streams:latest\",\n            \"exposed_port\": 80\n        }\n    ],\n  \"cluster\": {\n    \"name\": \"eks-test122\",\n    \"vm_size\": \"t3.medium\",\n    \"location\": \"us-east-1\",\n    \"pricing_plan\": \"sandbox\",\n    \"provider\": \"eks\",\n    \"ssh_public_key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/eM7PAC5A2IOeAm3GXkHX6fHBoO8eVt3KqsO8g6LlVTDekqSffJyyN5PtdE+I3a2PLhBog1ghBoIQ1JV9+uuxjtX+DgLqy68qVAM1cEgl4qlotnpS7LuxtmTD/6HR9WjKioJNEUcL2RZzkPnzM3MNoybFbv6Gu5cnZJMTOPfKvHjM/K9s9V6oRuT56HRDLbSb7s9v91Qi3DT4jMoCrC0Y9nDecBs0mBu+ijY0ADrgxMCCgW5O20B8u7gE7DNfD+w0PZ3uNYdV5l3EuqVBeRATjAAj2DD7TomIfXbPVGldg0ou2jdU5VmJe75Zmb1CgnGJDkp8RGgXQkVj2DVu8Ia3 raaz.crzy@gmail.com\"\n  }\n}"},"url":"{{HOST}}/v1/_deploy","description":"This endpoint creates a new cluster deployment. The request body is of type `application/json` and has the following format:\n\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n|`elasticsearch.nodes`|integer| Must be an odd number. 1 <= nodes <= 9, REQUIRED |\n|`elasticsearch.version`|string| Must be a valid Logstash version in the format x.y.z, also it must be equal to the elasticsearch version deployed. REQUIRED |\n|`elasticsearch.volume_size`|integer| The amount of storage assigned to Elasticsearch. 1 <= volume_size <= 500, REQUIRED |\n|`elasticsearch.config_url`|string| It takes in URL of Elasticsearch configurations. Must be an URL to yaml file, OPTIONAL |\n|`elasticsearch.heap_size`|string|It specifies the heap size to be set in Logstash configuration. OPTIONAL |\n|`elasticsearch.plugins`|[]string|It takes in an array of Elasticsearch plugins to install in Elasticsearch|\n|`elasticsearch.backup`|boolean|It denotes weather to backup elasticsearch or not. Default: True|\n|`elasticsearch.env`|object | It is dictionary (`map[string]string`). It can used to set any environment variables to be used by Logstash. OPTIONAL |\n|`elasticsearch.restore_from`|string| A cluster_id needs to be passed here in order to restore data from that cluster, OPTIONAL|\n|`kibana.create_node`| boolean | It specifies wether to create a new node for this deployment |\n|`kibana.version`|string| Must be a valid Kibana version in the format x.y.z, also it must be equal to the elasticsearch version deployed. REQUIRED |\n|`kibana.heap_size`|string|It specifies the heap size to be set in Kibana configuration. OPTIONAL |\n|`kibana.env`|object | It is dictionary (`map[string]string`). It can used to set any environment variables to be used by Kibana. OPTIONAL |\n|`addons[].name`|string | It denotes the name of addon deployment. REQUIRED |\n|`addons[].image`|string| It must be a valid docker image. REQUIRED |\n|`addons[].exposed_port`|integer|It is the port on which the addon will listen to requests |\n|`addons[].env`|object | It is dictionary (`map[string]string`). It can used to set any environment variables to be used by the addon. OPTIONAL |\n|`cluster.name`|string | It denotes the name of cluster. REQUIRED |\n|`cluster.vm_size`|string| It must be a valid VM size. REQUIRED |\n|`cluster.location`|string|Location of cluster creation. REQUIRED |\n|`cluster.pricing_plan`|string | It is the pricing plan of cluster. valid values `2019-sandbox`, `2019-starter`, `2019-hobby`, `2019-production-1`, `2019-production-2`, `2019-production-3` |\n|`cluster.provider`|string | Accepted values: `azure`, `gke`, `eks`|\n|`cluster.ssh_public_key`|string | SSH public key to be used to create the machines|\n|`cluster.is_multi_zone` | bool | default value is false. Use to create cluster with GCP/AWS load balancer|\n|`zones`| []string | (Optional) array of zones in which the cluster instances are to be deployed. By default it will zones based on the selected region |\n\nThe `elasticsearch` and `cluster` object in the request body are required, other objects are optional. The accepted values for `vm_size`  for `azure` and `gke` are:\n\n\n|\t\t\t\tazure\t\t\t\t\t\t||gke|\t\t\t\t\t\t\t\t\t\t| |eks\t\t\t\t\t\t\t\t\t|\n|---------------\t|-------------------\t|---------------\t|---------------------\t|-------------------|-------------------|\n| Standard_B2s  \t| 4 GB RAM, 2 vCPU  \t| custom-2-4096 \t| 4 GB RAM, 2 vCPU  \t|  t3.medium \t\t| 4 GB RAM, 2 vCPU\t|\n| Standard_B2ms \t| 8 GB RAM, 2 vCPU  \t| e2-standard-4 \t| 16 GB RAM, 4 vCPU  \t| t3.large \t\t\t| 8.0 GB RAM, 2 vCPU|\n| Standard_B4ms \t| 16 GB RAM, 4 vCPU \t| e2-standard-8 \t| 32 GB RAM, 8 vCPU \t| t3.xlarge \t\t| 16.0 GB RAM, 4 vCPU|\n| Standard_B4ms     |  32 GB RAM, 8 vCPU    | e2-standard-16\t| 64 GB RAM, 16 vCPU \t|t3.2xlarge\t\t\t| 32.0 GB RAM, 8 vCPU |\n\n\n\nThe accepted values for `location` for `azure` and `gke` are:\n\n| azure         \t| gke                       \t| eks       \t|\n|---------------\t|---------------------------\t|-----------\t|\n| eastus        \t| us-east1-b                \t| us-west-2 \t|\n| westeurope    \t| europe-west1-b            \t| us-west-1 \t|\n| centralus     \t| us-central1-b             \t| us-east-1 \t|\n| canadacentral \t| australia-southeast1-b    \t|           \t|\n| canadaeast    \t| us-east4-b                \t|           \t|\n| australiaeast \t| southamerica-east1-c      \t|           \t|\n| eastus2       \t| northamerica-northeast1-b \t|           \t|\n| japaneast     \t| eurpoe-north1-b           \t|           \t|\n| northeurope   \t| asia-southeast1-b         \t|           \t|\n| southeastasia \t| asia-east1-b              \t|           \t|\n| uksouth       \t| asia-northeast1-a         \t|           \t|\n| westus2       \t|                           \t|           \t|\n| westus        \t|                           \t|           \t|\n\n\nThe response body is of type `application/json` and has the following format:\n\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n| `status.request_id`\t| string\t| UUID of request, can be used to track the request |\n| `cluster.name`| string\t| It is the name of the created cluster |\n| `cluster.id` | string | It is the cluster ID |\n| `cluster.status` | string | It describes the state of cluster |\n| `cluster.created_at` | string | It is the time at which cluster creation command got executed |\n| `cluster.message`\t| string | It is a status message with an endpoint to query the current cluster deployment status |"},"response":[{"id":"6a8e58d1-54e4-44f1-851a-5a65a734bc8a","name":"/_deploy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"elasticsearch\": {\n    \"nodes\": 1,\n    \"version\": \"5.6.10\",\n    \"volume_size\": 15,\n    \"env\": {\n      \"cluster.name\": \"azure-test-fail\"\n    }\n  },\n  \"logstash\": {\n  \t\"version\": \"5.6.10\"\n  },\n  \"cluster\": {\n    \"name\": \"azure-test-fail\",\n    \"vm_size\": \"Standard_B2s\",\n    \"location\": \"eastus\",\n    \"pricing_plan\": \"Growth\",\n    \"provider\": \"azure\",\n    \"ssh_public_key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/eM7PAC5A2IOeAm3GXkHX6fHBoO8eVt3KqsO8g6LlVTDekqSffJyyN5PtdE+I3a2PLhBog1ghBoIQ1JV9+uuxjtX+DgLqy68qVAM1cEgl4qlotnpS7LuxtmTD/6HR9WjKioJNEUcL2RZzkPnzM3MNoybFbv6Gu5cnZJMTOPfKvHjM/K9s9V6oRuT56HRDLbSb7s9v91Qi3DT4jMoCrC0Y9nDecBs0mBu+ijY0ADrgxMCCgW5O20B8u7gE7DNfD+w0PZ3uNYdV5l3EuqVBeRATjAAj2DD7TomIfXbPVGldg0ou2jdU5VmJe75Zmb1CgnGJDkp8RGgXQkVj2DVu8Ia3 raaz.crzy@gmail.com\"\n  }\n}"},"url":"{{host}}/v1/_deploy"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.13.12"},{"key":"Date","value":"Thu, 01 Nov 2018 16:16:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"100"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Logstash and Elasticsearch can not be deployed on a single node.\",\n        \"code\": 400\n    }\n}"},{"id":"ff6d7149-a8e9-4d51-afbc-ddda4a35100e","name":"/_deploy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"elasticsearch\": {\n    \"nodes\": 1,\n    \"version\": \"6.6.0\",\n    \"volume_size\": 30,\n    \"env\": {\n      \"cluster.name\": \"gke-restore-108\"\n    },\n    \"restore_from\": \"vMM5ga2\"\n  },\n   \"addons\": [\n        {\n            \"name\": \"arc\",\n            \"image\": \"siddharthlatest/arc:0.1.2\",\n            \"exposed_port\": 8000\n        }\n    ],\n  \"cluster\": {\n    \"name\": \"gke-restore-108\",\n    \"vm_size\": \"custom-2-4096\",\n    \"location\": \"us-central1-b\",\n    \"pricing_plan\": \"sandbox\",\n    \"provider\": \"gke\",\n    \"ssh_public_key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/eM7PAC5A2IOeAm3GXkHX6fHBoO8eVt3KqsO8g6LlVTDekqSffJyyN5PtdE+I3a2PLhBog1ghBoIQ1JV9+uuxjtX+DgLqy68qVAM1cEgl4qlotnpS7LuxtmTD/6HR9WjKioJNEUcL2RZzkPnzM3MNoybFbv6Gu5cnZJMTOPfKvHjM/K9s9V6oRuT56HRDLbSb7s9v91Qi3DT4jMoCrC0Y9nDecBs0mBu+ijY0ADrgxMCCgW5O20B8u7gE7DNfD+w0PZ3uNYdV5l3EuqVBeRATjAAj2DD7TomIfXbPVGldg0ou2jdU5VmJe75Zmb1CgnGJDkp8RGgXQkVj2DVu8Ia3 raaz.crzy@gmail.com\"\n  }\n}"},"url":"{{host}}/v1/_deploy"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Wed, 27 Feb 2019 11:41:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"331"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Request executed successfully.\",\n        \"code\": 202\n    },\n    \"cluster\": {\n        \"name\": \"gke-restore-108\",\n        \"id\": \"M37BDrR\",\n        \"status\": \"in progress\",\n        \"created_at\": \"2019-02-27T11:41:09.559808819Z\",\n        \"message\": \"Validation is successful and cluster creation has begun. You can query the status at /v1/_status/M37BDrR endpoint.\",\n        \"provider\": \"gke\"\n    }\n}"}],"_postman_id":"feca192e-5053-4265-a8d1-3ffeb86c46c1"},{"name":"/_deploy/:cluster_id","id":"a6fbe9f1-65a2-4844-9adc-a2c068ca4cea","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"addons\": [\n        {\n            \"name\": \"dejavu\",\n            \"image\": \"appbaseio/dejavu:latest\",\n            \"exposed_port\": 1358\n        },\n        {\n            \"name\": \"elastichq\",\n            \"image\": \"elastichq/elasticsearch-hq:release-v3.4.1\",\n            \"exposed_port\": 5000\n        }\n    ]\n}"},"url":"{{HOST}}/v1/_deploy/{{CLUSTER_ID}}","description":"This endpoint adds new deployments to existing . The request body is of type `application/json` and has the following format:\n\n#### Request Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n|`kibana.version`|string| Must be a valid Kibana version in the format x.y.z, also it must be equal to the elasticsearch version deployed. REQUIRED |\n|`kibana.heap_size`|string|It specifies the heap size to be set in Kibana configuration. OPTIONAL |\n|`kibana.status`|string|It denotes if the deployment is ready or not|\n|`kibana.env`|object | It is dictionary (`map[string]string`). It can used to set any environment variables to be used by Kibana. OPTIONAL |\n|`addons[].name`|string | It denotes the name of addon deployment. REQUIRED |\n|`addons[].image`|string| It must be a valid docker image. REQUIRED |\n|`addons[].exposed_port`|integer|It is the port on which the addon will listen to requests |\n|`addons[].env`|object | It is dictionary (`map[string]string`). It can used to set any environment variables to be used by the addon. OPTIONAL |\n|`remove_deployments`| []string | Deployment names specified in this array will be removed from the cluster |\n\n\nThe response body is of type `application/json` and has the following format:\n\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n| `status.request_id`\t| string\t| UUID of request, can be used to track the request |\n|`deployments.deployment` | string | It contains the name of the deployment |\n|`deployments.username`|string|It is the username to authenticate with this deployment|\n|`deployments.password`|string|It is the password to authenticate with this deployment|\n|`deployments.url`|string|It holds the URL where this deployment can be reached|\n|`deployments.https`|boolean|If the deployed app is reachable via https then it will be true else false|\n|`deployments_removed` | []string | It contains the name of removed deployments (if any) |"},"response":[{"id":"bcc968ec-c909-413f-828e-f80421642237","name":"/_deploy/:cluster_id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"addons\": [\n        {\n            \"name\": \"dejavu\",\n            \"image\": \"appbaseio/dejavu:latest\",\n            \"exposed_port\": 1358\n        },\n        {\n            \"name\": \"elastichq\",\n            \"image\": \"elastichq/elasticsearch-hq:release-v3.4.1\",\n            \"exposed_port\": 5000\n        }\n    ]\n}"},"url":"{{host}}/v1/_deploy/{{cluster_id}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"382","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 23 Aug 2018 07:39:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDc1MDU0M3xOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fAhGm-9JoQZiLSVG6BZECKH86WEfz2iIeS4c_ArltPPu","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\",\"code\":201},\"deployments\":[{\"deployment\":\"dejavu\",\"url\":\"dejavu-eaas-raazcrzygmailcom-beta-80.bottleneck.io/dejavu/\",\"username\":\"\",\"password\":\"\",\"https\":false},{\"deployment\":\"elastichq\",\"url\":\"elastichq-eaas-raazcrzygmailcom-beta-80.bottleneck.io/elastichq/\",\"username\":\"\",\"password\":\"\",\"https\":false}],\"deployments_removed\":{}}"}],"_postman_id":"a6fbe9f1-65a2-4844-9adc-a2c068ca4cea"},{"name":"/_status/:cluster_id","id":"f1059c68-2a02-4ca5-a311-5d491a45ad9a","request":{"auth":{"type":"noauth"},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"email","value":"raaz.crzy@gmail.com","type":"text","disabled":true}],"url":"{{HOST}}/v1/_status/{{CLUSTER_ID}}","description":"This endpoint fetches the status of all the deploments in a given cluster ID. The response body is of type `application/json` and has the following format:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n|`deployment.elasticsearch.name` | string | It is the name of elasticsearch deployment |\n|`deployment.elasticsearch.required_nodes`|integer|It denotes how many nodes are expected|\n|`deployment.elasticsearch.ready_nodes`|integer|It denotes how many nodes are ready|\n|`deployment.elasticsearch.status`|string|It denotes if the deployment is ready or not|\n|`deployment.elasticsearch.username`|string|It is the username to authenticate with this deployment|\n|`deployment.elasticsearch.password`|string|It is the password to authenticate with this deployment|\n|`deployment.elasticsearch.url`|string|It holds the URL where this deployment can be reached|\n|`deployment.elasticsearch.https`|boolean|If the deployed app is reachable via https then it will be true else false|\n|`deployment.kibana.name` | string | It is the name of kibana deployment |\n|`deployment.kibana.required_nodes`|integer|It denotes how many nodes are expected|\n|`deployment.kibana.ready_nodes`|integer|It denotes how many nodes are ready|\n|`deployment.kibana.status`|string|It denotes if the deployment is ready or not|\n|`deployment.kibana.username`|string|It is the username to authenticate with this deployment|\n|`deployment.kibana.password`|string|It is the password to authenticate with this deployment|\n|`deployment.kibana.url`|string|It holds the URL where this deployment can be reached|\n|`deployment.kibana.https`|boolean|If the deployed app is reachable via https then it will be true else false|\n|`deployment.logstash.name` | string | It is the name of logstash deployment |\n|`deployment.logstash.required_nodes`|integer|It denotes how many nodes are expected|\n|`deployment.logstash.ready_nodes`|integer|It denotes how many nodes are ready|\n|`deployment.logstash.status`|string|It denotes if the deployment is ready or not|\n|`deployment.logstash.username`|string|It is the username to authenticate with this deployment|\n|`deployment.logstash.password`|string|It is the password to authenticate with this deployment|\n|`deployment.logstash.url`|string|It holds the URL where this deployment can be reached|\n|`deployment.logstash.https`|boolean|If the deployed app is reachable via https then it will be true else false|\n|`deployment.addons[].name` | string | It is the name of addon deployment |\n|`deployment.addons[].required_nodes`|integer|It denotes how many nodes are expected|\n|`deployment.addons[].ready_nodes`|integer|It denotes how many nodes are ready|\n|`deployment.addons[].status`|string|It denotes if the deployment is ready or not|\n|`deployment.addons[].username`|string|It is the username to authenticate with this deployment|\n|`deployment.addons[].password`|string|It is the password to authenticate with this deployment|\n|`deployment.addons[].url`|string|It holds the URL where this deployment can be reached|\n|`deployment.addons[].https`|boolean|If the deployed app is reachable via https then it will be true else false|\n| `cluster.name`| string\t| It is the name of the created cluster |\n| `cluster.id` | string | It is the cluster ID |\n| `cluster.status` | string | It describes the state of cluster |\n| `cluster.created_at` | string | It is the time at which cluster creation command got executed |\n| `cluster.pricing_plan`\t| string | It is the pricing plan which user has opted for |\n| `cluster.region`\t| string | It is the region in which the cluster has been deployed |\n| `cluster.es_version` | string | It is the elasticsearch version |\n| `cluster.total_nodes` | integer | It is the total number of nodes|\n| `cluster.dashboard_url` | string | It is the URL of cluster dashboard. Users can have full control of the cluster from the dashboard |\n| `cluster.dashboard_username` | string | It is the username for logging into dashboard |\n| `cluster.dashboard_password` | string | It is the password for logging into dashboard |\n| `cluster.dashboard_https` | boolean | It tells whether dshboard is accessible over https or not |\n| `cluster.user_role` | string | It denotes the role of the user for this cluster |\n\n`kibana` and `logstash`  will be empty if they are not deployed. If deployed they will have a similiar format as that of `elasticsearch`. If addons are deployed, `addons` key will list all the deployed addon where each addon will have a similar format as that of `elasticsearch`."},"response":[{"id":"1eb630b8-9618-4bd0-935a-0cd1e305cf62","name":"/_status/:cluster_id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"email","value":"raaz.crzy@gmail.com","type":"text","disabled":true}],"url":"{{host}}/v1/_status/{{cluster_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Fri, 01 Feb 2019 13:49:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Request executed successfully.\",\n        \"code\": 200\n    },\n    \"deployment\": {\n        \"elasticsearch\": {\n            \"name\": \"elasticsearch\",\n            \"required_nodes\": 3,\n            \"ready_nodes\": 3,\n            \"status\": \"ready\",\n            \"username\": \"sbPA5ZUnK\",\n            \"password\": \"76b2f10d-0a53-45fd-a71d-162e1eca7c7d\",\n            \"url\": \"https://elasticsearch-eaas-raazcrzygmailcom-testnew.searchbase.io/\",\n            \"https\": true\n        },\n        \"kibana\": {},\n        \"logstash\": {}\n    },\n    \"cluster\": {\n        \"name\": \"testnew\",\n        \"id\": \"pv7bZt4\",\n        \"status\": \"active\",\n        \"created_at\": \"2019-01-18T09:05:11.732506Z\",\n        \"provider\": \"gke\",\n        \"pricing_plan\": \"sandbox\",\n        \"plan_rate\": 59,\n        \"region\": \"asia-southeast1-b\",\n        \"es_version\": \"6.5.4\",\n        \"total_nodes\": 3,\n        \"dashboard_url\": \"https://dashboard-eaas-raazcrzygmailcom-testnew.searchbase.io/\",\n        \"dashboard_username\": \"F8Whjy6ij\",\n        \"dashboard_password\": \"29e24f63-3410-4b5a-beb8-e864e9dcffcf\",\n        \"dashboard_https\": true,\n        \"subscription_id\": \"si_EMdodnuX2aJWXb\",\n        \"user_role\": \"viewer\"\n    }\n}"},{"id":"cd98e38a-b4f0-4306-af91-14907d76edc4","name":"Payment required error","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{host}}/v1/_status/{{cluster_id}}"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Thu, 13 Dec 2018 10:28:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"93"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Payment required. Create a subscription for this cluster.\",\n        \"code\": 402\n    }\n}"}],"_postman_id":"f1059c68-2a02-4ca5-a311-5d491a45ad9a"},{"name":"/_status/:cluster_id/:deployment_name","id":"f50227c9-9d81-47a0-b0da-6dc9728b3eb1","request":{"method":"GET","header":[],"url":"{{HOST}}/v1/_status/{{CLUSTER_ID}}/{{DEPLOYMENT_NAME}}","description":"This endpoint is similiar to /_status endpoint, except it lists only the details of a particular deployment inside a given cluster_id. The repsonse is of type `application/json` and has the following format:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n|`deployment.deployment` | string | It contains the name of the deployment |\n|`deployment.url`|string|It holds the URL where this deployment can be reached|\n|`deployment.username`|string|It is the username to authenticate with this deployment|\n|`deployment.password`|string|It is the password to authenticate with this deployment|\n|`deployment.https`|boolean|If the deployed app is reachable via https then it will be true else false|"},"response":[{"id":"d87530ae-79d5-42da-95d6-0d927a5fd892","name":"Get the details of a particular deployment","originalRequest":{"method":"GET","header":[],"url":"{{host}}/v1/_status/{{cluster_id}}/{{deployment_name}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"231","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 14 May 2018 09:18:22 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjI4MTQ3OHxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fNWJNxmaUBPL2TYqs9cJS0kGsirqg9UqeozUB9EC2qL3","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\",\"code\":200},\"deployment\":{\"deployment\":\"kibana\",\"url\":\"kibana.eaas-raazcrzygmailcom-es55.bachhra.com/\",\"username\":\"hPLRJGuMf\",\"password\":\"df71b1e7-9c89-49e0-bc18-7419b1505d6d\"}}"}],"_postman_id":"f50227c9-9d81-47a0-b0da-6dc9728b3eb1"},{"name":"/_renewauth/:cluster_id/:deployment_name","id":"4a56fe50-e3ae-4186-b544-bd32d1eaae05","request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/v1/_renewauth/{{CLUSTER_ID}}/{{DEPLOYMENT_NAME}}","description":"This endpoint can be used to delete and generate a new set of basic auth credentials for a particular deployment. The request body has to be blank. The response body is of type `application/json` and has the following format:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n|`deployment.deployment` | string | It contains the name of the deployment |\n|`deployment.url`|string|It holds the URL where this deployment can be reached|\n|`deployment.username`|string|It is the username to authenticate with this deployment|\n|`deployment.password`|string|It is the password to authenticate with this deployment|\n|`deployment.https`|boolean|If the deployed app is reachable via https then it will be true else false|"},"response":[{"id":"d87498cb-18ef-4ea8-bb3c-0175c3419d85","name":"/_renewauth/:cluster_id/:deployment_name","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/_renewauth/{{cluster_id}}/{{deployment_name}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"274","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 10:10:13 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\",\"code\":201},\"deployment\":{\"deployment\":\"elasticsearch\",\"url\":\"https://elasticsearch.eaas-raazcrzygmailcom-docs-prepare.bachhra.com/\",\"username\":\"h4gHyRHwr\",\"password\":\"bf08fd86-90fa-4030-acdc-9039bf98f4d1\",\"https\":true}}"}],"_postman_id":"4a56fe50-e3ae-4186-b544-bd32d1eaae05"},{"name":"/_renewauth/:cluster_id","id":"e695df57-552c-421f-a6da-a3a06adabca3","request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/v1/_renewauth/{{CLUSTER_ID}}","description":"This endpoint can be used to delete and generate a new set of basic auth credentials for all the deployments in a particular cluster. The request body has to be blank. The response body is of type `application/json` and has the following format:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n|`deployment[].deployment` | string | It contains the name of the deployment |\n|`deployment[].url`|string|It holds the URL where this deployment can be reached|\n|`deployment[].username`|string|It is the username to authenticate with this deployment|\n|`deployment[].password`|string|It is the password to authenticate with this deployment|\n|`deployment[].https`|boolean|If the deployed app is reachable via https then it will be true else false|\n\nThe `deployment` key is an array and holds all the deploymnets in the cluster."},"response":[{"id":"637e5e56-cd98-4f50-ba0b-f538ba156e04","name":"/_renewauth/:cluster_id","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/_renewauth/{{cluster_id}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"276","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 10:11:41 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\",\"code\":201},\"deployment\":[{\"deployment\":\"elasticsearch\",\"url\":\"https://elasticsearch.eaas-raazcrzygmailcom-docs-prepare.bachhra.com/\",\"username\":\"te3iYjqkU\",\"password\":\"d988c5eb-0cc2-4723-a13a-7f9bae15d5d9\",\"https\":true}]}"}],"_postman_id":"e695df57-552c-421f-a6da-a3a06adabca3"},{"name":"/_share/:cluster_id","id":"88b43d10-2ca8-49b5-bcbe-c612cbe2aec4","request":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"pnc.raj@gmail.com\",\n  \"role\": \"viewer\"\n}"},"url":"{{HOST}}/v1/_share/{{CLUSTER_ID}}","description":"This endpoint lets a cluster owner share the cluster with another user. The request body is of type `application/json` and has the following format:\n\n#### Request Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `email`\t| string\t| Email ID of user with whom the cluster will be shared |\n| `role`\t| string\t| Role of user with whom the cluster will be shared. Accepted values: admin, viewer |\n\n\nThis cluster is shared with the user having emailID as `email`. Calling this endpoint also sends an invite to the given emailID.\nThe reponse of this endpoint is of type `application/json` and has the following format:\n\n\n#### Response Body\n\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| it holds a status message conveying request execution status |"},"response":[{"id":"f9126786-ae96-4e51-a0ad-ad48081bf6e1","name":"/_share/:cluster_id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"pnc.raj@gmail.com\",\n  \"role\": \"viewer\"\n}"},"url":"{{host}}/v1/_share/{{cluster_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Fri, 01 Feb 2019 13:57:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Request executed successfully.\"\n    }\n}"}],"_postman_id":"88b43d10-2ca8-49b5-bcbe-c612cbe2aec4"},{"name":"/_share/:cluster_id","id":"6ffe0204-e645-412d-b635-59c43a9d9a4f","request":{"auth":{"type":"noauth"},"method":"GET","header":[],"url":"{{HOST}}/v1/_share/{{CLUSTER_ID}}","description":"This endpoint lists the users who have access to the given cluster. The response is of type `application/json` and has the following format:\n\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n|`users`| []user | IT contains the emailID and role of users having access to the cluster |\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `user.email`\t| string\t| IT contains the emailID  of the user having access to the cluster |\n| `user.role`\t| string\t| IT contains the role  of the user having access to the cluster |"},"response":[{"id":"aae638a6-5aee-4444-b4b1-7c0ac90dbea8","name":"/_share/:cluster_id","originalRequest":{"method":"GET","header":[],"url":"{{host}}/v1/_share/{{cluster_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Fri, 01 Feb 2019 13:00:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"123"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Request executed successfully.\",\n        \"code\": 200\n    },\n    \"users\": [\n        {\n            \"email\": \"raaz.crzy@gmail.com\",\n            \"role\": \"admin\"\n        }\n    ]\n}"}],"_postman_id":"6ffe0204-e645-412d-b635-59c43a9d9a4f"},{"name":"/_share/:cluster_id/:user_email","id":"5715f53c-8ac6-4aa9-8b50-dec443094cb3","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/v1/_share/{{CLUSTER_ID}}/{{USER_EMAIL}}","description":"This endpoint unshares a cluster with a particular user. The repsonse is of type `application/json` and has the following format:\n\n\n#### Response Body\n\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| it holds a status message conveying request execution status |"},"response":[{"id":"bc1bc44d-af94-47bd-97d2-8c60d8ada51a","name":"/_share/:cluster_id/:user_email","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/_share/{{cluster_id}}/{{user_email}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"55","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 10:24:46 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\"}}"},{"id":"e57aec82-4f1d-4a4e-be49-08cecde01d52","name":"/_share/:cluster_id/:user_email","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/_share/{{cluster_id}}/{{user_email}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"55","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 10:24:46 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\"}}"}],"_postman_id":"5715f53c-8ac6-4aa9-8b50-dec443094cb3"},{"name":"/_delete/:cluster_id/:deployment_name","id":"0587a4d4-b9e7-4e88-9601-3ff7fde89438","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/v1/_delete/{{CLUSTER_ID}}/{{DEPLOYMENT_NAME}}","description":"This endpoint deletes a particular deployment from the cluster. However `elasticsearch` deployment deletion is not permitted. The reponse is of type `application/json` and has the following format:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n|`deployment`| string | It conveys the status of resource deletion |"},"response":[{"id":"78f1d8fd-f570-4abf-bc7b-2a9c6c54135d","name":"/v1/_delete/:cluster_id/:deployment_name","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/_delete/{{cluster_id}}/{{deployment_name}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"98","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 14 May 2018 09:57:21 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyNjI4MTQ3OHxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fNWJNxmaUBPL2TYqs9cJS0kGsirqg9UqeozUB9EC2qL3","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\",\"code\":200},\"deployment\":\"Resource Deleted\"}"}],"_postman_id":"0587a4d4-b9e7-4e88-9601-3ff7fde89438"},{"name":"/_delete/:cluster_id","id":"8bcd6f77-2eeb-4b8e-9b9c-310f88af28e3","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/v1/_delete/{{CLUSTER_ID}}","description":"This endpoint deletes the whole cluster. The reponse is of type `application/json` and has the following format:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n|`deployment`| string | It conveys the status of cluster deletion |"},"response":[{"id":"e8808ed4-7de1-47fb-bfe9-f468a9e3caab","name":"/_delete/:cluster_id","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/_delete/{{cluster_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"91","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 21 Aug 2018 11:54:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDc1MDU0M3xOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fAhGm-9JoQZiLSVG6BZECKH86WEfz2iIeS4c_ArltPPu","key":"appbase_accapi"}],"responseTime":null,"body":"{\"status\":{\"message\":\"Request executed successfully.\",\"code\":200},\"deployment\":\"delInProg\"}"}],"_postman_id":"8bcd6f77-2eeb-4b8e-9b9c-310f88af28e3"},{"name":"/_scale/:cluster_id/elasticsearch/nodecount","id":"f8e62267-c53d-42d0-be32-53b9bc85ee6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"node_count\": 3\n}"},"url":"{{HOST}}/v1/_scale/{{CLUSTER_ID}}/elasticsearch/nodecount","description":"This endpoint allows to increase/decrease the number of nodes for elasticsearch. The request body is of type `application/json`.\n\n### Request Body\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `node`\t| integer\t| It represents the number of elasticsearch nodes the user wants |\n\n\n\nThe response body of this endpoint is of type `application/json`:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| Server scaling started |"},"response":[{"id":"d57b12c4-c8b0-4508-942c-543b415fcafa","name":"/_scale/:clusterName/elasticsearch/nodecount","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"node_count\": 3\n}"},"url":"{{host}}/v1/_scale/{{cluster_id}}/elasticsearch/nodecount"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Fri, 23 Nov 2018 09:23:23 GMT"},{"key":"Content-Length","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Server scaling started\",\n        \"code\": 202\n    }\n}"}],"_postman_id":"f8e62267-c53d-42d0-be32-53b9bc85ee6b"},{"name":"/snapshots/:cluster_id/repository/:cluster_id_to _restore_from","id":"15db54a2-d9e5-4910-a8a7-979d526b7c72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"email","value":"raaz.crzy@gmail.com","type":"text","disabled":true}],"url":"{{HOST}}/v1/snapshots/{{CLUSTER_ID}}/repository/{{CLUSTER_ID_TO_RESTORE_FROM}}","description":"This endpoint can be used to list down all the availbale snapshots from a cluster. The snapshot id from the response can be used to restore to a another cluster.\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `status.message`\t| string\t| It represents the status message of the request execution |\n| `status.code`\t| integer\t| It represents the http status code of response |\n| `snapshots[].duration`| string\t| Time taken to create the snapshot |\n| `snapshots[].end_epoch` | string | Timestamp when snapshot creation finished (epoch format) |\n| `snapshots[].end_time` | string | Timestamp when snapshot creation finished (24 hour format) |\n| `snapshots[].id` | string | Snapshot ID |\n| `snapshots[].indices`\t| string | Number of indices whose snaphot got created |\n| `snapshots[].start_epoch`\t| string | Timestamp when snapshot creation started (epoch format) |\n| `snapshots[].start_time` | string | Timestamp when snapshot creation started (24 hour format) |\n| `snapshots[].status` | string | It denotes whether the snapshot got created successfuly|\n| `snapshots[].successful_shards` | string | Total number of successful shards |\n| `snapshots[].total_shards` | string | Total number of shards |"},"response":[{"id":"8f59802a-a717-453a-92f6-70f6c88df6c9","name":"/snapshots/:cluster_id/repository/:cluster_id_to _restore_from","originalRequest":{"method":"GET","header":[{"key":"email","value":"raaz.crzy@gmail.com","type":"text","disabled":true}],"url":"{{host}}/v1/snapshots/ukQmqvu/repository/vMM5ga2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Wed, 27 Feb 2019 07:57:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"Request executed successfully.\",\n        \"code\": 200\n    },\n    \"snapshots\": [\n        {\n            \"duration\": \"17s\",\n            \"end_epoch\": \"1550620832\",\n            \"end_time\": \"00:00:32\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1550620815\",\n            \"indices\": \"14\",\n            \"start_epoch\": \"1550620815\",\n            \"start_time\": \"00:00:15\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"38\",\n            \"total_shards\": \"38\"\n        },\n        {\n            \"duration\": \"12.5s\",\n            \"end_epoch\": \"1550707220\",\n            \"end_time\": \"00:00:20\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1550707207\",\n            \"indices\": \"14\",\n            \"start_epoch\": \"1550707208\",\n            \"start_time\": \"00:00:08\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"38\",\n            \"total_shards\": \"38\"\n        },\n        {\n            \"duration\": \"35.1s\",\n            \"end_epoch\": \"1550793641\",\n            \"end_time\": \"00:00:41\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1550793606\",\n            \"indices\": \"13\",\n            \"start_epoch\": \"1550793606\",\n            \"start_time\": \"00:00:06\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"29\",\n            \"total_shards\": \"29\"\n        },\n        {\n            \"duration\": \"10.3s\",\n            \"end_epoch\": \"1550880021\",\n            \"end_time\": \"00:00:21\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1550880010\",\n            \"indices\": \"13\",\n            \"start_epoch\": \"1550880010\",\n            \"start_time\": \"00:00:10\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"29\",\n            \"total_shards\": \"29\"\n        },\n        {\n            \"duration\": \"10.6s\",\n            \"end_epoch\": \"1550966415\",\n            \"end_time\": \"00:00:15\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1550966404\",\n            \"indices\": \"13\",\n            \"start_epoch\": \"1550966405\",\n            \"start_time\": \"00:00:05\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"29\",\n            \"total_shards\": \"29\"\n        },\n        {\n            \"duration\": \"10s\",\n            \"end_epoch\": \"1551052814\",\n            \"end_time\": \"00:00:14\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1551052803\",\n            \"indices\": \"13\",\n            \"start_epoch\": \"1551052804\",\n            \"start_time\": \"00:00:04\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"29\",\n            \"total_shards\": \"29\"\n        },\n        {\n            \"duration\": \"11.6s\",\n            \"end_epoch\": \"1551139219\",\n            \"end_time\": \"00:00:19\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1551139207\",\n            \"indices\": \"13\",\n            \"start_epoch\": \"1551139208\",\n            \"start_time\": \"00:00:08\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"29\",\n            \"total_shards\": \"29\"\n        },\n        {\n            \"duration\": \"10.2s\",\n            \"end_epoch\": \"1551225620\",\n            \"end_time\": \"00:00:20\",\n            \"failed_shards\": \"0\",\n            \"id\": \"1551225610\",\n            \"indices\": \"13\",\n            \"start_epoch\": \"1551225610\",\n            \"start_time\": \"00:00:10\",\n            \"status\": \"SUCCESS\",\n            \"successful_shards\": \"29\",\n            \"total_shards\": \"29\"\n        }\n    ]\n}"}],"_postman_id":"15db54a2-d9e5-4910-a8a7-979d526b7c72"},{"name":"/restore/:cluster_id/repository/:cluster_id_to_restore_from","id":"96bd19b4-fc6a-4df1-8f14-86e7b35475bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"email","type":"text","value":"raaz.crzy@gmail.com","disabled":true}],"body":{"mode":"raw","raw":"{\n\t\"snapshot_id\": \"1551225610\"\n}"},"url":"{{HOST}}/v1/restore/{{CLUSTER_ID}}/repository/{{CLUSTER_ID_TO_RESTORE_FROM}}","description":"This endpoint can be used to restore a particular snapshot from one cluster to another cluster. The expected request body is type `application/json`.\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n|snapshot_id|string|This is the snapshot id which will be restored to the cluster. REQUIRED|\n|indices|string|A comma seperated list of indices to restore. By default all indices from the snapshot will be restored. OPTIONAL|\n|rename_pattern|string|Rename indices on restore using regular expression that supports referencing the original text. OPTIONAL|\n|rename_replacement|string|Rename indices on restore using regular expression that supports referencing the original text. OPTIONAL|\n\n\nA success response will have the status 200 with the following JSON body:\n\n\n```\n{\n    \"status\": {\n        \"message\": \"snapshot restored.\",\n        \"code\": 200\n    }\n}\n```"},"response":[{"id":"d632575d-fd17-49c9-8cef-170e8f9f78a0","name":"/restore/: cluster_id/repository/: cluster_id_to_restore_from","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"snapshot_id\": \"1551225610\"\n}"},"url":"{{host}}/v1/restore/{{cluster_id}}/repository/{{cluster_id_to_restore_from}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Wed, 27 Feb 2019 07:58:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"100"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {\n        \"message\": \"snapshot restored.\",\n        \"code\": 200\n    }\n}"}],"_postman_id":"96bd19b4-fc6a-4df1-8f14-86e7b35475bd"}],"id":"406e2612-a6be-457c-b116-cac5d6ae085e","description":"Documentation for cluster (EaaS) related CRUD endpoints of Accounts API.","event":[{"listen":"prerequest","script":{"id":"6882e479-32de-4d50-846c-1fa9ab1fa54c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9f898cdf-2a8f-4bfd-a524-381939ba1895","type":"text/javascript","exec":[""]}}],"_postman_id":"406e2612-a6be-457c-b116-cac5d6ae085e"},{"name":"reactiveapp","item":[{"name":"/reactiveapp","id":"6ca624d4-20b1-458a-bbd3-0e0e511de695","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{HOST}}/reactiveapp/","description":"This endpoint creates a new reactive app. The request body should be empty. This endpoint will create a new reactive app and return it in the response. If the user already has a reactive app then it will return a status code of 400 along with the existing reactive app.\n\nThe response body is of type `application/json` and has the following format:\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `message`\t| string\t| It represents the status message of the request execution |\n| `body.id`\t| integer\t| It is the reactive app ID |\n|`reactiveAppName`| string | It contains the reactive app name |"},"response":[{"id":"94fcd6c1-26bd-4fff-8aa9-01f11d464c95","name":"/reactiveapp","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":""},"url":"{{host}}/reactiveapp/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"72","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 16:41:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDIzOTgwOXxOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fKfzBNq09u_MSNQKc8fC9aRmpMemmBwGd4ARWHP5a7Sg","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"id\":4,\"reactiveAppName\":\"k3lHP6uqn\"},\"message\":\"App Created\"}\n"},{"id":"db0f4cba-fcb3-49c4-ac18-470b171ed4ac","name":"/reactiveapp","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":""},"url":"{{host}}/reactiveapp/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"85","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 16:39:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDIzOTgwOXxOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fKfzBNq09u_MSNQKc8fC9aRmpMemmBwGd4ARWHP5a7Sg","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"reactiveAppName\":\"react201\"},\"message\":\"User already has a reactive app.\"}\n"}],"_postman_id":"6ca624d4-20b1-458a-bbd3-0e0e511de695"},{"name":"/reactiveapp/:app_name","id":"65bde48b-f1e2-43fd-b2a2-c5e18d1120a5","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{HOST}}/reactiveapp/{{REACTIVE_APP_NAME}}","description":"This endpoint fetches the details of the reactive app. The response body is of type `application/json` and has the following format:\n\nThe response body is of type `application/json` and has the following format:\n\n\n#### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `body.appConfig`\t| object\t| It contains the config passed while creating the reactive app |\n|`body.appname`| string | It contains the reactive app name |\n| `body.created_at`\t| string\t| It contains the timestamp of reactive app creation |\n| `body.owner`\t| string\t| It contains the email ID of reactive app creator |"},"response":[{"id":"7ccb48c2-fb45-4b94-8f2d-a9605dab5b63","name":"/reactiveapp/:app_name","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"url":"{{host}}/reactiveapp/{{reactive_app_name}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"177","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 16:34:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDIzOTgwOXxOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fKfzBNq09u_MSNQKc8fC9aRmpMemmBwGd4ARWHP5a7Sg","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"appConfig\":{\"name\":\"reactive app 201\"},\"appname\":\"react201\",\"created_at\":\"2018-08-15T14:59:25.8099054Z\",\"owner\":\"raaz.crzy@gmail.com\"},\"message\":\"Found Reactive App\"}\n"}],"_postman_id":"65bde48b-f1e2-43fd-b2a2-c5e18d1120a5"},{"name":"/reactiveapp/:app_name/preferences","id":"7cf50df0-a010-4a43-bde4-22d197811235","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"reactive app 201\"\n}"},"url":"{{HOST}}/reactiveapp/{{REACTIVE_APP_NAME}}/preferences","description":"This endpoint creates a new reactive app. The body can have any valid JSON object."},"response":[{"id":"d5d6e443-5a87-4c7d-ab8e-791ca12e25c8","name":"/reactiveapp/:appname","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"reactive app 201\"\n}"},"url":"{{host}}/reactiveapp/{{reactive_app_name}}/preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"71","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 14:56:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDIzOTgwOXxOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fKfzBNq09u_MSNQKc8fC9aRmpMemmBwGd4ARWHP5a7Sg","key":"appbase_accapi"}],"responseTime":null,"body":"{\"body\":{\"id\":2,\"reactiveAppName\":\"react201\"},\"message\":\"App Created\"}\n"}],"_postman_id":"7cf50df0-a010-4a43-bde4-22d197811235"},{"name":"/reactiveapp/:app_name/preferences","id":"c1fc9b45-e2c2-4313-8d36-977cebd122b8","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{HOST}}/reactiveapp/{{REACTIVE_APP_NAME}}/preferences","description":"This endpoint retrieves the preferencesof a reactive app. The response body is a JSON object which has been set via PUT /:reactiveapp/:app_name/preferences endpoint."},"response":[],"_postman_id":"c1fc9b45-e2c2-4313-8d36-977cebd122b8"},{"name":"/reactiveapp/:reactive_app_name","id":"e0d1e88a-0b2c-48ac-8560-525c24494fc7","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/reactiveapp/{{REACTIVE_APP_NAME}}","description":"The endpoint can be used to delete a reactive app.\n\n### Response Body\n\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `message`\t| string\t| App Deleted |"},"response":[{"id":"99e8bb3b-6b0d-40e1-99c3-4a101ae0cc4c","name":"/reactiveapp/:app_name","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/reactiveapp/{{reactive_app_name}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"26","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 15 Aug 2018 16:40:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.11.3","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains; preload","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"bottleneck.io","path":"/","secure":false,"value":"MTUzNDIzOTgwOXxOd3dBTkU1SFIxTlVVVE5PUlVoV1dsVklSVTlXU2tOVFVsVkxXa1pJVUZFMVRUTTNVVWxLV2xwTE5GbE5SalpOVWxwUE5GTlJWRUU9fKfzBNq09u_MSNQKc8fC9aRmpMemmBwGd4ARWHP5a7Sg","key":"appbase_accapi"}],"responseTime":null,"body":"{\"message\":\"App Deleted\"}\n"}],"_postman_id":"e0d1e88a-0b2c-48ac-8560-525c24494fc7"}],"id":"95090b22-cb6a-4ecc-94b6-573a86e8e240","_postman_id":"95090b22-cb6a-4ecc-94b6-573a86e8e240"},{"name":"Arc","item":[{"name":"/arc/instance","id":"c9f09068-e4f4-404b-8cda-4c2465cf62a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"raaz.crzy@gmail.com\",\n\t\"node_count\": 3,\n\t\"description\": \"this deployment is for testing\"\n}"},"url":"{{host}}/arc/instance","description":"This endpoint can be used to get arcID which is needed to deploy arc instance on-premise. The endpoint saves email and associates the arcID with it. The generated arcID is also needed to create a subscription. This comes with a 14 days trial period which gets over as soon as a paid subscription is created against it or when the trial expires. The initial request will trigger email verification through OTP. A second request with same parameters needs to be made with the OTP in the request body.\n\n#### Request Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `email`\t| string\t| Email ID of user who created the ARC instance (REQUIRED)|\n| `node_count`\t| string\t| node count of the elasticsearch cluster (OPTIONAL)|\n|`description`| string\t|\tCan be used to store additional information by the user about this particular deployment. (OPTIONAL)\t|\n|`otp`| string | Required to authenticate the request|\n\nOn successful execution of request status code 201 is returned along with the following response body.\n### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `message`\t| string\t| It holds a status message conveying request execution status|\n|`arc_id`| string\t| This will contain the unique ID of the arc deployment. This ID is needed to paas as an environment variable to deploy arc\t|"},"response":[{"id":"f74a837c-b204-4a4f-8c26-14584a97b5cc","name":"/arc/instance","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"raaz.crzy@gmail.com\",\n\t\"node_count\": 3,\n\t\"description\": \"this deployment is for testing\"\n}","options":{"raw":{"language":"json"}}},"url":"{{HOST}}/arc/instance"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Sun, 14 Apr 2019 08:38:01 GMT"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"19"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT,  OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n\t\"message\": \"request executed successfully.\",\n\t\"arc_id\": \"8cc0e2cb-1a36-4249-92a6-782282dbd25b\"\n}"}],"_postman_id":"c9f09068-e4f4-404b-8cda-4c2465cf62a2"},{"name":"/arc/instances","id":"2cc15c19-7178-47a3-8bd6-937c2a2173f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"{{host}}/arc/instances?arcid={{ARC_ID}}","host":["{{host}}"],"path":["arc","instances"],"query":[{"key":"arcid","value":"{{ARC_ID}}","description":"Arc Instance Id"},{"key":"email","value":"{{EMAIL}}","description":"User email","type":"text","disabled":true}]},"description":"This endpoint can be used to fetch all arc instances created by a user. The endpoint needs the email of the user in the URL.\n\n### Query Params:\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `email`\t| string\t| user email|\n|`arcid`| string | arc instance id |\n\n### Response Body:\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `message`\t| string\t| It holds a status message conveying request execution status|\n|`instances`| []arc_object| This array of arc objects contains the details of every arc instance of the user|\n\n### arc_object\n\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `node_count`\t| int\t| The number of elasticsearch nodes which will be used by the arc|\n|`description`| string| Additional information by the user about this particular deployment|\n|`subscription_id`|string|The subscription ID of this instance|\n|`subscription_canceled`|boolean|Denotes if the subscription has been marked to get cancelled at billing cycle end|\n|`trial`|boolean|True, if the instance is still in trial period|\n|`trial_validity`|int|the trial vlaidty timestamp (in epoch)|\n|`arc_id`|string|The unique ID of this instance|\n|`created_at`|int|The timestamp when this instance was registered (in epoch)|\n|`tier`| string | tier (plan) to which arc is subscribed |\n|`tier_validity`| int | validity of tier (in epoch)|\n|`metadata`| json | metadata for this arc instance |"},"response":[{"id":"183e5a68-6917-406c-8a68-6e5585fcc536","name":"/arc/instances?arcid=8cc0e2cb-1a36-4249-92a6-782282dbd25b","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{HOST}}/arc/instances?arcid={{ARC_ID}}","host":["{{HOST}}"],"path":["arc","instances"],"query":[{"key":"arcid","value":"{{ARC_ID}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.6"},{"key":"Date","value":"Sun, 14 Apr 2019 08:49:10 GMT"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"19"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n\t\"message\": \"successfuly fetched details\",\n\t\"instances\": [\n\t\t{\n\t\t\t\"node_count\": 3,\n\t\t\t\"description\": \"this deployment is for testing\",\n\t\t\t\"subscription_id\": \"\",\n\t\t\t\"trial\": true,\n\t\t\t\"trial_validity\": 1556441509,\n\t\t\t\"arc_id\": \"8cc0e2cb-1a36-4249-92a6-782282dbd25b\",\n\t\t\t\"created_at\": 1555231909\n\t\t}\n\t]\n}"}],"_postman_id":"2cc15c19-7178-47a3-8bd6-937c2a2173f0"},{"name":"/arc/:arcid/subscription","id":"218ef94a-1165-4744-bb24-43188fb9a7ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/arc/{{ARC_ID}}/subscription","description":"This endpoint creates a subscription for an arc instance. The request body passed should be the stripe token along with the email id of the user.\n\n### Request Body:\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `user`\t| string\t| The email ID of the user (REQUIRED)|\n|`token`| object\t| The stripe token recieved after stripe\t|\n\n### Resposne Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `message`\t| string\t| It holds a status message conveying request execution status|\n|`stripe`| object\t| The stripe object recieved after creating the subscription. The subscription Id can be fetched from path `stripe.Items.Data[0].ID`|"},"response":[],"_postman_id":"218ef94a-1165-4744-bb24-43188fb9a7ef"},{"name":"/arc/:arc_id/report_usage","id":"2da79218-e3f7-48cc-87f9-ae6f03192038","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{host}}/arc/{{ARC_ID}}/report_usage","description":"This endpoint will be used by arc backend to report usage to accapi.\n\n### Request Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `arc_id`\t| string\t| This will contain the unique ID of the arc deployment (REQUIRED)|\n| `timestamp`\t| int\t| The timestamp when this usage was calculated (in epoch) (REQUIRED)|\n|`subscription_id`| string\t| The subscription ID of this arc deployment (OPTIONAL)\t|\n|`quantity`|int|The number of units (usage) to be added in existing usage|\n|`email`|string|The registered email of user|\n\n### Response Body\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `accepted`\t| boolean\t| This denotes whether this usage report was accepted|\n| `failure_reason`\t| string\t| This will contain error message due to which the request could not be executed|\n|`error_msg`| string\t| Error message saying why this request was rejected |\n|`warning_msg`|string|Warning messages, if any like trial expiry approaching|\n|`status_code`|int|HTTP status code|"},"response":[],"_postman_id":"2da79218-e3f7-48cc-87f9-ae6f03192038"},{"name":"/arc/:arc_id/metadata","id":"bfc3d564-0b62-450d-a41c-222571abf733","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{host}}/arc/{{ARC_ID}}/metadata","description":"This endpoint can be used to put metadata into an existing arc subscription/instance. The request body is of type `application/json`. Any valid JSON can be passed to this endpoint. The metadata can be fetched using `GET /arc/instance/:email` endpoint.\n\n### Response Body:\n\n| Field \t\t| Type\t\t| Description |\n|---------------|-----------|-------------|\n| `message`\t| string\t| It holds a status message conveying request execution status|\n|`metadata`| json| It holds the JSON that got stored as metadata|"},"response":[],"_postman_id":"bfc3d564-0b62-450d-a41c-222571abf733"},{"name":"/arc/:arc_id/subscriptoin","id":"cd76b882-f012-4d05-bfb3-7166f8c65e47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{host}}/arc/{{ARC_ID}}/subscription","description":"This endpoint will delete the arc subscription. When requesting the deletion, an OTP will be generated and sent to the owner's emailID. A second request needs to be made with the OTP to confirm deletion.\n\n### Request Body\n\n|Field| Type | Description |\n|-----|------|-------------|\n|`otp`| string | otp to confirm deletion (required to authenticate the request)|\n\n### Response Body\n\nUpon successful processing of the request the backend will send back a status code `200` with the following request body:\n\n|Field| Type | Description |\n|-----|------|-------------|\n|`message`| string | text message confirming deletion of the subscription |"},"response":[],"_postman_id":"cd76b882-f012-4d05-bfb3-7166f8c65e47"},{"name":"/arc/:arcid/cache_preferences","id":"c0acd490-d61e-43f2-9eeb-8bf65cb62259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"enable_cache\": true,\n    \"max_size\": 500,\n    \"max_duration\": 300,\n    \"indices\": [\n        \"*\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/arc/{{ARC_ID}}/cache_preferences"},"response":[{"id":"2c616d3a-ab79-40e4-b183-32c3111b80f5","name":"200 Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"enable_cache\": true,\n    \"max_size\": 500,\n    \"max_duration\": 300,\n    \"indices\": [\n        \"*\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/arc/{{ARC_ID}}/cache_preferences"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c0acd490-d61e-43f2-9eeb-8bf65cb62259"},{"name":"/arc/:arcid/evict_cache","id":"ca808c0c-0fa5-4ea5-9bce-00d531cfc5ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"// same as body for single node","options":{"raw":{"language":"json"}}},"url":"{{host}}/arc/{{ARC_ID}}/evict_cache"},"response":[{"id":"0e55568d-2e84-4a11-9dee-05f4be5edd25","name":"200 Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"enable_cache\": true,\n    \"max_size\": 500,\n    \"max_duration\": 300,\n    \"indices\": [\n        \"*\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/arc/{{ARC_ID}}/evict_cache"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ca808c0c-0fa5-4ea5-9bce-00d531cfc5ca"}],"id":"0f7fe857-667b-40ac-afe2-58f4ed9ed9fa","description":"This folder contains endpoints for arc subscriptions","auth":{"type":"noauth"},"_postman_id":"0f7fe857-667b-40ac-afe2-58f4ed9ed9fa"},{"name":"/","id":"10a4f650-3c2f-41a6-b540-10107897c224","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://{{host}}","description":"This endpoint simply return http status `200`."},"response":[{"id":"437e1b51-865b-43f7-a51f-13259fcb0e21","name":"/","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{HOST}}/"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"text/plain; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 10:35:02 GMT","name":"Date","description":"The date and time that the message was sent"}],"cookie":[{"expires":"Sat Jul 07 2018 09:17:49 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localhost","path":"/","secure":false,"value":"MTUyODM2MzA3MnxOd3dBTkVsTlVsZFNXRTAzTlVwVFRWaFRSRWhOV0VKQlR6ZENNa2RPVFRKYVZUSldSek5YVTBGUk5sVlJVa2MwTWxSUFExWTBUMUU9fAXTc5ayIc5pgnVsf0I5xHqFBku25fGFl2MaCPkPe5CH","key":"appbase_accapi"}],"responseTime":null,"body":""}],"_postman_id":"10a4f650-3c2f-41a6-b540-10107897c224"},{"name":"/login/:oauth_provider?next=:host","id":"d7612884-5528-4b26-9c23-0e5f3a105a41","request":{"method":"GET","header":[],"url":{"raw":"https://{{HOST}}/login/:oauth_provider?next=https://{{HOST}}","protocol":"https","host":["{{HOST}}"],"path":["login",":oauth_provider"],"query":[{"key":"next","value":"https://{{HOST}}"}],"variable":[{"key":"oauth_provider","value":""}]},"description":"This endpoint can be used to login into [appbase.io](https://appbase.io). Currently, we support only `google`, `github` and `gitlab` oauth providers. Users need to provide allow `appbase` to access their profile details by logging through either of the providers."},"response":[],"_postman_id":"d7612884-5528-4b26-9c23-0e5f3a105a41"}],"auth":{"type":"basic","basic":{"password":"{{app_password}}","username":"{{app_username}}"}},"event":[{"listen":"prerequest","script":{"id":"81cc77ef-9bca-43a8-b102-af3d24978107","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"86a5ea75-38a2-47b2-93d0-6bdea6323002","type":"text/javascript","exec":[""]}}]}