{"info":{"_postman_id":"39107aed-6043-4545-b59a-da020553b654","name":"Public APIs for The Entertainer Business [AF]","description":"<html><head></head><body><p>This API provides access to The ENTERTAINER public Business APIs.</p>\n<h1 id=\"overview\">Overview</h1>\n<p>To access these APIs, you need the following information:</p>\n<ul>\n<li>Company Code <code>company</code> (Upto 5-character alphanumeric code)</li>\n<li>API Token <code>api_token</code></li>\n<li>Security Key - (your-256-bit-secret) Use to verify the JWT Signature</li>\n</ul>\n<p>In order to get this information you need to contact The ENTERTAINER customer support and this information will be provided via email.</p>\n<h1 id=\"base-url\">Base URL</h1>\n<p><code>theentertainerme.com/api_ets</code></p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>API uses JWT-based authentication. For more detail about JWT please visit <a href=\"https://jwt.io/\">https://jwt.io/</a>. JWT token should be provided as <b>Bearer Token</b>. JWT header will be:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \n    \"alg\": \"HS256\",\n    \"typ\": \"JWT\"\n}\n\n</code></pre>\n<h2 id=\"jwt-payloads\">JWT Payloads</h2>\n<ol>\n<li>CompanyAPI - Can be accessed without public user</li>\n<li>UserAPI - Required user login to access</li>\n</ol>\n<h3 id=\"companyapi-jwt-payload-jwt-public\">CompanyAPI JWT Payload {{jwt-public}}</h3>\n<p>These are the open APIs that required no user login. These APIs are used to perform operations that are prior to user login. E.g. Create New User, and log in as a user. APIs include:</p>\n<ol>\n<li>Signup API (user/signup)</li>\n<li>Sign in API (user/login)</li>\n<li>Validate (user/validates)</li>\n</ol>\n<p>These APIs required the following JWT Payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"company\": \"ABCDE\",\n  \"api_token\": \"API-TOKEN-PROVIDED-BY-TheENTERTAINER\"\n}\n\n</code></pre>\n<p><code>company</code> = Company Code provided by The ENTERTAINER</p>\n<p><code>api_token</code> = API Token provided by The ENTERTAINER</p>\n<h3 id=\"userapi-jwt-payload-jwt-user\">UserAPI JWT Payload {{jwt-user}}</h3>\n<p>These are the APIs required for User Login. These API include:</p>\n<ol>\n<li>Redemption (offer/redeem)</li>\n</ol>\n<p>To create JWT tokens for these APIs, the following Payload is required:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"company\": \"ABCDE\",\n  \"api_token\": \"API-TOKEN-PROVIDED-BY-TheENTERTAINER\",\n  \"session_token\": \"GET-SESSION-TOKEN-FROM-LOGIN-RESPONCE\"\n}\n\n</code></pre>\n<p><code>company</code> = Company Code provided by The ENTERTAINER</p>\n<p><code>api_token</code> = API Token provided by The ENTERTAINER</p>\n<p><code>session_token</code> = On successful Signup or Login, provided in API call responce in <code>session_token</code> variable.</p>\n<h3 id=\"hybrid-apis\">Hybrid APIs</h3>\n<p>These APIs can be accessed by both JWT Payloads. Output data from these APIs depend on the login method. Response for both API Payloads will be different. If we use User API Payload, it will provide the response specific to that user.</p>\n<p>API Includes:</p>\n<ol>\n<li>Validate</li>\n<li>Fetch Outlets</li>\n<li>Fetch Merchant Details</li>\n<li>Redemption History</li>\n</ol>\n<h1 id=\"api-call-sequence\">API Call Sequence</h1>\n<p>API call sequence depends on customer requirements this is the generic flow from signup/login to redeem journey.</p>\n<img src=\"https://content.pstmn.io/8fc46480-f5da-429d-a533-e93c50a3db35/YXBpX3NvbHV0aW9uX3NlcXVlbmNlLnBuZw==\"></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Base URL","slug":"base-url"},{"content":"Authentication","slug":"authentication"},{"content":"API Call Sequence","slug":"api-call-sequence"}],"owner":"23667592","collectionId":"39107aed-6043-4545-b59a-da020553b654","publishedId":"2s8ZDSbQmY","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"0067b1"},"publishDate":"2023-01-13T14:05:18.000Z"},"item":[{"name":"01 - Signup new Customer (or User)","id":"0511b484-db60-426b-a775-5c5db860980d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-public}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"00973117111663@afapi.com\",\n    \"password\": \"Aa123456\",\n    \"confirm_password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/signup","description":"<p>This API is used to onboard a new user. This API provides <code>session_token</code> in a success case, therefor saperate sign-in/login will not be required.</p>\n<p>Required body structure is given in following JSON:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"email\": \"johndoe.afapi+test002@gmail.com\",\n  \"password\": \"Aa123456\",\n  \"confirm_password\": \"Aa123456\"\n}\n\n</code></pre><p>If client not want to share the email or personal information of user with 3rd party, can ask for different configurations by contacting our sales team.</p>\n<p><code>session_token</code> from the response is the variable required for JWT Payload for the userAPIs.</p>\n","urlObject":{"protocol":"https","path":["v1","user","signup"],"host":["apiutb2busrsrvrpy","{{base-url}}"],"query":[],"variable":[]}},"response":[{"id":"d64ffb63-c5e1-4692-8684-8c44d2e7bd5f","name":"200 - [Code0] Success with (minimum) required options","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"password\": \"Aa123456\",\n    \"confirm_password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/signup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 08:19:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788cb4d7eb6fd1e4-MCT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": {\n        \"user_id\": 9129255,\n        \"currency\": \"USD\",\n        \"session_token\": \"86255566-93d2-4bcf-b80c-149da9d927fd\",\n        \"device_uid\": null,\n        \"device_os\": null,\n        \"device_model\": null,\n        \"is_demographics_updated\": false,\n        \"user_group\": 1,\n        \"number_of_offers\": 0\n    },\n    \"success\": true,\n    \"code\": 0,\n    \"cmd\": \"/api_ets/v1/user/signup?\",\n    \"http_response\": 200\n}"},{"id":"8eabbfe1-9539-45ef-928e-3e75051d18b7","name":"200 - [Code0] Success with all options","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"password\": \"Aa123456\",\n    \"confirm_password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/signup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Jan 2023 13:39:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"78864cdecd20d1f8-MCT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": {\n        \"user_id\": 9129232,\n        \"currency\": \"USD\",\n        \"session_token\": \"08717807-870c-46a0-8e1b-6dcabd0f85c1\",\n        \"device_uid\": null,\n        \"device_os\": null,\n        \"device_model\": null,\n        \"is_demographics_updated\": false,\n        \"user_group\": 1,\n        \"number_of_offers\": 0\n    },\n    \"success\": true,\n    \"code\": 0,\n    \"cmd\": \"/api_ets/v1/user/signup?\",\n    \"http_response\": 200\n}"},{"id":"15029cb9-6846-4ba3-af36-5f5713a722f9","name":"422 - [Code70] Password did not match","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/signup"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 08:17:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788cb223c9e7d1e4-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"[password] and [confirm_password] did not match.\",\n    \"code\": 70,\n    \"success\": false,\n    \"cmd\": \"/api_ets/v1/user/signup?\",\n    \"http_response\": 422\n}"},{"id":"2b63d416-063b-4951-a8b6-10c22eea567f","name":"422 - [Code70] Required field is missing","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"confirm_password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/signup"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 08:21:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"140"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788cb7fa5a8bd1e4-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Email and password must not be empty.\",\n    \"code\": 70,\n    \"success\": false,\n    \"cmd\": \"/api_ets/v1/user/signup?\",\n    \"http_response\": 422\n}"},{"id":"78be3585-7346-46e1-8efd-7ab4604ab7e8","name":"422 - [Code91] Customer Already Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"password\": \"Aa123456\",\n    \"confirm_password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/signup"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Jan 2023 12:33:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"150"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7885eb919bfcd1cc-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Customer with this email address already exists\",\n    \"code\": 91,\n    \"success\": false,\n    \"cmd\": \"/api_ets/v1/user/signup?\",\n    \"http_response\": 422\n}"}],"_postman_id":"0511b484-db60-426b-a775-5c5db860980d"},{"name":"02 - Signin","id":"7c146f79-2002-4102-b42c-ef031ecdc072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-public}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/login","description":"<p>Sign In call is logically the first call to be made to authenticate the user. If ‘Sign In’ succeeds, please proceed to use the <code>session_token</code> to authenticate user for all further calls.</p>\n<p>If the ‘Sign In’ API call fails, use the ‘Sign Up’ API call to register the user with The Entertainer. If ‘Sign Up’ succeeds at this step, please use the <code>session_token</code> to authenticate the user for all further calls.</p>\n<p><code>session_token</code> from the response is the variable required for JWT Payload for the userAPIs.</p>\n<img src=\"https://content.pstmn.io/03916fa6-8ac4-4024-9f45-de734e50abb0/QVBJIFNvbHV0aW9uLmRyYXdpby5wbmc=\" alt />","urlObject":{"protocol":"https","path":["v1","user","login"],"host":["apiutb2busrsrvrpy","{{base-url}}"],"query":[],"variable":[]}},"response":[{"id":"e4109212-21e7-4025-adab-d62f90092c29","name":"200 - [Code0] Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"password\": \"Aa123456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 11:08:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788dad05bce4de43-MCT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"code\": 0,\n    \"data\": {\n        \"message\": \"\",\n        \"user_id\": 9129272,\n        \"session_token\": \"d2d4f883-4e27-46f3-92e6-388ea10a7cbe\",\n        \"member_type\": 3,\n        \"currency\": \"USD\",\n        \"new_user\": false,\n        \"device_install_token\": null,\n        \"device_uid\": null,\n        \"device_os\": null,\n        \"device_model\": null,\n        \"user_group\": 1,\n        \"user_group_code\": \"\",\n        \"user_group_logo\": \"\",\n        \"number_of_offers\": 0,\n        \"is_demographics_updated\": false\n    },\n    \"cmd\": \"/api_ets/v1/user/login?\",\n    \"http_response\": 200\n}"},{"id":"ab9d77a8-2053-4b04-babe-0755107cd157","name":"422 - [Code70] Invalid Password","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"password\": \"Aa123457\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/login"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 11:11:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"118"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788db0627b02de43-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Invalid Password.\",\n    \"code\": 70,\n    \"cmd\": \"/api_ets/v1/user/login?\",\n    \"http_response\": 422\n}"}],"_postman_id":"7c146f79-2002-4102-b42c-ef031ecdc072"},{"name":"03 - Validate (update user group)","id":"11d57867-5f76-47d9-954d-a00619459c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-public}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"updated_group\":1\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/validates","description":"<p>Default value <code>\"user_group\":1</code></p>\n<h1 id=\"user-group-case-studies\">User Group Case Studies</h1>\n<p>If the customer want to implement some logic for example:</p>\n<ol>\n<li>Unlock offers with user levels, and use this API to change user groups.</li>\n<li>Promo code base unlocking offers.</li>\n<li>Special Signup with a certain condition.</li>\n</ol>\n<p>Contact The ENTERTAINER (TE) sales team and TE setup user groups for customer. That user groups have different number of offers.</p>\n<h3 id=\"example-1-du-promo-code-unlocking\"><b>Example 1</b><strong>: Du Promo Code Unlocking</strong></h3>\n<img src=\"https://content.pstmn.io/a44f6a1d-ee05-453f-8544-9b285d374e57/aW1hZ2UucG5n\" alt height=\"73\" width=\"486\" />\n\n<p>If a user wants to unlock the Du Promo Code offers, the Client app checks the promo code with the desired logic. When the client app validates the promo code, validates API end-point will use to change the user group <code>232</code>. As this user group represents the Du Offers.</p>\n<p>Promo Code Validation logic should be implemented on the customer's app.</p>\n<h3 id=\"example-2-existing-2-for-1-unlocking-logic-for-reference\"><b>Example 2</b><strong>: Existing 2 for 1 unlocking logic (for reference)</strong></h3>\n<ul>\n<li>Level - 0 means: user has not unlocked any offers yet.</li>\n<li>Level - 1 means: user have shopped at 2 participating brands and has unlocked 50 merchants.</li>\n<li>Level - 2 means: user have shopped at 3 participating brands and has unlocked 150 merchants.</li>\n</ul>\n<p>When user signup default value is <code>\"user_group\":1</code> for this configuration, TE setup <strong>Level - 0</strong> with <code>\"user_group\":1</code> When user shopped at 2 places, that need to check at customer's application, customer's system call the validate API to change <code>user_group</code> value with <code>2</code>.</p>\n<p>Detail user groups list will be shared saperetily via email in the file named \"user_group_mapping.pdf\". If you are not able to find the file, please contact to TE Sales team.</p>\n","urlObject":{"protocol":"https","path":["v1","user","validates"],"host":["apiutb2busrsrvrpy","{{base-url}}"],"query":[],"variable":[]}},"response":[{"id":"579dc77e-c16a-4152-a2e0-94c1e5ad7525","name":"200 - [Code0] Success - User Group updated","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"updated_group\":4,\n    \"device_os\": \"ios\",\n    \"device_key\": \"deuihfdknWiuhyr2783yri2uy9238ue35\",\n    \"device_uid\": \"deuihfdknWiuhyr2783yri2uy9238ue35\",\n    \"__platform\": \"ios\",\n    \"language\": \"en\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/validates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 12:22:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788e19954c9bd1dc-MCT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"validation_status\": true,\n        \"is_customer_exists\": true\n    },\n    \"success\": true,\n    \"message\": \"You have successfully activated the key\",\n    \"cmd\": \"/api_ets/v1/user/validates?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"},{"id":"5dfc2da3-f563-4a77-95d0-32ef0cb2efb1","name":"200 - [Code0] User group already updated","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"johndoe.afapi+test001@gmail.com\",\n    \"updated_group\":5\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2busrsrvrpy.{{base-url}}/v1/user/validates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 12:25:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788e1d434cc3d1dc-MCT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"validation_status\": true,\n        \"is_customer_exists\": true\n    },\n    \"success\": true,\n    \"message\": \"User group already updated.\",\n    \"cmd\": \"/api_ets/v1/user/validates?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"}],"_postman_id":"11d57867-5f76-47d9-954d-a00619459c90"},{"name":"04 - Fetch Outlets","id":"b036d31d-feaa-4fd9-b3b3-bc54d77eef1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-user2}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"location_id\": \"11\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2boutsrvrpy.{{base-url}}/v1/outlets","description":"<p>The <code>outlets</code> endpoint is used to list The ENTERTAINER outlets based on multiple filters available in the platform. The required parameter for this API endpoint is <code>location_id</code>. List of location IDs are depend on client configurations. App can fetch the locations form <a href=\"https://documenter.getpostman.com/view/23667592/2s8ZDSbQmY#082814b7-f395-4ad3-bd5b-329e26696b37\">location</a> api endpoint.</p>\n<p>To fetch by Category, you can get the list of all categories from <a href=\"https://documenter.getpostman.com/view/23667592/2s8ZDSbQmY#9aa1aace-83a6-4b06-82c5-708f345060ad\">filter API endpoint</a>.</p>\n<p>Following are the different available filters for outlets listing:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"offset\": 0,\n    \"query\": \"\",\n    \"is_location_enabled\": \"1\",\n    \"search_type\":\"city\",\n    \"billing_city\": \"KSA\",\n    \"category\": \"Restaurants and Bars\",\n    \"lat\": \"-26.1022538\",\n    \"lng\": \"28.0550731\",\n    \"time_zone\": \"KSA\",\n    \"currency\": \"AED\",\n    \"language\": \"en\",\n    \"location_id\": \"18\",\n    \"cuisine_filter\": \"\",\n    \"sub_category_filter\": \"Fine Dining\",\n    \"is_redeemable\": true,\n    \"sort_by\": \"nearby\",\n    \"limit\": 60\n}\n\n</code></pre>\n<p>Client can impleming the required filters to fetch results.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>offset variable is used to tell the starting points of records. If you fetch the records with offset 0 and fetch 60 records. For the next page, you use offset value 61 to start fetching records from 61 onwards till the limit.</p>\n","urlObject":{"protocol":"https","path":["v1","outlets"],"host":["apiutb2boutsrvrpy","{{base-url}}"],"query":[],"variable":[]}},"response":[{"id":"09876f81-3506-4d0d-a40d-a8c7e40fe9c1","name":"200 - [Code0] Success with (minimum) required options","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"location_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2boutsrvrpy.{{base-url}}/v2/outlets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 11:43:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1518"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788ddf8b4e49d1e8-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"is_fuzzy_search_results\": false,\n        \"is_fuzzy_server_down\": false,\n        \"limit\": 60,\n        \"total_records\": 9,\n        \"search_results\": [],\n        \"featured_merchants\": [],\n        \"outlets\": [\n            {\n                \"id\": 84754,\n                \"sfId\": \"O23897453\",\n                \"name\": \"Dubai Festival City\",\n                \"email\": null,\n                \"lat\": 25.221022,\n                \"lng\": 55.353954,\n                \"human_location\": \"Opposite to VIP Mall Valet Parking - Crescent Dr\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Festival City\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"maison lutetia\",\n                \"merchant\": {\n                    \"id\": 49344,\n                    \"name\": \"Maison Lutetia\",\n                    \"name_for_outlet\": \"Maison Lutetia\",\n                    \"description\": \"\",\n                    \"category\": \"Body\",\n                    \"categories\": [\n                        \"Body\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"BF\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28non-retina%29_-_merchant2020032501035.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28retina%29202002161324.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28non-retina%29202002161324.jpg\",\n                    \"digital_section\": \"Beauty, Hair & Nails\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 3,\n                \"top_offer_type\": 2,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": true,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Body\"\n                ],\n                \"sub_categories\": [\n                    \"Beauty, Hair & Nails\"\n                ],\n                \"merchant_categories\": [\n                    \"Body\"\n                ],\n                \"merchant_categories_analytics\": \"BF\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"https://b2cappassetscdn.theentertainerme.com/icons/badge_monthly.png\"\n                    },\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45784,\n                \"sfId\": \"O23652681\",\n                \"name\": \"The Dubai Mall\",\n                \"email\": null,\n                \"lat\": 25.197489,\n                \"lng\": 55.280369,\n                \"human_location\": \"Next to Galleria Lafayette, Unit No GF-196\",\n                \"neighborhood\": null,\n                \"mall\": \"The Dubai Mall\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45787,\n                \"sfId\": \"O23654437\",\n                \"name\": \"Mall of the Emirates\",\n                \"email\": null,\n                \"lat\": 25.118141,\n                \"lng\": 55.200607,\n                \"human_location\": \"Ground Level, Opposite Centerpoint\",\n                \"neighborhood\": null,\n                \"mall\": \"Mall of the Emirates\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45790,\n                \"sfId\": \"O23654438\",\n                \"name\": \"BurJuman\",\n                \"email\": null,\n                \"lat\": 25.253267,\n                \"lng\": 55.302464,\n                \"human_location\": \"1st Level, Opposite Splash\",\n                \"neighborhood\": null,\n                \"mall\": \"BurJuman\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45796,\n                \"sfId\": \"O23654440\",\n                \"name\": \"Dubai Outlet Mall\",\n                \"email\": null,\n                \"lat\": 25.072496,\n                \"lng\": 55.400509,\n                \"human_location\": \"Ground Level, Shop No. GFG93\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Outlet Mall\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45811,\n                \"sfId\": \"O23654476\",\n                \"name\": \"Ajman City Centre\",\n                \"email\": null,\n                \"lat\": 25.399368,\n                \"lng\": 55.478683,\n                \"human_location\": \"Ground Level, Store A11\",\n                \"neighborhood\": null,\n                \"mall\": \"City Centre Ajman\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 46626,\n                \"sfId\": \"O23680233\",\n                \"name\": \"Deira City Centre, AFWJ\",\n                \"email\": null,\n                \"lat\": 25.251968,\n                \"lng\": 55.332821,\n                \"human_location\": \"1st Level, Near Carrefour\",\n                \"neighborhood\": null,\n                \"mall\": \"City Centre Deira\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 46629,\n                \"sfId\": \"O23680234\",\n                \"name\": \"Dubai Festival City, AFWJ\",\n                \"email\": null,\n                \"lat\": 25.223507,\n                \"lng\": 55.350712,\n                \"human_location\": \"1st Level, Near Carrefour\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Festival City\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 89974,\n                \"sfId\": \"O23901578\",\n                \"name\": \"Web Store\",\n                \"email\": null,\n                \"lat\": 25.223507,\n                \"lng\": 55.350712,\n                \"human_location\": \"Web Store\",\n                \"neighborhood\": null,\n                \"mall\": null,\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"cmd\": \"/api_ets/v2/outlets?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"},{"id":"0812f2a6-6084-4e59-92f7-eb5df7a37b7a","name":"200 - [Code0] Success with pagination variables","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"location_id\": 1,\n    \"offset\":0,\n    \"limit\":60\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2boutsrvrpy.{{base-url}}/v2/outlets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 11:44:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1518"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788de1fac8d7d1e8-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"is_fuzzy_search_results\": false,\n        \"is_fuzzy_server_down\": false,\n        \"limit\": 60,\n        \"total_records\": 9,\n        \"search_results\": [],\n        \"featured_merchants\": [],\n        \"outlets\": [\n            {\n                \"id\": 84754,\n                \"sfId\": \"O23897453\",\n                \"name\": \"Dubai Festival City\",\n                \"email\": null,\n                \"lat\": 25.221022,\n                \"lng\": 55.353954,\n                \"human_location\": \"Opposite to VIP Mall Valet Parking - Crescent Dr\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Festival City\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"maison lutetia\",\n                \"merchant\": {\n                    \"id\": 49344,\n                    \"name\": \"Maison Lutetia\",\n                    \"name_for_outlet\": \"Maison Lutetia\",\n                    \"description\": \"\",\n                    \"category\": \"Body\",\n                    \"categories\": [\n                        \"Body\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"BF\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28non-retina%29_-_merchant2020032501035.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28retina%29202002161324.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28non-retina%29202002161324.jpg\",\n                    \"digital_section\": \"Beauty, Hair & Nails\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 3,\n                \"top_offer_type\": 2,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": true,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Body\"\n                ],\n                \"sub_categories\": [\n                    \"Beauty, Hair & Nails\"\n                ],\n                \"merchant_categories\": [\n                    \"Body\"\n                ],\n                \"merchant_categories_analytics\": \"BF\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"https://b2cappassetscdn.theentertainerme.com/icons/badge_monthly.png\"\n                    },\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45784,\n                \"sfId\": \"O23652681\",\n                \"name\": \"The Dubai Mall\",\n                \"email\": null,\n                \"lat\": 25.197489,\n                \"lng\": 55.280369,\n                \"human_location\": \"Next to Galleria Lafayette, Unit No GF-196\",\n                \"neighborhood\": null,\n                \"mall\": \"The Dubai Mall\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45787,\n                \"sfId\": \"O23654437\",\n                \"name\": \"Mall of the Emirates\",\n                \"email\": null,\n                \"lat\": 25.118141,\n                \"lng\": 55.200607,\n                \"human_location\": \"Ground Level, Opposite Centerpoint\",\n                \"neighborhood\": null,\n                \"mall\": \"Mall of the Emirates\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45790,\n                \"sfId\": \"O23654438\",\n                \"name\": \"BurJuman\",\n                \"email\": null,\n                \"lat\": 25.253267,\n                \"lng\": 55.302464,\n                \"human_location\": \"1st Level, Opposite Splash\",\n                \"neighborhood\": null,\n                \"mall\": \"BurJuman\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45796,\n                \"sfId\": \"O23654440\",\n                \"name\": \"Dubai Outlet Mall\",\n                \"email\": null,\n                \"lat\": 25.072496,\n                \"lng\": 55.400509,\n                \"human_location\": \"Ground Level, Shop No. GFG93\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Outlet Mall\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 45811,\n                \"sfId\": \"O23654476\",\n                \"name\": \"Ajman City Centre\",\n                \"email\": null,\n                \"lat\": 25.399368,\n                \"lng\": 55.478683,\n                \"human_location\": \"Ground Level, Store A11\",\n                \"neighborhood\": null,\n                \"mall\": \"City Centre Ajman\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 46626,\n                \"sfId\": \"O23680233\",\n                \"name\": \"Deira City Centre, AFWJ\",\n                \"email\": null,\n                \"lat\": 25.251968,\n                \"lng\": 55.332821,\n                \"human_location\": \"1st Level, Near Carrefour\",\n                \"neighborhood\": null,\n                \"mall\": \"City Centre Deira\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 46629,\n                \"sfId\": \"O23680234\",\n                \"name\": \"Dubai Festival City, AFWJ\",\n                \"email\": null,\n                \"lat\": 25.223507,\n                \"lng\": 55.350712,\n                \"human_location\": \"1st Level, Near Carrefour\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Festival City\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            },\n            {\n                \"id\": 89974,\n                \"sfId\": \"O23901578\",\n                \"name\": \"Web Store\",\n                \"email\": null,\n                \"lat\": 25.223507,\n                \"lng\": 55.350712,\n                \"human_location\": \"Web Store\",\n                \"neighborhood\": null,\n                \"mall\": null,\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": [\n                    {\n                        \"type\": \"image\",\n                        \"value\": \"\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"cmd\": \"/api_ets/v2/outlets?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"},{"id":"769f2c25-2b3e-45d3-bf83-e359032017bf","name":"200 - [Code0] Without location_id (No Outlet shown in responce)","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2boutsrvrpy.{{base-url}}/v2/outlets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 11:48:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788de799ad33d1e8-MCT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"is_fuzzy_search_results\": false,\n        \"is_fuzzy_server_down\": false,\n        \"limit\": 60,\n        \"total_records\": 0,\n        \"search_results\": [],\n        \"featured_merchants\": [],\n        \"outlets\": []\n    },\n    \"cmd\": \"/api_ets/v2/outlets?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"},{"id":"32fbe388-6ab0-40fb-bc45-348db87d42fb","name":"200 - [Code0] Fetch Outlets by Category","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"location_id\": 1,\n    \"category\":\"Retail\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apiutb2boutsrvrpy.{{base-url}}/v2/outlets","protocol":"https","host":["apiutb2boutsrvrpy","{{base-url}}"],"path":["v2","outlets"],"query":[{"key":"category","value":"Retail","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 16 Jan 2023 07:47:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1248"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"78a53e188aa7ca80-LHE"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"is_fuzzy_search_results\": false,\n        \"is_fuzzy_server_down\": false,\n        \"limit\": 60,\n        \"total_records\": 8,\n        \"search_results\": [],\n        \"featured_merchants\": [],\n        \"outlets\": [\n            {\n                \"id\": 45784,\n                \"sfId\": \"O23652681\",\n                \"name\": \"The Dubai Mall\",\n                \"email\": null,\n                \"lat\": 25.197489,\n                \"lng\": 55.280369,\n                \"human_location\": \"Next to Galleria Lafayette, Unit No GF-196\",\n                \"neighborhood\": null,\n                \"mall\": \"The Dubai Mall\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            },\n            {\n                \"id\": 45787,\n                \"sfId\": \"O23654437\",\n                \"name\": \"Mall of the Emirates\",\n                \"email\": null,\n                \"lat\": 25.118141,\n                \"lng\": 55.200607,\n                \"human_location\": \"Ground Level, Opposite Centerpoint\",\n                \"neighborhood\": null,\n                \"mall\": \"Mall of the Emirates\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            },\n            {\n                \"id\": 45790,\n                \"sfId\": \"O23654438\",\n                \"name\": \"BurJuman\",\n                \"email\": null,\n                \"lat\": 25.253267,\n                \"lng\": 55.302464,\n                \"human_location\": \"1st Level, Opposite Splash\",\n                \"neighborhood\": null,\n                \"mall\": \"BurJuman\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            },\n            {\n                \"id\": 45796,\n                \"sfId\": \"O23654440\",\n                \"name\": \"Dubai Outlet Mall\",\n                \"email\": null,\n                \"lat\": 25.072496,\n                \"lng\": 55.400509,\n                \"human_location\": \"Ground Level, Shop No. GFG93\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Outlet Mall\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            },\n            {\n                \"id\": 45811,\n                \"sfId\": \"O23654476\",\n                \"name\": \"Ajman City Centre\",\n                \"email\": null,\n                \"lat\": 25.399368,\n                \"lng\": 55.478683,\n                \"human_location\": \"Ground Level, Store A11\",\n                \"neighborhood\": null,\n                \"mall\": \"City Centre Ajman\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            },\n            {\n                \"id\": 46626,\n                \"sfId\": \"O23680233\",\n                \"name\": \"Deira City Centre, AFWJ\",\n                \"email\": null,\n                \"lat\": 25.251968,\n                \"lng\": 55.332821,\n                \"human_location\": \"1st Level, Near Carrefour\",\n                \"neighborhood\": null,\n                \"mall\": \"City Centre Deira\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            },\n            {\n                \"id\": 46629,\n                \"sfId\": \"O23680234\",\n                \"name\": \"Dubai Festival City, AFWJ\",\n                \"email\": null,\n                \"lat\": 25.223507,\n                \"lng\": 55.350712,\n                \"human_location\": \"1st Level, Near Carrefour\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Festival City\",\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            },\n            {\n                \"id\": 89974,\n                \"sfId\": \"O23901578\",\n                \"name\": \"Web Store\",\n                \"email\": null,\n                \"lat\": 25.223507,\n                \"lng\": 55.350712,\n                \"human_location\": \"Web Store\",\n                \"neighborhood\": null,\n                \"mall\": null,\n                \"hotel\": null,\n                \"tripadvisor_id\": \"0\",\n                \"distance\": 0,\n                \"description\": \"\",\n                \"merchant_name\": \"the watch house\",\n                \"merchant\": {\n                    \"id\": 26910,\n                    \"name\": \"The Watch House\",\n                    \"name_for_outlet\": \"The Watch House\",\n                    \"description\": \"\",\n                    \"category\": \"Retail\",\n                    \"categories\": [\n                        \"Retail\"\n                    ],\n                    \"cuisine\": \"\",\n                    \"cuisines\": [],\n                    \"categories_analytics\": \"FR\",\n                    \"ad_travel_country\": \"\",\n                    \"ad_active_status\": true,\n                    \"logo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28retina%29_-_merchant202003251116.jpg\",\n                    \"logo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_primary_logo_%28non-retina%29_-_merchant202003251116.jpg\",\n                    \"photo_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28retina%29202111021612.jpg\",\n                    \"photo_small_url\": \"https://offerengine.theentertainerme.com/the-watch-house-x23480117/merchant_profile_%22hero%22_image_%28non-retina%29202111021612.jpg\",\n                    \"digital_section\": \"Jewellery\"\n                },\n                \"fuzzy_relevance\": 0,\n                \"product_id\": [\n                    50623\n                ],\n                \"product_sku\": [\n                    \"L00DBBLEX\"\n                ],\n                \"top_offer_redeemability\": 2,\n                \"top_offer_type\": 0,\n                \"is_redeemable\": true,\n                \"is_purchased\": true,\n                \"is_monthly\": false,\n                \"is_new\": false,\n                \"is_cheers\": false,\n                \"is_delivery\": false,\n                \"is_more_sa\": false,\n                \"is_point_based_offer\": 0,\n                \"locked_image_url\": \"\",\n                \"categories\": [\n                    \"Retail\"\n                ],\n                \"sub_categories\": [\n                    \"Jewellery\"\n                ],\n                \"merchant_categories\": [\n                    \"Retail\"\n                ],\n                \"merchant_categories_analytics\": \"FR\",\n                \"attributes\": []\n            }\n        ]\n    },\n    \"cmd\": \"/api_ets/v2/outlets?category=Retail\",\n    \"http_response\": 200,\n    \"code\": 0\n}"},{"id":"8c07a583-fc53-44b4-868f-dc6775c87bca","name":"JSON Body Example with all possible Filters","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"offset\": 0,\n    \"query\": \"\",\n    \"is_location_enabled\": \"1\",\n    \"search_type\":\"city\",\n    \"billing_city\": \"KSA\",\n    \"category\": \"Restaurants and Bars\",\n    \"lat\": \"-26.1022538\",\n    \"lng\": \"28.0550731\",\n    \"time_zone\": \"KSA\",\n    \"currency\": \"AED\",\n    \"language\": \"en\",\n    \"location_id\": \"18\",\n    \"cuisine_filter\": \"\",\n    \"sub_category_filter\": \"Fine Dining\",\n    \"is_redeemable\": true,\n    \"sort_by\": \"nearby\",\n    \"limit\": 60\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apiutb2boutsrvrpy.{{base-url}}/v2/outlets","protocol":"https","host":["apiutb2boutsrvrpy","{{base-url}}"],"path":["v2","outlets"],"query":[{"key":"category","value":"","description":"[Optional] Param is used to fetch data by different categories. ","disabled":true},{"key":"location_id","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 16 Jan 2023 08:03:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"78a555b30b70ca80-LHE"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"is_fuzzy_search_results\": false,\n        \"is_fuzzy_server_down\": false,\n        \"limit\": 60,\n        \"total_records\": 0,\n        \"search_results\": [],\n        \"featured_merchants\": [],\n        \"outlets\": []\n    },\n    \"cmd\": \"/api_ets/v2/outlets?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"}],"_postman_id":"b036d31d-feaa-4fd9-b3b3-bc54d77eef1c"},{"name":"05 - Fetch Merchant Detail","id":"6925ab6a-7bbe-4b52-ab00-947fc8a25413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-user}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"language\": \"ar\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2bmrhsrvrpy.{{base-url}}/v1/merchants/{{merchant-id}}","description":"<p>This API provides all information related to Merchant. It includes merchant branding, offers, and outlets. API can give a response with and without login (hybrid API). To check, which user allowed which offers, API required the JWT Payload that has the <code>session_token</code>.</p>\n<h1 id=\"merchant-response-values-definitions\">Merchant Response Values' Definitions</h1>\n<h2 id=\"redeemability-states-redeemability\">Redeemability States <code>redeemability</code>:</h2>\n<p>The values and action for the <code>redeemability</code> param for each voucher.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Value</strong></th>\n<th><strong>State</strong></th>\n<th><strong>Descreption</strong></th>\n<th><strong>Action</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>NOT_REDEEMABLE</td>\n<td>The voucher is not redeemable, and the user should not be allowed to apply the voucher.</td>\n<td>Block Redemption &amp; Show Locked State</td>\n</tr>\n<tr>\n<td>1</td>\n<td>REDEEMED</td>\n<td>The voucher has already been redeemed by the user and use should not be allowed to apply the voucher.</td>\n<td>Block Redemption &amp; Show Locked State</td>\n</tr>\n<tr>\n<td>2</td>\n<td>REDEEMABLE</td>\n<td>The voucher is available for redemption and the user can apply the voucher.</td>\n<td>Allow Redemption</td>\n</tr>\n<tr>\n<td>3</td>\n<td>REUSABLE</td>\n<td>The voucher is available for redemption and the user can apply the voucher</td>\n<td>Allow Redemption</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"identifying-reusable-types\">Identifying Reusable Types</h2>\n<p>Normal and reusable offer distinguish between \"offer_reusable\" flag and, a new flag is introduce \"sub_status_id\" which will identify that offer is redeemable or not.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Value</strong></th>\n<th><strong>State</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Action</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>true or  <br />false</td>\n<td>offer_reusable</td>\n<td>If it is true then offer is reusable otherwise it will not reusable offer.</td>\n<td></td>\n</tr>\n<tr>\n<td>200 or  <br />100</td>\n<td>sub_status_id</td>\n<td>This flag will describe that either offer is redeemable or not.  <br />100: offer is not redeemable  <br />200: offer is redeemable</td>\n<td></td>\n</tr>\n<tr>\n<td>if offer still available for redemption then  <br />Active, Your Remaining offers quota in 24 hours is 4 offers  <br />  <br />if offer cap is reached for reusable then  <br />Sorry. Monthly offers have a maximum limit of 4 redemptions per 24 hours.</td>\n<td>offer_limit_text</td>\n<td>This varible describe the offer status.  <br /></td>\n<td></td>\n</tr>\n<tr>\n<td>\"\" or  <br /></td>\n<td>next_redemption_time</td>\n<td>This flag will fill with date and time in UTC format for next availability of the reusable offer for instance if limit of the offer reaches and it is redeem at 2023-05-16 15:42:52 then it will return 2023-05-17 15:42:53.</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>redeemability</td>\n<td>for resuable offer it will always 3.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Reusable Offers Matrix</strong></p>\n<p>There are following possible values of matrix for reusable offers.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Type</strong></th>\n<th><strong>Before Redemption</strong></th>\n<th><strong>After Redeemption limit reached</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offer_reusable</td>\n<td>true</td>\n<td>true</td>\n</tr>\n<tr>\n<td>sub_status_id</td>\n<td>200</td>\n<td>100</td>\n</tr>\n<tr>\n<td>offer_limit_text</td>\n<td>Active, Your Remaining offers quota in X hours is Y offers.  <br />  <br /><strong>X</strong> is time frame in which number of offers can be redeem.  <br /><strong>Y</strong> representive numer of offer which can redeem on that particular time.  <br /></td>\n<td>Sorry. Monthly offers have a maximum limit of Y redemptions per X hours.</td>\n</tr>\n<tr>\n<td>next_redemption_time</td>\n<td>\"\"</td>\n<td>2023-05-17 15:42:53</td>\n</tr>\n<tr>\n<td>redeemability</td>\n<td>3</td>\n<td>3</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Normal Offers Matrix</strong><br />There is below matrix for normal offers value before and after reaching redemption limit.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Type</strong></th>\n<th><strong>Before Redemption</strong></th>\n<th><strong>After Redeemption limit reached</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offer_reusable</td>\n<td>false</td>\n<td>false</td>\n</tr>\n<tr>\n<td>sub_status_id</td>\n<td>200</td>\n<td>100</td>\n</tr>\n<tr>\n<td>offer_limit_text</td>\n<td>Active</td>\n<td>Inactive</td>\n</tr>\n<tr>\n<td>next_redemption_time</td>\n<td>\"\"</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td>redeemability</td>\n<td>2</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"identifying-voucher-types-voucher_type\">Identifying Voucher Types <code>voucher_type</code>:</h2>\n<p>Identifying the voucher type can be done using the ‘voucher_type’ field for offers.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n<th>Description</th>\n<th>Action</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>BOGOF</td>\n<td>Buy 1 Get 1 Free type offer</td>\n<td>Apply discount on an item as identified from the ‘name’.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>DISCOUNT</td>\n<td>A percentage discount is applied to the total bill.</td>\n<td>Apply discount on the total bill.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>GIFT</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>PACKAGE</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>5</td>\n<td>FIX_PRICE_OFF</td>\n<td>A fix amount will be off.</td>\n<td>Minus the fix amount from total bill.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>SPEND_THIS_GET_THIS</td>\n<td>Spend in fixed amount and get discount on fixed amount.</td>\n<td>If user spend's given amount give them the discount on total bill.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"use-case-how-to-fetch-offers\">Use Case: How to fetch offers?</h1>\n<p>The <code>offers</code> data set in the JSON response provides all the offers applicable for the user at the selected merchant.</p>\n","urlObject":{"protocol":"https","path":["v1","merchants","{{merchant-id}}"],"host":["apiutb2bmrhsrvrpy","{{base-url}}"],"query":[],"variable":[]}},"response":[{"id":"24bb3ce1-643e-4654-bef3-6c4a0cb7abd2","name":"200 - [Code0] Success","originalRequest":{"method":"GET","header":[],"url":"https://apiutb2bmrhsrvrpy.{{base-url}}/v1/merchants/{{merchant-id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 11:52:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2138"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788ded7d2f82d1f8-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"id\": 49344,\n        \"merchant_pin\": \"fa246d0262c3925617b0c72bb20eeb1d\",\n        \"email\": null,\n        \"website\": null,\n        \"category\": \"Body\",\n        \"merchant_categories\": [\n            \"Body\"\n        ],\n        \"hero_small_urls\": [\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28non-retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.1_%28non-retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.2_%28non-retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.3_%28non-retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.4_%28non-retina%29202002161327.jpg\"\n        ],\n        \"cuisines\": [],\n        \"has_promo_code_offers\": 0,\n        \"is_pingable\": 1,\n        \"is_for_members_only\": null,\n        \"merchant_sf_id\": \"X23892573\",\n        \"dc_prospect_enabled\": 0,\n        \"is_tutorial\": false,\n        \"name\": \"Maison Lutetia\",\n        \"description\": \"Maison Lutétia Dubai, part of Al Futtaim Healthcare, is an extension of the leading aesthetics clinic in Paris, offering trusted aesthetic medicine and advanced DHI hair restoration.  \\r\\nOffering advanced equipment and techniques, the doctors blend precision and art accentuating your natural beauty. We follow strict treatment protocols, based on the French ethos of beauty, a natural look speaks of elegancy and that each person has an authentic beauty to be enhanced through a unique harmony of technology and artistry.\",\n        \"offer_categories\": [\n            \"Body\"\n        ],\n        \"sub_categories\": [\n            \"Beauty, Hair & Nails\"\n        ],\n        \"cuisine\": null,\n        \"booking_link\": \"\",\n        \"booking_request\": \"0\",\n        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\",\n        \"logo_small_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28non-retina%29_-_merchant2020032501035.jpg\",\n        \"logo_offer_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_offer2020032501035.jpg\",\n        \"logo_offer_small_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28non-retina%29_-_offer2020032501035.jpg\",\n        \"photo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28retina%29202002161324.jpg\",\n        \"photo_small_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28non-retina%29202002161324.jpg\",\n        \"hero_urls\": [\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_%28retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.1_%28retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.2_%28retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.3_%28retina%29202002161324.jpg\",\n            \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_profile_%22hero%22_image_slide.4_%28retina%29202002161324.jpg\"\n        ],\n        \"hero_small_url\": \"[\\\"https:\\\\/\\\\/offerengine.theentertainerme.com\\\\/maison-lutetia-x23892573\\\\/merchant_profile_%22hero%22_image_slide.1_%28non-retina%29202002161324.jpg\\\",\\\"https:\\\\/\\\\/offerengine.theentertainerme.com\\\\/maison-lutetia-x23892573\\\\/merchant_profile_%22hero%22_image_slide.2_%28non-retina%29202002161324.jpg\\\",\\\"https:\\\\/\\\\/offerengine.theentertainerme.com\\\\/maison-lutetia-x23892573\\\\/merchant_profile_%22hero%22_image_slide.3_%28non-retina%29202002161324.jpg\\\",\\\"https:\\\\/\\\\/offerengine.theentertainerme.com\\\\/maison-lutetia-x23892573\\\\/merchant_profile_%22hero%22_image_slide.4_%28non-retina%29202002161327.jpg\\\"]\",\n        \"pdf_url\": null,\n        \"is_barcode_enabled\": 0,\n        \"is_opted_in_for_360_image\": 0,\n        \"p3_360_degree_image\": \"\",\n        \"p3_hero_image_retina\": \"\",\n        \"p3_hero_image_non_retina\": \"\",\n        \"delivery_contact_no\": \"\",\n        \"hero_images_360\": {},\n        \"categories\": [\n            \"Body\"\n        ],\n        \"categories_analytics\": \"BF\",\n        \"digital_section\": \"Beauty, Hair & Nails\",\n        \"has_delivery_offers\": false,\n        \"merchant_attributes\": [\n            {\n                \"section_name\": \"Amenities Offered\",\n                \"attributes\": [\n                    {\n                        \"key\": \"couples_friendly\",\n                        \"type\": 1,\n                        \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/couples_friendly.png\",\n                        \"name\": \"Couple Friendly\",\n                        \"value\": \"Yes\"\n                    },\n                    {\n                        \"key\": \"certified\",\n                        \"type\": 1,\n                        \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/certified.png\",\n                        \"name\": \"Certified\",\n                        \"value\": \"Yes\"\n                    },\n                    {\n                        \"key\": \"indoor_facilities\",\n                        \"type\": 1,\n                        \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/indoor_facilities.png\",\n                        \"name\": \"Indoor Facilities\",\n                        \"value\": \"Yes\"\n                    },\n                    {\n                        \"key\": \"by_appointment_only\",\n                        \"type\": 1,\n                        \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/by_appointment_only.png\",\n                        \"name\": \"By Appointment Only\",\n                        \"value\": \"Yes\"\n                    },\n                    {\n                        \"key\": \"refreshments\",\n                        \"type\": 1,\n                        \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/refreshments.png\",\n                        \"name\": \"Refreshments\",\n                        \"value\": \"Yes\"\n                    },\n                    {\n                        \"key\": \"parking\",\n                        \"type\": 1,\n                        \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/parking.png\",\n                        \"name\": \"Parking\",\n                        \"value\": \"Yes\"\n                    }\n                ]\n            }\n        ],\n        \"outlets\": [\n            {\n                \"id\": 84754,\n                \"email\": null,\n                \"telephone\": \"+9714 706 4000\",\n                \"lat\": 25.221022,\n                \"lng\": 55.353954,\n                \"delivery_telephone\": \"\",\n                \"merlin_url\": \"\",\n                \"name\": \"Dubai Festival City\",\n                \"description\": null,\n                \"human_location\": \"Opposite to VIP Mall Valet Parking - Crescent Dr\",\n                \"neighborhood\": null,\n                \"mall\": \"Dubai Festival City\",\n                \"hotel\": null,\n                \"distance\": 0\n            }\n        ],\n        \"offers\": [\n            {\n                \"product_id\": \"50623\",\n                \"purchase_product_id\": 0,\n                \"section_name\": \"Futtaim Exclusive Dubai\",\n                \"product_sku\": \"L00DBBLEX\",\n                \"is_delivery_section\": false,\n                \"is_monthly_section\": true,\n                \"is_show_purchase_button\": false,\n                \"offers_to_display\": [\n                    {\n                        \"categories_analytics\": \"BF\",\n                        \"offer_id\": 1674256,\n                        \"category\": \"Body\",\n                        \"category_color\": \"\",\n                        \"name\": \"No current offers available\",\n                        \"details\": null,\n                        \"offer_detail\": null,\n                        \"is_cheers\": false,\n                        \"voucher_type\": 4,\n                        \"voucher_type_image\": \"https://b2cappassetscdn.theentertainerme.com/icons/voucher_types/voucher_type_monthly_4.png\",\n                        \"voucher_restriction1\": null,\n                        \"voucher_restriction2\": null,\n                        \"voucher_restrictions\": \" \",\n                        \"savings_estimate\": 0,\n                        \"savings_estimate_aed\": 0,\n                        \"savings_estimate_local_currency\": null,\n                        \"redeemability\": 2,\n                        \"is_topup_offer_allowed\": false,\n                        \"is_pingable\": false,\n                        \"is_pinged\": false,\n                        \"is_show_smiles\": false,\n                        \"smiles_earn_value\": 0,\n                        \"smiles_burn_value\": 0,\n                        \"dcp_license\": null,\n                        \"valid_from_date\": \"2023-01-01T00:00:00+00:00\",\n                        \"expiration_date\": \"2025-04-30T23:59:59.999999+00:00\",\n                        \"validity_date\": \"2025-04-30T23:59:59.999999+00:00\",\n                        \"outlet_ids\": [\n                            84754\n                        ],\n                        \"item_code\": \"\",\n                        \"is_barcode_enabled\": false,\n                        \"is_point_based_offer\": false,\n                        \"is_merlin_offer\": false,\n                        \"outlet_merlin_urls\": [],\n                        \"merlin_title\": \"\",\n                        \"message\": \"Package\",\n                        \"sub_detail_label\": \"Valid to APP_DATE\",\n                        \"additional_details\": [],\n                        \"voucher_details\": [\n                            {\n                                \"id\": 4,\n                                \"image\": \"https://b2cappassetscdn.theentertainerme.com/icons/voucher_types/voucher_type_monthly_4.png\",\n                                \"title\": \"Package\",\n                                \"color\": \"C7318C\"\n                            }\n                        ],\n                        \"voucher_rules_of_use\": [],\n                        \"offer_redemption_type\": 0,\n                        \"is_promo_code_offer\": 0,\n                        \"is_swipe_based_offer_redemption\": false,\n                        \"sort_order\": 1\n                    }\n                ]\n            }\n        ],\n        \"delivery_section\": {\n            \"delivery_contact_no\": \"\",\n            \"delivery_tutorials_info\": [\n                \"https://b2cappassetscdn.theentertainerme.com/delivery/en/delivery_tutorial_01.png\",\n                \"https://b2cappassetscdn.theentertainerme.com/delivery/en/delivery_tutorial_02.png\",\n                \"https://b2cappassetscdn.theentertainerme.com/delivery/en/delivery_tutorial_03.png\"\n            ],\n            \"menu_section\": [],\n            \"offers_remaining\": \"0 Offer(s) Remaining\"\n        },\n        \"customer\": {\n            \"user_id\": 9129272,\n            \"is_demographics_updated\": 0\n        },\n        \"opening_hours\": \"\"\n    },\n    \"code\": 0,\n    \"cmd\": \"/api_ets/v1/merchants/49344?\",\n    \"http_response\": 200\n}"},{"id":"956b7d82-bb7d-447b-962b-04b50f74f4d7","name":"500 - Merchant Not Found","originalRequest":{"method":"GET","header":[],"url":"https://apiutb2bmrhsrvrpy.{{base-url}}/v1/merchants/3233232"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 12:17:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"131"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788e118ce854de43-MCT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Internal Server Error\",\n    \"success\": false,\n    \"cmd\": \"/api_ets/v1/merchants/3233232?\",\n    \"http_response\": 500,\n    \"code\": 500\n}"}],"_postman_id":"6925ab6a-7bbe-4b52-ab00-947fc8a25413"},{"name":"06 - Redemption","id":"b7f301d1-7dc0-4be9-bdf4-cadcba82ec33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-user}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"outlet_id\": 84754,\n    \"offer_id\": 1674256,    \n    \"merchant_pin\": 9999,\n    \"transaction_id\": \"ANY-STRING-ID-01\",\n    \"product_id\": 50623,\n    \"__platform\": \"ios\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2brdmsrvrpy.{{base-url}}/v1/offer/redeem","description":"<p>The redeem endpoint is used to redeem a particular offer at a merchant. A merchant pin has to be entered on the app by the merchant to successfully proceed with redeeming an offer. The <code>merchant_pin</code> can be found in the response of the merchant endpoint in an MD5 hashed format. On the client app, the code entered by the merchant needs to be encoded in the same manner and matched with the <code>merchant_pin</code> received for the merchant to proceed with redemption. In the redemption request, the <code>merchant_pin</code> can be shared in an unencrypted form as entered into the app.</p>\n","urlObject":{"protocol":"https","path":["v1","offer","redeem"],"host":["apiutb2brdmsrvrpy","{{base-url}}"],"query":[],"variable":[]}},"response":[{"id":"c5417092-8566-4189-b589-7414986edb1e","name":"200 - [Code0] Redemption successfully done","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"outlet_id\": 84754,\n    \"offer_id\": 1674256,    \n    \"merchant_pin\": 9999,\n    \"transaction_id\": \"ANY-STRING-ID-01\",\n    \"product_id\": 50623,\n    \"__platform\": \"ios\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2brdmsrvrpy.{{base-url}}/v1/offer/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Jan 2023 12:00:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"788df904c8c4de5b-MCT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"referenceNo\": {\n            \"redemption_code\": \"A-066-475-474\",\n            \"smiles_earned\": 0,\n            \"coupon\": \"\"\n        },\n        \"id\": 66475474\n    },\n    \"cmd\": \"/api_ets/v1/offer/redeem?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"}],"_postman_id":"b7f301d1-7dc0-4be9-bdf4-cadcba82ec33"},{"name":"07 - Redemption History","id":"9c16dc36-62ce-43e8-9a84-ab8a8d5b247c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-user}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"end_date\": \"10/01/2023\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2brdmsrvrpy.{{base-url}}/v1/redemption_history","description":"<p>Redemption history API is based on the user, so to fetch Redemption history, please use user-based credentials, {{jwt-user}}.</p>\n<h1 id=\"date-range\">Date Range</h1>\n<p>Date range variables are used to fetch redemption history.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Variable</strong></th>\n<th><strong>Details</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>[Optional] Date format DD/MM/YYY</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>[Optional] Date format DD/MM/YYY</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","redemption_history"],"host":["apiutb2brdmsrvrpy","{{base-url}}"],"query":[],"variable":[]}},"response":[{"id":"f476793a-0349-4be7-b1e7-dece0d4626e5","name":"200 - [Code0] Success","originalRequest":{"method":"POST","header":[],"url":"https://apiutb2brdmsrvrpy.{{base-url}}/v1/redemption_history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 15 Jan 2023 16:16:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"473"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"789fea725b09ca7c-LHE"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"current_year\": 2023,\n        \"total_redemptions\": 4,\n        \"month_wise_redemmptions\": [\n            {\n                \"index\": 0,\n                \"month\": \"2023 January\",\n                \"redemption_count\": 4,\n                \"redemptions\": [\n                    {\n                        \"id\": \"66475477\",\n                        \"date\": \"2023-01-13 12:09:40\",\n                        \"code\": \"A-066-475-477\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    },\n                    {\n                        \"id\": \"66475476\",\n                        \"date\": \"2023-01-13 12:09:36\",\n                        \"code\": \"A-066-475-476\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    },\n                    {\n                        \"id\": \"66475475\",\n                        \"date\": \"2023-01-13 12:09:30\",\n                        \"code\": \"A-066-475-475\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    },\n                    {\n                        \"id\": \"66475474\",\n                        \"date\": \"2023-01-13 12:00:39\",\n                        \"code\": \"A-066-475-474\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"success\": true,\n    \"message\": \"success\",\n    \"cmd\": \"/api_ets/v1/redemption_history?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"},{"id":"2d697b5e-8ec7-487e-babc-3b5b7596ee0c","name":"200 - [Code0] Success - User with no history","originalRequest":{"method":"POST","header":[],"url":"https://apiutb2brdmsrvrpy.{{base-url}}/v1/redemption_history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 15 Jan 2023 16:21:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"789ff1b20a47ca7c-LHE"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"current_year\": 2023,\n        \"total_redemptions\": 0,\n        \"month_wise_redemmptions\": []\n    },\n    \"success\": true,\n    \"message\": \"success\",\n    \"cmd\": \"/api_ets/v1/redemption_history?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"},{"id":"77136f5f-7d6d-4d26-b83e-5a7b054a0534","name":"200 - [Code0] Success - With Date Range","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"10/01/2023\",\r\n    \"end_date\": \"15/01/2023\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2brdmsrvrpy.{{base-url}}/v1/redemption_history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Jan 2023 09:26:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"473"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"78e7ba8b1dbeca7c-LHE"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"current_year\": 2023,\n        \"total_redemptions\": 4,\n        \"month_wise_redemmptions\": [\n            {\n                \"index\": 0,\n                \"month\": \"2023 January\",\n                \"redemption_count\": 4,\n                \"redemptions\": [\n                    {\n                        \"id\": \"66475477\",\n                        \"date\": \"2023-01-13 12:09:40\",\n                        \"code\": \"A-066-475-477\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    },\n                    {\n                        \"id\": \"66475476\",\n                        \"date\": \"2023-01-13 12:09:36\",\n                        \"code\": \"A-066-475-476\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    },\n                    {\n                        \"id\": \"66475475\",\n                        \"date\": \"2023-01-13 12:09:30\",\n                        \"code\": \"A-066-475-475\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    },\n                    {\n                        \"id\": \"66475474\",\n                        \"date\": \"2023-01-13 12:00:39\",\n                        \"code\": \"A-066-475-474\",\n                        \"offer\": \"No current offers available\",\n                        \"outlet\": \"Maison Lutetia - Dubai Festival City\",\n                        \"merchant\": \"Maison Lutetia\",\n                        \"category\": \"Body\",\n                        \"outlet_id\": 84754,\n                        \"merchant_id\": 49344,\n                        \"savings\": 0,\n                        \"logo_url\": \"https://offerengine.theentertainerme.com/maison-lutetia-x23892573/merchant_primary_logo_%28retina%29_-_merchant2020032501035.jpg\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"success\": true,\n    \"message\": \"success\",\n    \"cmd\": \"/api_ets/v1/redemption_history?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"}],"_postman_id":"9c16dc36-62ce-43e8-9a84-ab8a8d5b247c"},{"name":"08 - Fetch Locations","id":"082814b7-f395-4ad3-bd5b-329e26696b37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-public}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://apiutb2bcnfsrvrpy.theentertainerme.com/api_ets/v1/locations","description":"<p>Fetch the configured location for the client by this API endpoint.<br />If you are not able to get desired locations please contact to TheENTERTAINER Sales Team.</p>\n","urlObject":{"protocol":"https","path":["api_ets","v1","locations"],"host":["apiutb2bcnfsrvrpy","theentertainerme","com"],"query":[],"variable":[]}},"response":[{"id":"f3683557-067b-4001-8484-ea5672ee0997","name":"200 - [Code0] Success","originalRequest":{"method":"GET","header":[],"url":"https://apiutb2bcnfsrvrpy.theentertainerme.com/api_ets/v1/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 16 Jan 2023 06:54:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"734"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"78a4f128ae4dca8c-LHE"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"locations\": [\n            {\n                \"id\": 2,\n                \"currency\": \"AED\",\n                \"name\": \"Abu Dhabi & Al Ain\",\n                \"active\": true,\n                \"lat\": 24.534632,\n                \"lng\": 54.362671,\n                \"language\": \"ar\",\n                \"flag\": \"AE\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/2.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 3,\n                \"currency\": \"BHD\",\n                \"name\": \"Bahrain\",\n                \"active\": true,\n                \"lat\": 26.22876,\n                \"lng\": 50.584381,\n                \"language\": \"ar\",\n                \"flag\": \"BH\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/3.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 1,\n                \"currency\": \"AED\",\n                \"name\": \"Dubai & N. Emirates\",\n                \"active\": true,\n                \"lat\": 25.300579,\n                \"lng\": 55.307709,\n                \"language\": \"ar\",\n                \"flag\": \"AE\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/1.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 6,\n                \"currency\": \"EGP\",\n                \"name\": \"Egypt\",\n                \"active\": true,\n                \"lat\": 30.051861,\n                \"lng\": 31.235107,\n                \"language\": \"ar\",\n                \"flag\": \"EG\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/6.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 18,\n                \"currency\": \"SAR\",\n                \"name\": \"Jeddah\",\n                \"active\": true,\n                \"lat\": 21.606365,\n                \"lng\": 39.171326,\n                \"language\": \"ar\",\n                \"flag\": \"SA\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/18.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 7,\n                \"currency\": \"KWD\",\n                \"name\": \"Kuwait\",\n                \"active\": true,\n                \"lat\": 29.372301,\n                \"lng\": 47.97847,\n                \"language\": \"ar\",\n                \"flag\": \"KW\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/7.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 8,\n                \"currency\": \"OMR\",\n                \"name\": \"Oman\",\n                \"active\": true,\n                \"lat\": 23.600277,\n                \"lng\": 58.548389,\n                \"language\": \"ar\",\n                \"flag\": \"OM\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/8.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 10,\n                \"currency\": \"SAR\",\n                \"name\": \"Riyadh\",\n                \"active\": true,\n                \"lat\": 24.771772,\n                \"lng\": 46.727173,\n                \"language\": \"ar\",\n                \"flag\": \"SA\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/10.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 49,\n                \"currency\": \"SAR\",\n                \"name\": \"Eastern Province\",\n                \"active\": true,\n                \"lat\": 25.32394,\n                \"lng\": 49.552261,\n                \"language\": \"ar\",\n                \"flag\": \"SA\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/1.png\",\n                \"reload_background\": true,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 9,\n                \"currency\": \"QAR\",\n                \"name\": \"Qatar\",\n                \"active\": true,\n                \"lat\": 25.296234,\n                \"lng\": 51.521652,\n                \"language\": \"ar\",\n                \"flag\": \"QA\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/9.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 0\n            },\n            {\n                \"id\": 15,\n                \"currency\": \"MYR\",\n                \"name\": \"Malaysia\",\n                \"active\": true,\n                \"lat\": 3.156285,\n                \"lng\": 101.687973,\n                \"language\": \"en\",\n                \"flag\": \"MY\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/15.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 1\n            },\n            {\n                \"id\": 11,\n                \"currency\": \"SGD\",\n                \"name\": \"Singapore\",\n                \"active\": true,\n                \"lat\": 1.3052,\n                \"lng\": 103.83242,\n                \"language\": \"en\",\n                \"flag\": \"SG\",\n                \"background\": \"https://s3-us-west-2.amazonaws.com/product-locations/backgrounds/11.png\",\n                \"reload_background\": false,\n                \"is_show_category\": false,\n                \"is_careem_enabled\": 1\n            }\n        ]\n    },\n    \"version\": 1,\n    \"message\": \"success\",\n    \"success\": true,\n    \"cmd\": \"/api_ets/v1/locations?\",\n    \"http_response\": 200,\n    \"code\": 0\n}"}],"_postman_id":"082814b7-f395-4ad3-bd5b-329e26696b37"},{"name":"09 - Fetch Categories and Filters","id":"9aa1aace-83a6-4b06-82c5-708f345060ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{jwt-public}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"location_id\":1\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2bcnfsrvrpy.theentertainerme.com/api_ets/v1/filters","description":"<p>These categories will be used as a filter to sort, and classify offers, outlets, and merchants.</p>\n","urlObject":{"protocol":"https","path":["api_ets","v1","filters"],"host":["apiutb2bcnfsrvrpy","theentertainerme","com"],"query":[],"variable":[]}},"response":[{"id":"fc23ae47-6c18-4ffe-9127-04761e1ca298","name":"200 - [Code0] Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"location_id\":1\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apiutb2bcnfsrvrpy.theentertainerme.com/api_ets/v1/filters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 16 Jan 2023 07:42:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3394"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"78a536f47fafca80-LHE"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"category_name\": \"Body\",\n            \"category_id\": 1,\n            \"filter_sections\": [\n                {\n                    \"section_order_id\": 1,\n                    \"category_id\": 1,\n                    \"section_name\": \"Type\",\n                    \"selection_type\": 1,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"0_Body_All\",\n                            \"key\": \"All\",\n                            \"name\": \"All\"\n                        },\n                        {\n                            \"uid\": \"Body_Beauty, Hair & Nails\",\n                            \"key\": \"Beauty, Hair & Nails\",\n                            \"name\": \"Beauty, Hair & Nails\"\n                        },\n                        {\n                            \"uid\": \"Body_Health & Fitness\",\n                            \"key\": \"Health & Fitness\",\n                            \"name\": \"Health & Fitness\"\n                        },\n                        {\n                            \"uid\": \"Body_Men's Grooming\",\n                            \"key\": \"Men's Grooming\",\n                            \"name\": \"Men's Grooming\"\n                        },\n                        {\n                            \"uid\": \"Body_Spas\",\n                            \"key\": \"Spas\",\n                            \"name\": \"Spas\"\n                        },\n                        {\n                            \"uid\": \"Body_Medical & Dental\",\n                            \"key\": \"Medical & Dental\",\n                            \"name\": \"Medical & Dental \"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 2,\n                    \"category_id\": 1,\n                    \"section_name\": \"Amenities Offered\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Body_by_appointment_only\",\n                            \"key\": \"by_appointment_only\",\n                            \"name\": \"By Appointment Only\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/by_appointment_only.png\"\n                        },\n                        {\n                            \"uid\": \"Body_couples_friendly\",\n                            \"key\": \"couples_friendly\",\n                            \"name\": \"Couple Friendly\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/couples_friendly.png\"\n                        },\n                        {\n                            \"uid\": \"Body_indoor_facilities\",\n                            \"key\": \"indoor_facilities\",\n                            \"name\": \"Indoor Facilities\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/indoor_facilities.png\"\n                        },\n                        {\n                            \"uid\": \"Body_outdoor_facilities\",\n                            \"key\": \"outdoor_facilities\",\n                            \"name\": \"Outdoor Facilities\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/outdoor_facilities.png\"\n                        },\n                        {\n                            \"uid\": \"Body_refreshments\",\n                            \"key\": \"refreshments\",\n                            \"name\": \"Refreshments\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/refreshments.png\"\n                        },\n                        {\n                            \"uid\": \"Body_certified\",\n                            \"key\": \"certified\",\n                            \"name\": \"Certified\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/certified.png\"\n                        },\n                        {\n                            \"uid\": \"Body_female_only\",\n                            \"key\": \"female_only\",\n                            \"name\": \"Female only\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/female_only.png\"\n                        },\n                        {\n                            \"uid\": \"Body_parking\",\n                            \"key\": \"parking\",\n                            \"name\": \"Parking\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/parking.png\"\n                        },\n                        {\n                            \"uid\": \"Body_valet_parking\",\n                            \"key\": \"valet_parking\",\n                            \"name\": \"Valet Parking\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/valet_parking.png\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"category_name\": \"Kids\",\n            \"category_id\": 2,\n            \"filter_sections\": [\n                {\n                    \"section_order_id\": 1,\n                    \"category_id\": 2,\n                    \"section_name\": \"Type\",\n                    \"selection_type\": 1,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"0_Kids_All\",\n                            \"key\": \"All\",\n                            \"name\": \"All\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 2,\n                    \"category_id\": 2,\n                    \"section_name\": \"Amenities Offered\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Kids_changing_facilities\",\n                            \"key\": \"changing_facilities\",\n                            \"name\": \"Changing Facilities\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/changing_facilities.png\"\n                        },\n                        {\n                            \"uid\": \"Kids_supervised_play_area\",\n                            \"key\": \"supervised_play_area\",\n                            \"name\": \"Supervised Play Area\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/supervised_play_area.png\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"category_name\": \"Leisure\",\n            \"category_id\": 3,\n            \"filter_sections\": [\n                {\n                    \"section_order_id\": 1,\n                    \"category_id\": 3,\n                    \"section_name\": \"Type\",\n                    \"selection_type\": 1,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"0_Leisure_All\",\n                            \"key\": \"All\",\n                            \"name\": \"All\"\n                        },\n                        {\n                            \"uid\": \"Leisure_Attractions\",\n                            \"key\": \"Attractions\",\n                            \"name\": \"Attractions\"\n                        },\n                        {\n                            \"uid\": \"Leisure_Cinema & Theatre\",\n                            \"key\": \"Cinema & Theatre\",\n                            \"name\": \"Cinema & Theatre\"\n                        },\n                        {\n                            \"uid\": \"Leisure_Creative Arts & Education\",\n                            \"key\": \"Creative Arts & Education\",\n                            \"name\": \"Creative Arts & Education\"\n                        },\n                        {\n                            \"uid\": \"Leisure_Culture & Heritage\",\n                            \"key\": \"Culture & Heritage\",\n                            \"name\": \"Culture & Heritage\"\n                        },\n                        {\n                            \"uid\": \"Leisure_Sports & Leisure\",\n                            \"key\": \"Sports & Leisure\",\n                            \"name\": \"Sports & Leisure\"\n                        },\n                        {\n                            \"uid\": \"Leisure_Live Events\",\n                            \"key\": \"Live Events\",\n                            \"name\": \"Live Events\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 2,\n                    \"category_id\": 3,\n                    \"section_name\": \"Amenities Offered\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Leisure_age_restrictions\",\n                            \"key\": \"age_restrictions\",\n                            \"name\": \"Age Restrictions\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/age_restrictions.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_height_restrictions\",\n                            \"key\": \"height_restrictions\",\n                            \"name\": \"Height Restrictions\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/height_restrictions.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_indoor_activities\",\n                            \"key\": \"indoor_activities\",\n                            \"name\": \"Indoor Activities\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/indoor_activities.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_kids_welcome\",\n                            \"key\": \"kids_welcome\",\n                            \"name\": \"Kids Welcome\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/kids_welcome.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_outdoor_activities\",\n                            \"key\": \"outdoor_activities\",\n                            \"name\": \"Outdoor Activities\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/outdoor_activities.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_parking\",\n                            \"key\": \"parking\",\n                            \"name\": \"Parking\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/parking.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_valet_parking\",\n                            \"key\": \"valet_parking\",\n                            \"name\": \"Valet Parking\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/valet_parking.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_alcohol\",\n                            \"key\": \"alcohol\",\n                            \"name\": \"Alcohol\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/alcohol.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_indoor_play_area\",\n                            \"key\": \"indoor_play_area\",\n                            \"name\": \"Indoor Play Area\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/indoor_play_area.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_live_entertainment\",\n                            \"key\": \"live_entertainment\",\n                            \"name\": \"Live Entertainment\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/live_entertainment.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_outdoor_cooling\",\n                            \"key\": \"outdoor_cooling\",\n                            \"name\": \"Outdoor Cooling\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/outdoor_cooling.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_outdoor_play_area\",\n                            \"key\": \"outdoor_play_area\",\n                            \"name\": \"Outdoor Play Area\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/outdoor_play_area.png\"\n                        },\n                        {\n                            \"uid\": \"Leisure_wineries\",\n                            \"key\": \"wineries\",\n                            \"name\": \"Wineries\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/wineries.png\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"category_name\": \"Restaurants and Bars\",\n            \"category_id\": 4,\n            \"filter_sections\": [\n                {\n                    \"section_order_id\": 1,\n                    \"category_id\": 4,\n                    \"section_name\": \"Type\",\n                    \"selection_type\": 1,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"0_Restaurants and Bars_All\",\n                            \"key\": \"All\",\n                            \"name\": \"All\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_Cafes\",\n                            \"key\": \"Cafes\",\n                            \"name\": \"Cafes\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_Casual Dining\",\n                            \"key\": \"Casual Dining\",\n                            \"name\": \"Casual Dining\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_Pubs, Bars & Clubs\",\n                            \"key\": \"Pubs, Bars & Clubs\",\n                            \"name\": \"Pubs, Bars & Clubs\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_Fine Dining\",\n                            \"key\": \"Fine Dining\",\n                            \"name\": \"Fine Dining\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_Informal Dining & Takeaway\",\n                            \"key\": \"Informal Dining & Takeaway\",\n                            \"name\": \"Informal Dining & Takeaway\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 2,\n                    \"category_id\": 4,\n                    \"section_name\": \"Cuisine\",\n                    \"selection_type\": 2,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Restaurants and Bars_0_American\",\n                            \"key\": \"American\",\n                            \"name\": \"American\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_1_Arabic\",\n                            \"key\": \"Arabic\",\n                            \"name\": \"Arabic\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_2_Chinese\",\n                            \"key\": \"Chinese\",\n                            \"name\": \"Chinese\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_3_Indian\",\n                            \"key\": \"Indian\",\n                            \"name\": \"Indian\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_4_Italian\",\n                            \"key\": \"Italian\",\n                            \"name\": \"Italian\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 3,\n                    \"category_id\": 4,\n                    \"section_name\": \"Amenities Offered\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Restaurants and Bars_alcohol\",\n                            \"key\": \"alcohol\",\n                            \"name\": \"Alcohol\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/alcohol.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_buffet\",\n                            \"key\": \"buffet\",\n                            \"name\": \"Buffet\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/buffet.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_halal\",\n                            \"key\": \"halal\",\n                            \"name\": \"Halal\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/halal.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_kids_welcome\",\n                            \"key\": \"kids_welcome\",\n                            \"name\": \"Kids Welcome\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/kids_welcome.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_live_entertainment\",\n                            \"key\": \"live_entertainment\",\n                            \"name\": \"Live Entertainment\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/live_entertainment.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_outdoor_cooling\",\n                            \"key\": \"outdoor_cooling\",\n                            \"name\": \"Outdoor Cooling\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/outdoor_cooling.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_outdoor_heating\",\n                            \"key\": \"outdoor_heating\",\n                            \"name\": \"Outdoor Heating\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/outdoor_heating.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_outdoor_seating\",\n                            \"key\": \"outdoor_seating\",\n                            \"name\": \"Outdoor Seating\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/outdoor_seating.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_parking\",\n                            \"key\": \"parking\",\n                            \"name\": \"Parking\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/parking.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_pets_allowed\",\n                            \"key\": \"pets_allowed\",\n                            \"name\": \"Pets Allowed\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/pets_allowed.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_pork_products\",\n                            \"key\": \"pork_products\",\n                            \"name\": \"Pork Products\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/pork_products.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_smoking_indoor\",\n                            \"key\": \"smoking_indoor\",\n                            \"name\": \"Smoking - Indoor\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/smoking_indoor.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_smoking_shisha\",\n                            \"key\": \"smoking_shisha\",\n                            \"name\": \"Smoking - Shisha\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/smoking_shisha.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_sports_screens\",\n                            \"key\": \"sports_screens\",\n                            \"name\": \"Sports Screens\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/sports_screens.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_supervised_play_area\",\n                            \"key\": \"supervised_play_area\",\n                            \"name\": \"Supervised Play Area\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/supervised_play_area.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_takeaway\",\n                            \"key\": \"takeaway\",\n                            \"name\": \"Takeaway\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/takeaway.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_valet_parking\",\n                            \"key\": \"valet_parking\",\n                            \"name\": \"Valet Parking\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/valet_parking.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_wheelchair_accessible\",\n                            \"key\": \"wheelchair_accessible\",\n                            \"name\": \"Wheelchair Accessible\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/wheelchair_accessible.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_wi_fi\",\n                            \"key\": \"wi_fi\",\n                            \"name\": \"Wi-Fi\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/wi_fi.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_wineries\",\n                            \"key\": \"wineries\",\n                            \"name\": \"Wineries\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/wineries.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_rooftop_bars\",\n                            \"key\": \"rooftop_bars\",\n                            \"name\": \"Rooftop Bars\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/rooftop_bars.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_private_beach\",\n                            \"key\": \"private_beach\",\n                            \"name\": \"Private beach\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/alcohol.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_outdoor_pool\",\n                            \"key\": \"outdoor_pool\",\n                            \"name\": \"Outdoor pool\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/alcohol.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_sauna_steam_room_&_jacuzzi\",\n                            \"key\": \"sauna_steam_room_&_jacuzzi\",\n                            \"name\": \"Sauna, steam room & jacuzzi\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/alcohol.png\"\n                        },\n                        {\n                            \"uid\": \"Restaurants and Bars_lockers_&_showers\",\n                            \"key\": \"lockers_&_showers\",\n                            \"name\": \"Lockers & showers\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/alcohol.png\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"category_name\": \"Services\",\n            \"category_id\": 5,\n            \"filter_sections\": [\n                {\n                    \"section_order_id\": 1,\n                    \"category_id\": 5,\n                    \"section_name\": \"Type\",\n                    \"selection_type\": 1,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"0_Services_All\",\n                            \"key\": \"All\",\n                            \"name\": \"All\"\n                        },\n                        {\n                            \"uid\": \"Services_Baby\",\n                            \"key\": \"Baby\",\n                            \"name\": \"Baby\"\n                        },\n                        {\n                            \"uid\": \"Services_Cleaning\",\n                            \"key\": \"Cleaning\",\n                            \"name\": \"Cleaning\"\n                        },\n                        {\n                            \"uid\": \"Services_Events\",\n                            \"key\": \"Events\",\n                            \"name\": \"Events\"\n                        },\n                        {\n                            \"uid\": \"Services_Maintenance\",\n                            \"key\": \"Maintenance\",\n                            \"name\": \"Maintenance\"\n                        },\n                        {\n                            \"uid\": \"Services_Office\",\n                            \"key\": \"Office\",\n                            \"name\": \"Office\"\n                        },\n                        {\n                            \"uid\": \"Services_Pets\",\n                            \"key\": \"Pets\",\n                            \"name\": \"Pets\"\n                        },\n                        {\n                            \"uid\": \"Services_Photography\",\n                            \"key\": \"Photography\",\n                            \"name\": \"Photography\"\n                        },\n                        {\n                            \"uid\": \"Services_Tailoring\",\n                            \"key\": \"Tailoring\",\n                            \"name\": \"Tailoring\"\n                        },\n                        {\n                            \"uid\": \"Services_Auto\",\n                            \"key\": \"Auto\",\n                            \"name\": \"Auto\"\n                        },\n                        {\n                            \"uid\": \"Services_Courses\",\n                            \"key\": \"Courses\",\n                            \"name\": \"Courses\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 2,\n                    \"category_id\": 5,\n                    \"section_name\": \"Amenities Offered\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Services_by_appointment_only\",\n                            \"key\": \"by_appointment_only\",\n                            \"name\": \"By Appointment Only\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/by_appointment_only.png\"\n                        },\n                        {\n                            \"uid\": \"Services_pick_up_drop_off\",\n                            \"key\": \"pick_up_drop_off\",\n                            \"name\": \"Pick up/Drop off\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/pick_up_drop_off.png\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"category_name\": \"Travel\",\n            \"category_id\": 6,\n            \"filter_sections\": [\n                {\n                    \"section_order_id\": 1,\n                    \"category_id\": 6,\n                    \"section_name\": \"Star Rating\",\n                    \"selection_type\": 1,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"0_Travel_All\",\n                            \"key\": \"All\",\n                            \"name\": \"All\"\n                        },\n                        {\n                            \"uid\": \"Travel_4 Star\",\n                            \"key\": \"4 Star\",\n                            \"name\": \"4 Star\"\n                        },\n                        {\n                            \"uid\": \"Travel_5 Star\",\n                            \"key\": \"5 Star\",\n                            \"name\": \"5 Star\"\n                        },\n                        {\n                            \"uid\": \"Travel_B&B / Lodge\",\n                            \"key\": \"B&B / Lodge\",\n                            \"name\": \"B&B / Lodge\"\n                        },\n                        {\n                            \"uid\": \"Travel_Hotel Apartments\",\n                            \"key\": \"Hotel Apartments\",\n                            \"name\": \"Hotel Apartments\"\n                        },\n                        {\n                            \"uid\": \"Travel_3 Star\",\n                            \"key\": \"3 Star\",\n                            \"name\": \"3 Star\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 2,\n                    \"category_id\": 6,\n                    \"section_name\": \"Hotel Type\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Travel_bed_breakfast\",\n                            \"key\": \"bed_breakfast\",\n                            \"name\": \"Bed & Breakfast\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/bed_breakfast.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_boutique\",\n                            \"key\": \"boutique\",\n                            \"name\": \"Boutique\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/boutique.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_city\",\n                            \"key\": \"city\",\n                            \"name\": \"City Hotel\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/city.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_couples_only\",\n                            \"key\": \"couples_only\",\n                            \"name\": \"Couples Only\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/couples_only.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_family\",\n                            \"key\": \"family\",\n                            \"name\": \"Family\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/family.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_health_spa_resort\",\n                            \"key\": \"health_spa_resort\",\n                            \"name\": \"Health Spa Resort\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/health_spa_resort.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_hotel_apartment\",\n                            \"key\": \"hotel_apartment\",\n                            \"name\": \"Hotel Apartment\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/hotel_apartment.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_lodge_safari\",\n                            \"key\": \"lodge_safari\",\n                            \"name\": \"Lodge - Safari\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/lodge_safari.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_lodge_ski\",\n                            \"key\": \"lodge_ski\",\n                            \"name\": \"Lodge - Ski\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/lodge_ski.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_resort\",\n                            \"key\": \"resort\",\n                            \"name\": \"Resort\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/resort.png\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 3,\n                    \"category_id\": 6,\n                    \"section_name\": \"Area / Location\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Travel_beach\",\n                            \"key\": \"beach\",\n                            \"name\": \"Beach\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/beach.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_mountain_country\",\n                            \"key\": \"mountain_country\",\n                            \"name\": \"Mountain/Country\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/mountain_country.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_seaside\",\n                            \"key\": \"seaside\",\n                            \"name\": \"Seaside\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/seaside.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_shopping_mall\",\n                            \"key\": \"shopping_mall\",\n                            \"name\": \"Shopping Mall\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/shopping_mall.png\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 4,\n                    \"category_id\": 6,\n                    \"section_name\": \"Hotel Facilities\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Travel_x24_hour_reception\",\n                            \"key\": \"x24_hour_reception\",\n                            \"name\": \"24 Hour Reception\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/x24_hour_reception.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_alcohol\",\n                            \"key\": \"alcohol\",\n                            \"name\": \"Alcohol\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/alcohol.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_beach_club\",\n                            \"key\": \"beach_club\",\n                            \"name\": \"Beach Club\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/beach_club.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_beauty_centre\",\n                            \"key\": \"beauty_centre\",\n                            \"name\": \"Beauty Centre\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/beauty_centre.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_car_park\",\n                            \"key\": \"car_park\",\n                            \"name\": \"Car Park\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/car_park.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_club_lounge\",\n                            \"key\": \"club_lounge\",\n                            \"name\": \"Club Lounge\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/club_lounge.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_concierge\",\n                            \"key\": \"concierge\",\n                            \"name\": \"Concierge\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/concierge.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_day_spa\",\n                            \"key\": \"day_spa\",\n                            \"name\": \"Day Spa\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/day_spa.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_golf\",\n                            \"key\": \"golf\",\n                            \"name\": \"Golf\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/golf.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_gym_fitness\",\n                            \"key\": \"gym_fitness\",\n                            \"name\": \"Gym/Fitness\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/gym_fitness.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_hair_salon\",\n                            \"key\": \"hair_salon\",\n                            \"name\": \"Hair Salon\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/hair_salon.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_health_programmes\",\n                            \"key\": \"health_programmes\",\n                            \"name\": \"Health Programmes\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/health_programmes.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_kids_club\",\n                            \"key\": \"kids_club\",\n                            \"name\": \"Kids Club\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/kids_club.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_night_club\",\n                            \"key\": \"night_club\",\n                            \"name\": \"Night Club\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/night_club.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_prayer_room\",\n                            \"key\": \"prayer_room\",\n                            \"name\": \"Prayer Room\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/prayer_room.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_sports_club\",\n                            \"key\": \"sports_club\",\n                            \"name\": \"Sports Club\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/sports_club.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_swimming_pool\",\n                            \"key\": \"swimming_pool\",\n                            \"name\": \"Swimming Pool\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/swimming_pool.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_valet_parking\",\n                            \"key\": \"valet_parking\",\n                            \"name\": \"Valet Parking\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/valet_parking.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_water_sports\",\n                            \"key\": \"water_sports\",\n                            \"name\": \"Water Sports\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/water_sports.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_wheelchair_accessible\",\n                            \"key\": \"wheelchair_accessible\",\n                            \"name\": \"Wheelchair Accessible\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/wheelchair_accessible.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_wi_fi\",\n                            \"key\": \"wi_fi\",\n                            \"name\": \"Wi-Fi\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/wi_fi.png\"\n                        }\n                    ]\n                },\n                {\n                    \"section_order_id\": 5,\n                    \"category_id\": 6,\n                    \"section_name\": \"Hotel Rooms\",\n                    \"selection_type\": 3,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"Travel_x24_hour_room_service\",\n                            \"key\": \"x24_hour_room_service\",\n                            \"name\": \"24 Hour Room Service\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/x24_hour_room_service.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_air_conditioning\",\n                            \"key\": \"air_conditioning\",\n                            \"name\": \"Air Conditioning\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/air_conditioning.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_balcony\",\n                            \"key\": \"balcony\",\n                            \"name\": \"Balcony\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/balcony.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_heating\",\n                            \"key\": \"heating\",\n                            \"name\": \"Heating\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/heating.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_inhouse_movies\",\n                            \"key\": \"inhouse_movies\",\n                            \"name\": \"Inhouse Movies\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/inhouse_movies.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_in_room_spa_bath\",\n                            \"key\": \"in_room_spa_bath\",\n                            \"name\": \"In-Room Spa bath\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/in_room_spa_bath.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_kitchen_facilities\",\n                            \"key\": \"kitchen_facilities\",\n                            \"name\": \"Kitchen Facilities\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/kitchen_facilities.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_laundry_service\",\n                            \"key\": \"laundry_service\",\n                            \"name\": \"Laundry Service\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/laundry_service.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_mini_bar\",\n                            \"key\": \"mini_bar\",\n                            \"name\": \"Mini Bar\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/mini_bar.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_plunge_pool\",\n                            \"key\": \"plunge_pool\",\n                            \"name\": \"Plunge Pool\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/plunge_pool.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_safe_deposit_box\",\n                            \"key\": \"safe_deposit_box\",\n                            \"name\": \"Safe Deposit Box\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/safe_deposit_box.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_smoking_rooms\",\n                            \"key\": \"smoking_rooms\",\n                            \"name\": \"Smoking Rooms\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/smoking_rooms.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_sound_system\",\n                            \"key\": \"sound_system\",\n                            \"name\": \"Sound System\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/sound_system.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_tv_in_room\",\n                            \"key\": \"tv_in_room\",\n                            \"name\": \"TV in room\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/tv_in_room.png\"\n                        },\n                        {\n                            \"uid\": \"Travel_villas\",\n                            \"key\": \"villas\",\n                            \"name\": \"Villas\",\n                            \"image_url\": \"https://s3-us-west-2.amazonaws.com/merchhant-attribute-icons/villas.png\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"category_name\": \"Retail\",\n            \"category_id\": 7,\n            \"filter_sections\": [\n                {\n                    \"section_order_id\": 1,\n                    \"category_id\": 7,\n                    \"section_name\": \"Type\",\n                    \"selection_type\": 1,\n                    \"has_icons\": false,\n                    \"collapsible\": false,\n                    \"options\": [\n                        {\n                            \"uid\": \"0_Retail_All\",\n                            \"key\": \"All\",\n                            \"name\": \"All\"\n                        },\n                        {\n                            \"uid\": \"Retail_Health & Beauty\",\n                            \"key\": \"Health & Beauty\",\n                            \"name\": \"Health & Beauty\"\n                        },\n                        {\n                            \"uid\": \"Retail_Confectionary\",\n                            \"key\": \"Confectionary\",\n                            \"name\": \"Confectionery\"\n                        },\n                        {\n                            \"uid\": \"Retail_Electronics\",\n                            \"key\": \"Electronics\",\n                            \"name\": \"Electronics\"\n                        },\n                        {\n                            \"uid\": \"Retail_Fashion\",\n                            \"key\": \"Fashion\",\n                            \"name\": \"Fashion\"\n                        },\n                        {\n                            \"uid\": \"Retail_Home & Garden\",\n                            \"key\": \"Home & Garden\",\n                            \"name\": \"Home & Garden\"\n                        },\n                        {\n                            \"uid\": \"Retail_Grocery & Off-Licence\",\n                            \"key\": \"Grocery & Off-Licence\",\n                            \"name\": \"Grocery & Off-Licence\"\n                        },\n                        {\n                            \"uid\": \"Retail_Jewellery\",\n                            \"key\": \"Jewellery\",\n                            \"name\": \"Jewellery\"\n                        },\n                        {\n                            \"uid\": \"Retail_Opticians\",\n                            \"key\": \"Opticians\",\n                            \"name\": \"Opticians\"\n                        },\n                        {\n                            \"uid\": \"Retail_Sporting Goods\",\n                            \"key\": \"Sporting Goods\",\n                            \"name\": \"Sporting Goods\"\n                        },\n                        {\n                            \"uid\": \"Retail_Pets\",\n                            \"key\": \"Pets\",\n                            \"name\": \"Pets\"\n                        },\n                        {\n                            \"uid\": \"Retail_Baby & Child\",\n                            \"key\": \"Baby & Child\",\n                            \"name\": \"Baby & Child\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"message\": \"success\",\n    \"success\": true,\n    \"cmd\": \"/api_ets/v1/filters?location_id=18\",\n    \"http_response\": 200,\n    \"code\": 0\n}"}],"_postman_id":"9aa1aace-83a6-4b06-82c5-708f345060ad"}]}